Searched refs:accumulatorThreshold (Results 1 – 1 of 1) sorted by relevance
/external/opencv3/samples/cpp/tutorial_code/ImgTrans/ |
D | HoughCircle_Demo.cpp | 29 …etection(const Mat& src_gray, const Mat& src_display, int cannyThreshold, int accumulatorThreshold) in HoughDetection() argument 34 …rc_gray, circles, HOUGH_GRADIENT, 1, src_gray.rows/8, cannyThreshold, accumulatorThreshold, 0, 0 ); in HoughDetection() 83 int accumulatorThreshold = accumulatorThresholdInitialValue; in main() local 88 …createTrackbar(accumulatorThresholdTrackbarName, windowName, &accumulatorThreshold, maxAccumulator… in main() 99 accumulatorThreshold = std::max(accumulatorThreshold, 1); in main() 102 HoughDetection(src_gray, src, cannyThreshold, accumulatorThreshold); in main()
|