CannyEdgeDetector 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); CannyEdgeDetector 74 modules/cudaimgproc/perf/perf_canny.cpp cv::Ptr<cv::cuda::CannyEdgeDetector> canny = cv::cuda::createCannyEdgeDetector(low_thresh, high_thresh, apperture_size, useL2gradient); CannyEdgeDetector 50 modules/cudaimgproc/src/canny.cpp Ptr<CannyEdgeDetector> cv::cuda::createCannyEdgeDetector(double, double, int, bool) { throw_no_cuda(); return Ptr<CannyEdgeDetector>(); } CannyEdgeDetector 70 modules/cudaimgproc/src/canny.cpp class CannyImpl : public CannyEdgeDetector CannyEdgeDetector 231 modules/cudaimgproc/src/canny.cpp Ptr<CannyEdgeDetector> cv::cuda::createCannyEdgeDetector(double low_thresh, double high_thresh, int apperture_size, bool L2gradient) CannyEdgeDetector 151 modules/cudaimgproc/src/generalized_hough.cpp Ptr<cuda::CannyEdgeDetector> canny_; CannyEdgeDetector 141 modules/cudaimgproc/src/hough_circles.cpp Ptr<cuda::CannyEdgeDetector> canny_; CannyEdgeDetector 84 modules/cudaimgproc/test/test_canny.cpp cv::Ptr<cv::cuda::CannyEdgeDetector> canny = cv::cuda::createCannyEdgeDetector(low_thresh, high_thresh, apperture_size, useL2gradient); CannyEdgeDetector 1079 samples/gpu/performance/tests.cpp Ptr<cuda::CannyEdgeDetector> canny = cuda::createCannyEdgeDetector(50.0, 100.0);