HomeSort by relevance Sort by last modified time
    Searched defs:low_thresh (Results 1 - 3 of 3) sorted by null

  /external/opencv3/modules/cudaimgproc/perf/
perf_canny.cpp 66 const double low_thresh = 50.0; local
74 cv::Ptr<cv::cuda::CannyEdgeDetector> canny = cv::cuda::createCannyEdgeDetector(low_thresh, high_thresh, apperture_size, useL2gradient);
84 TEST_CYCLE() cv::Canny(image, dst, low_thresh, high_thresh, apperture_size, useL2gradient);
  /external/opencv3/modules/cudaimgproc/test/
test_canny.cpp 81 double low_thresh = 50.0; local
84 cv::Ptr<cv::cuda::CannyEdgeDetector> canny = cv::cuda::createCannyEdgeDetector(low_thresh, high_thresh, apperture_size, useL2gradient);
90 cv::Canny(img, edges_gold, low_thresh, high_thresh, apperture_size, useL2gradient);
  /external/opencv3/modules/imgproc/test/ocl/
test_canny.cpp 101 const double low_thresh = 50.0, high_thresh = 100.0; local
108 OCL_OFF(cv::Canny(src_roi, dst_roi, low_thresh, high_thresh, apperture_size, useL2gradient));
109 OCL_ON(cv::Canny(usrc_roi, udst_roi, low_thresh, high_thresh, apperture_size, useL2gradient));

Completed in 69 milliseconds