Home
last modified time | relevance | path

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

/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/src/
Dcanny.cpp50 Ptr<CannyEdgeDetector> cv::cuda::createCannyEdgeDetector(double, double, int, bool) { throw_no_cuda… in createCannyEdgeDetector() function in cv::cuda
231 Ptr<CannyEdgeDetector> cv::cuda::createCannyEdgeDetector(double low_thresh, double high_thresh, int… in createCannyEdgeDetector() function in cv::cuda
Dhough_circles.cpp151 canny_ = cuda::createCannyEdgeDetector(std::max(cannyThreshold_ / 2, 1), cannyThreshold_); in HoughCirclesDetectorImpl()
Dgeneralized_hough.cpp173 canny_ = cuda::createCannyEdgeDetector(cannyLowThresh_, cannyHighThresh_); in GeneralizedHoughBase()
/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.hpp320 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()