HomeSort by relevance Sort by last modified time
    Searched defs:votesThreshold (Results 1 - 3 of 3) sorted by null

  /external/opencv3/modules/cudaimgproc/test/
test_hough.cpp 142 const int votesThreshold = 20;
153 cv::Ptr<cv::cuda::HoughCirclesDetector> houghCircles = cv::cuda::createHoughCirclesDetector(dp, minDist, cannyThreshold, votesThreshold, minRadius, maxRadius);
  /external/opencv3/samples/gpu/
generalized_hough.cpp 36 "{ votesThreshold | 30 | the accumulator threshold for the template centers at the detection stage. The smaller it is, the more false positions may be detected }"
65 const int votesThreshold = cmd.get<int>("votesThreshold");
97 ballard->setVotesThreshold(votesThreshold);
  /external/opencv3/modules/cudaimgproc/perf/
perf_hough.cpp 195 const int votesThreshold = 15;
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 277 milliseconds