Home
last modified time | relevance | path

Searched refs:cannyThreshold (Results 1 – 5 of 5) sorted by relevance

/external/opencv3/samples/cpp/tutorial_code/ImgTrans/
DHoughCircle_Demo.cpp29 …void HoughDetection(const Mat& src_gray, const Mat& src_display, int cannyThreshold, int accumulat… in HoughDetection() argument
34 …HoughCircles( src_gray, circles, HOUGH_GRADIENT, 1, src_gray.rows/8, cannyThreshold, accumulatorTh… in HoughDetection()
82 int cannyThreshold = cannyThresholdInitialValue; in main() local
87 createTrackbar(cannyThresholdTrackbarName, windowName, &cannyThreshold,maxCannyThreshold); in main()
98 cannyThreshold = std::max(cannyThreshold, 1); in main()
102 HoughDetection(src_gray, src, cannyThreshold, accumulatorThreshold); in main()
/external/opencv3/modules/cudaimgproc/src/
Dhough_circles.cpp75 …HoughCirclesDetectorImpl(float dp, float minDist, int cannyThreshold, int votesThreshold, int minR…
85 void setCannyThreshold(int cannyThreshold) { cannyThreshold_ = cannyThreshold; } in setCannyThreshold() argument
146 …HoughCirclesDetectorImpl::HoughCirclesDetectorImpl(float dp, float minDist, int cannyThreshold, in… in HoughCirclesDetectorImpl() argument
148 … dp_(dp), minDist_(minDist), cannyThreshold_(cannyThreshold), votesThreshold_(votesThreshold), in HoughCirclesDetectorImpl()
312 …r> cv::cuda::createHoughCirclesDetector(float dp, float minDist, int cannyThreshold, int votesThre… in createHoughCirclesDetector() argument
314 …return makePtr<HoughCirclesDetectorImpl>(dp, minDist, cannyThreshold, votesThreshold, minRadius, m… in createHoughCirclesDetector()
/external/opencv3/modules/cudaimgproc/perf/
Dperf_hough.cpp194 const int cannyThreshold = 100; variable
207 …or> houghCircles = cv::cuda::createHoughCirclesDetector(dp, minDist, cannyThreshold, votesThreshol…
221 … cv::HoughCircles(src, cpu_circles, cv::HOUGH_GRADIENT, dp, minDist, cannyThreshold, votesThreshol…
/external/opencv3/modules/cudaimgproc/include/opencv2/
Dcudaimgproc.hpp456 virtual void setCannyThreshold(int cannyThreshold) = 0;
488 …lesDetector> createHoughCirclesDetector(float dp, float minDist, int cannyThreshold, int votesThre…
/external/opencv3/modules/cudaimgproc/test/
Dtest_hough.cpp141 const int cannyThreshold = 100; in CUDA_TEST_P() local
153 …or> houghCircles = cv::cuda::createHoughCirclesDetector(dp, minDist, cannyThreshold, votesThreshol… in CUDA_TEST_P()