createCannyEdgeDetector  320 modules/cudaimgproc/include/opencv2/cudaimgproc.hpp CV_EXPORTS Ptr<CannyEdgeDetector> createCannyEdgeDetector(double low_thresh, double high_thresh, int apperture_size = 3, bool L2gradient = false);
createCannyEdgeDetector   74 modules/cudaimgproc/perf/perf_canny.cpp         cv::Ptr<cv::cuda::CannyEdgeDetector> canny = cv::cuda::createCannyEdgeDetector(low_thresh, high_thresh, apperture_size, useL2gradient);
createCannyEdgeDetector  173 modules/cudaimgproc/src/generalized_hough.cpp         canny_ = cuda::createCannyEdgeDetector(cannyLowThresh_, cannyHighThresh_);
createCannyEdgeDetector  151 modules/cudaimgproc/src/hough_circles.cpp         canny_ = cuda::createCannyEdgeDetector(std::max(cannyThreshold_ / 2, 1), cannyThreshold_);
createCannyEdgeDetector   84 modules/cudaimgproc/test/test_canny.cpp     cv::Ptr<cv::cuda::CannyEdgeDetector> canny = cv::cuda::createCannyEdgeDetector(low_thresh, high_thresh, apperture_size, useL2gradient);
createCannyEdgeDetector 1079 samples/gpu/performance/tests.cpp     Ptr<cuda::CannyEdgeDetector> canny = cuda::createCannyEdgeDetector(50.0, 100.0);