HomeSort by relevance Sort by last modified time
    Searched refs:getTickCount (Results 1 - 25 of 47) sorted by null

1 2

  /external/opencv3/modules/flann/include/opencv2/flann/
timer.h 70 startTime = cv::getTickCount();
78 int64 stopTime = cv::getTickCount();
  /external/opencv3/samples/cpp/
lsd_lines.cpp 39 double start = double(getTickCount());
45 double duration_ms = (double(getTickCount()) - start) * 1000 / getTickFrequency();
watershed.cpp 112 double t = (double)getTickCount();
114 t = (double)getTickCount() - t;
stitching_detailed.cpp 357 int64 app_start_time = getTickCount();
381 int64 t = getTickCount();
454 LOGLN("Finding features, time: " << ((getTickCount() - t) / getTickFrequency()) << " sec");
458 t = getTickCount();
474 LOGLN("Pairwise matching, time: " << ((getTickCount() - t) / getTickFrequency()) << " sec");
574 t = getTickCount();
664 LOGLN("Warping images, time: " << ((getTickCount() - t) / getTickFrequency()) << " sec");
712 t = getTickCount();
841 LOGLN("Compositing, time: " << ((getTickCount() - t) / getTickFrequency()) << " sec");
846 LOGLN("Finished, total time: " << ((getTickCount() - app_start_time) / getTickFrequency()) << " sec")
    [all...]
  /external/opencv3/modules/stitching/src/
stitcher.cpp 155 int64 t = getTickCount();
192 LOGLN("Warping images, time: " << ((getTickCount() - t) / getTickFrequency()) << " sec");
206 t = getTickCount();
224 int64 compositing_t = getTickCount();
269 int64 resize_t = getTickCount();
272 LOGLN(" resize time: " << ((getTickCount() - resize_t) / getTickFrequency()) << " sec");
279 LOGLN(" after resize time: " << ((getTickCount() - compositing_t) / getTickFrequency()) << " sec");
285 int64 pt = getTickCount();
289 LOGLN(" warp the current image: " << ((getTickCount() - pt) / getTickFrequency()) << " sec");
291 pt = getTickCount();
    [all...]
blenders.cpp 278 int64 t = getTickCount();
319 LOGLN(" Add border to the source image, time: " << ((getTickCount() - t) / getTickFrequency()) << " sec");
321 t = getTickCount();
330 LOGLN(" Create the source image Laplacian pyramid, time: " << ((getTickCount() - t) / getTickFrequency()) << " sec");
332 t = getTickCount();
356 LOGLN(" Create the weight map Gaussian pyramid, time: " << ((getTickCount() - t) / getTickFrequency()) << " sec");
358 t = getTickCount();
428 LOGLN(" Add weighted layer of the source image to the final Laplacian pyramid layer, time: " << ((getTickCount() - t) / getTickFrequency()) << " sec");
  /external/opencv3/samples/cpp/tutorial_code/core/mat_mask_operations/
mat_mask_operations.cpp 39 double t = (double)getTickCount();
43 t = ((double)getTickCount() - t)/getTickFrequency();
52 t = (double)getTickCount();
54 t = ((double)getTickCount() - t)/getTickFrequency();
  /external/opencv3/samples/gpu/
houghlines.cpp 42 const int64 start = getTickCount();
46 const double timeSec = (getTickCount() - start) / getTickFrequency();
60 const int64 start = getTickCount();
66 const double timeSec = (getTickCount() - start) / getTickFrequency();
optical_flow.cpp 192 const int64 start = getTickCount();
196 const double timeSec = (getTickCount() - start) / getTickFrequency();
203 const int64 start = getTickCount();
207 const double timeSec = (getTickCount() - start) / getTickFrequency();
214 const int64 start = getTickCount();
218 const double timeSec = (getTickCount() - start) / getTickFrequency();
225 const int64 start = getTickCount();
229 const double timeSec = (getTickCount() - start) / getTickFrequency();
tick_meter.hpp 35 void TickMeter::start(){ startTime = cv::getTickCount(); }
38 int64 time = cv::getTickCount();
farneback_optical_flow.cpp 85 t = getTickCount();
89 tc0 = getTickCount();
91 tc1 = getTickCount();
101 tc0 = getTickCount();
105 tc1 = getTickCount();
135 t1 = getTickCount();
bgfg_segm.cpp 121 int64 start = cv::getTickCount();
146 double fps = cv::getTickFrequency() / (cv::getTickCount() - start);
hog.cpp 437 inline void App::hogWorkBegin() { hog_work_begin = getTickCount(); }
441 int64 delta = getTickCount() - hog_work_begin;
454 inline void App::workBegin() { work_begin = getTickCount(); }
458 int64 delta = getTickCount() - work_begin;
  /external/opencv3/modules/core/test/
