OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:cannyThreshold
(Results
1 - 3
of
3
) sorted by null
/external/opencv3/samples/cpp/tutorial_code/ImgTrans/
HoughCircle_Demo.cpp
29
void HoughDetection(const Mat& src_gray, const Mat& src_display, int
cannyThreshold
, int accumulatorThreshold)
34
HoughCircles( src_gray, circles, HOUGH_GRADIENT, 1, src_gray.rows/8,
cannyThreshold
, accumulatorThreshold, 0, 0 );
82
int
cannyThreshold
= cannyThresholdInitialValue;
87
createTrackbar(cannyThresholdTrackbarName, windowName, &
cannyThreshold
,maxCannyThreshold);
98
cannyThreshold
= std::max(
cannyThreshold
, 1);
102
HoughDetection(src_gray, src,
cannyThreshold
, accumulatorThreshold);
/external/opencv3/modules/cudaimgproc/test/
test_hough.cpp
141
const int
cannyThreshold
= 100;
153
cv::Ptr<cv::cuda::HoughCirclesDetector> houghCircles = cv::cuda::createHoughCirclesDetector(dp, minDist,
cannyThreshold
, votesThreshold, minRadius, maxRadius);
/external/opencv3/modules/cudaimgproc/perf/
perf_hough.cpp
194
const int
cannyThreshold
= 100;
207
cv::Ptr<cv::cuda::HoughCirclesDetector> houghCircles = cv::cuda::createHoughCirclesDetector(dp, minDist,
cannyThreshold
, votesThreshold, minRadius, maxRadius);
221
TEST_CYCLE() cv::HoughCircles(src, cpu_circles, cv::HOUGH_GRADIENT, dp, minDist,
cannyThreshold
, votesThreshold, minRadius, maxRadius);
Completed in 60 milliseconds