Home
last modified time | relevance | path

Searched refs:LOGLN (Results 1 – 8 of 8) sorted by relevance

/external/opencv3/modules/stitching/src/
Dstitcher.cpp121 LOGLN("Warping images (auxiliary)... "); in composePanorama()
192 LOGLN("Warping images, time: " << ((getTickCount() - t) / getTickFrequency()) << " sec"); in composePanorama()
204 LOGLN("Compositing..."); in composePanorama()
222 LOGLN("Compositing image #" << indices_[img_idx] + 1); in composePanorama()
272LOGLN(" resize time: " << ((getTickCount() - resize_t) / getTickFrequency()) << " sec"); in composePanorama()
279LOGLN(" after resize time: " << ((getTickCount() - compositing_t) / getTickFrequency()) << " sec"); in composePanorama()
289LOGLN(" warp the current image: " << ((getTickCount() - pt) / getTickFrequency()) << " sec"); in composePanorama()
298LOGLN(" warp the current image mask: " << ((getTickCount() - pt) / getTickFrequency()) << " sec"); in composePanorama()
305 LOGLN(" compensate exposure: " << ((getTickCount() - pt) / getTickFrequency()) << " sec"); in composePanorama()
321 LOGLN(" other: " << ((getTickCount() - pt) / getTickFrequency()) << " sec"); in composePanorama()
[all …]
Dmotion_estimators.cpp110 LOGLN("Estimating rotations..."); in estimate()
169 LOGLN("Estimating rotations, time: " << ((getTickCount() - t) / getTickFrequency()) << " sec"); in estimate()
606 LOGLN("Wave correcting..."); in waveCorrect()
612 LOGLN("Wave correcting, time: " << ((getTickCount() - t) / getTickFrequency()) << " sec"); in waveCorrect()
681 LOGLN("Wave correcting, time: " << ((getTickCount() - t) / getTickFrequency()) << " sec"); in waveCorrect()
802 LOGLN(")."); in leaveBiggestComponent()
803LOGLN("Try to decrease the match confidence threshold and/or check if you're stitching duplicates.… in leaveBiggestComponent()
Dblenders.cpp319LOGLN(" Add border to the source image, time: " << ((getTickCount() - t) / getTickFrequency()) <<… in feed()
330LOGLN(" Create the source image Laplacian pyramid, time: " << ((getTickCount() - t) / getTickFreq… in feed()
356LOGLN(" Create the weight map Gaussian pyramid, time: " << ((getTickCount() - t) / getTickFrequen… in feed()
428LOGLN(" Add weighted layer of the source image to the final Laplacian pyramid layer, time: " << (… in feed()
Dexposure_compensate.cpp74 LOGLN("Exposure compensation..."); in feed()
144 LOGLN("Exposure compensation, time: " << ((getTickCount() - t) / getTickFrequency()) << " sec"); in feed()
Dautocalib.cpp135 LOGLN("Can't estimate focal length, will use naive approach"); in estimateFocal()
Dseam_finders.cpp52 LOGLN("Finding seams..."); in find()
68 LOGLN("Finding seams, time: " << ((getTickCount() - t) / getTickFrequency()) << " sec"); in find()
94 LOGLN("Finding seams..."); in find()
107 LOGLN("Finding seams, time: " << ((getTickCount() - t) / getTickFrequency()) << " sec"); in find()
170 LOGLN("Finding seams..."); in find()
198 LOGLN("Finding seams, time: " << ((getTickCount() - t) / getTickFrequency()) << " sec"); in find()
/external/opencv3/samples/cpp/
Dstitching_detailed.cpp372 LOGLN("Need more images"); in main()
379 LOGLN("Finding features..."); in main()
417 LOGLN("Can't open image " << img_names[i]); in main()
444 LOGLN("Features in image #" << i+1 << ": " << features[i].keypoints.size()); in main()
454 LOGLN("Finding features, time: " << ((getTickCount() - t) / getTickFrequency()) << " sec"); in main()
474 LOGLN("Pairwise matching, time: " << ((getTickCount() - t) / getTickFrequency()) << " sec"); in main()
479 LOGLN("Saving matches graph..."); in main()
504 LOGLN("Need more images"); in main()
521 LOGLN("Initial intrinsics #" << indices[i]+1 << ":\n" << cameras[i].K()); in main()
551 LOGLN("Camera #" << indices[i]+1 << ":\n" << cameras[i].K()); in main()
[all …]
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dutil.hpp88 #define LOGLN(msg) LOG(msg << std::endl) macro