Home
last modified time | relevance | path

Searched refs:CannyEdgeDetector (Results 1 – 7 of 7) sorted by relevance

/external/opencv3/modules/cudaimgproc/src/
Dcanny.cpp50 Ptr<CannyEdgeDetector> cv::cuda::createCannyEdgeDetector(double, double, int, bool) { throw_no_cuda… in createCannyEdgeDetector()
70 class CannyImpl : public CannyEdgeDetector
231 Ptr<CannyEdgeDetector> cv::cuda::createCannyEdgeDetector(double low_thresh, double high_thresh, int… in createCannyEdgeDetector()
Dhough_circles.cpp141 Ptr<cuda::CannyEdgeDetector> canny_;
Dgeneralized_hough.cpp151 Ptr<cuda::CannyEdgeDetector> canny_;
/external/opencv3/modules/cudaimgproc/perf/
Dperf_canny.cpp74 …cv::Ptr<cv::cuda::CannyEdgeDetector> canny = cv::cuda::createCannyEdgeDetector(low_thresh, high_th…
/external/opencv3/modules/cudaimgproc/test/
Dtest_canny.cpp84 …cv::Ptr<cv::cuda::CannyEdgeDetector> canny = cv::cuda::createCannyEdgeDetector(low_thresh, high_th… in CUDA_TEST_P()
/external/opencv3/modules/cudaimgproc/include/opencv2/
Dcudaimgproc.hpp279 class CV_EXPORTS CannyEdgeDetector : public Algorithm class
320 CV_EXPORTS Ptr<CannyEdgeDetector> createCannyEdgeDetector(double low_thresh, double high_thresh, in…
/external/opencv3/samples/gpu/performance/
Dtests.cpp1079 Ptr<cuda::CannyEdgeDetector> canny = cuda::createCannyEdgeDetector(50.0, 100.0); in TEST()