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

  /external/opencv3/modules/cudaimgproc/perf/
perf_canny.cpp 61 const bool useL2gradient = GET_PARAM(2);
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 62 bool useL2gradient;
69 useL2gradient = GET_PARAM(2);
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 64 bool useL2gradient, use_roi;
73 useL2gradient = GET_PARAM(2);
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 83 milliseconds