test_hal_core.cpp 70 double t = (double)getTickCount();
94 t = (double)getTickCount() - t;
97 t = (double)getTickCount();
112 t = (double)getTickCount() - t;
157 double t = (double)getTickCount();
175 t = (double)getTickCount() - t;
178 t = (double)getTickCount();
180 t = (double)getTickCount() - t;
  /external/opencv3/modules/java/generator/src/java/
android+FpsMeter.java 29 mprevFrameTime = Core.getTickCount();
44 long time = Core.getTickCount();
  /external/opencv3/samples/cpp/tutorial_code/core/how_to_scan_images/
how_to_scan_images.cpp 69 t = (double)getTickCount();
77 t = 1000*((double)getTickCount() - t)/getTickFrequency();
83 t = (double)getTickCount();
91 t = 1000*((double)getTickCount() - t)/getTickFrequency();
97 t = (double)getTickCount();
105 t = 1000*((double)getTickCount() - t)/getTickFrequency();
118 t = (double)getTickCount();
125 t = 1000*((double)getTickCount() - t)/getTickFrequency();
  /external/opencv3/samples/cpp/tutorial_code/gpu/gpu-basics-similarity/
gpu-basics-similarity.cpp 86 time = (double)getTickCount();
91 time = 1000*((double)getTickCount() - time)/getTickFrequency();
98 time = (double)getTickCount();
103 time = 1000*((double)getTickCount() - time)/getTickFrequency();
110 time = (double)getTickCount(); // Initial call
112 time = 1000*((double)getTickCount() - time)/getTickFrequency();
116 time = (double)getTickCount();
120 time = 1000*((double)getTickCount() - time)/getTickFrequency();
129 time = (double)getTickCount();
134 time = 1000*((double)getTickCount() - time)/getTickFrequency()
    [all...]
  /external/opencv3/samples/gpu/performance/
performance.h 60 void cpuOn() { cpu_started_ = cv::getTickCount(); }
63 int64 delta = cv::getTickCount() - cpu_started_;
74 void gpuOn() { gpu_started_ = cv::getTickCount(); }
77 int64 delta = cv::getTickCount() - gpu_started_;
  /external/opencv3/samples/tapi/
bgfg_segm.cpp 84 int64 start = getTickCount();
98 double fps = getTickFrequency() / (getTickCount() - start);
squares.cpp 188 int64 t_start = cv::getTickCount();
190 t_cpp += cv::getTickCount() - t_start;
192 t_start = cv::getTickCount();
hog.cpp 333 hog_work_begin = getTickCount();
338 int64 delta = getTickCount() - hog_work_begin;
352 work_begin = getTickCount();
357 int64 delta = getTickCount() - work_begin;
  /external/opencv3/samples/cpp/tutorial_code/core/ippasync/
ippasync_sample.cpp 111 double execTime = (double)getTickCount();
127 execTime = ((double)getTickCount() - execTime)*1000./getTickFrequency();
  /external/opencv3/modules/photo/test/
test_denoising.cpp 165 double t = (double)getTickCount();
167 t = (double)getTickCount() - t;
  /external/opencv3/samples/directx/
d3dsample.hpp 56 int64 now = cv::getTickCount();
  /external/opencv3/modules/objdetect/src/
detection_based_tracker.cpp 398 int64 t1_detect=getTickCount();
418 int64 t2_detect = getTickCount();
536 double lastBigDetectionDuration = 1000.0 * (((double)(getTickCount() - timeWhenDetectingThreadStartedWork )) / freq);
543 double time_from_previous_launch_in_ms=1000.0 * (((double)(getTickCount() - timeWhenDetectingThreadStartedWork )) / freq); //the same formula as for lastBigDetectionDuration
556 timeWhenDetectingThreadStartedWork = getTickCount() ;
628 static long long time_when_last_call_started=getTickCount();
631 double delta_time_from_prev_call=1000.0 * (((double)(getTickCount() - time_when_last_call_started)) / freq);
634 time_when_last_call_started=getTickCount();
    [all...]

Completed in 297 milliseconds

1 2