Searched refs:votesThreshold_ (Results 1 – 3 of 3) sorted by relevance
/external/opencv3/modules/cudaimgproc/src/ |
D | hough_circles.cpp | 88 void setVotesThreshold(int votesThreshold) { votesThreshold_ = votesThreshold; } in setVotesThreshold() 89 int getVotesThreshold() const { return votesThreshold_; } in getVotesThreshold() 106 << "votesThreshold" << votesThreshold_ in write() 118 votesThreshold_ = (int)fn["votesThreshold"]; in read() 128 int votesThreshold_; member in __anon5063abef0111::HoughCirclesDetectorImpl 148 … dp_(dp), minDist_(minDist), cannyThreshold_(cannyThreshold), votesThreshold_(votesThreshold), in HoughCirclesDetectorImpl() 173 CV_Assert( votesThreshold_ > 0 ); in detect() 204 int centersCount = buildCentersList_gpu(accum_, centers, votesThreshold_); in detect() 299 … dp_, minRadius_, maxRadius_, votesThreshold_, deviceSupports(FEATURE_SET_COMPUTE_20)); in detect()
|
D | generalized_hough.cpp | 470 void setVotesThreshold(int votesThreshold) { votesThreshold_ = votesThreshold; } in setVotesThreshold() 471 int getVotesThreshold() const { return votesThreshold_; } in getVotesThreshold() 481 int votesThreshold_; member in __anon701856140211::GeneralizedHoughBallardImpl 492 votesThreshold_ = 100; in GeneralizedHoughBallardImpl() 548 CV_Assert( votesThreshold_ > 0 ); in findPosInHist() 552 …(hist_, outBuf_.ptr<float4>(0), outBuf_.ptr<int3>(1), maxBufferSize_, (float)dp_, votesThreshold_); in findPosInHist()
|
/external/opencv3/modules/imgproc/src/ |
D | generalized_hough.cpp | 358 void setVotesThreshold(int votesThreshold) { votesThreshold_ = votesThreshold; } in setVotesThreshold() 359 int getVotesThreshold() const { return votesThreshold_; } in getVotesThreshold() 369 int votesThreshold_; member in __anon1aa6ac770211::GeneralizedHoughBallardImpl 378 votesThreshold_ = 100; in GeneralizedHoughBallardImpl() 467 CV_Assert( votesThreshold_ > 0 ); in findPosInHist() 482 …if (votes > votesThreshold_ && votes > curRow[x] && votes >= curRow[x + 2] && votes > prevRow[x + … in findPosInHist()
|