OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:votesThreshold_
(Results
1 - 3
of
3
) sorted by null
/external/opencv3/modules/cudaimgproc/src/
hough_circles.cpp
88
void setVotesThreshold(int votesThreshold) {
votesThreshold_
= votesThreshold; }
89
int getVotesThreshold() const { return
votesThreshold_
; }
106
<< "votesThreshold" <<
votesThreshold_
118
votesThreshold_
= (int)fn["votesThreshold"];
128
int
votesThreshold_
;
148
dp_(dp), minDist_(minDist), cannyThreshold_(cannyThreshold),
votesThreshold_
(votesThreshold),
173
CV_Assert(
votesThreshold_
> 0 );
204
int centersCount = buildCentersList_gpu(accum_, centers,
votesThreshold_
);
299
dp_, minRadius_, maxRadius_,
votesThreshold_
, deviceSupports(FEATURE_SET_COMPUTE_20));
generalized_hough.cpp
470
void setVotesThreshold(int votesThreshold) {
votesThreshold_
= votesThreshold; }
471
int getVotesThreshold() const { return
votesThreshold_
; }
481
int
votesThreshold_
;
492
votesThreshold_
= 100;
548
CV_Assert(
votesThreshold_
> 0 );
552
posCount_ = Ballard_Pos_findPosInHist_gpu(hist_, outBuf_.ptr<float4>(0), outBuf_.ptr<int3>(1), maxBufferSize_, (float)dp_,
votesThreshold_
);
/external/opencv3/modules/imgproc/src/
generalized_hough.cpp
358
void setVotesThreshold(int votesThreshold) {
votesThreshold_
= votesThreshold; }
359
int getVotesThreshold() const { return
votesThreshold_
; }
369
int
votesThreshold_
;
378
votesThreshold_
= 100;
467
CV_Assert(
votesThreshold_
> 0 );
482
if (votes >
votesThreshold_
&& votes > curRow[x] && votes >= curRow[x + 2] && votes > prevRow[x + 1] && votes >= nextRow[x + 1])
Completed in 207 milliseconds