Home
last modified time | relevance | path

Searched refs:curVotes (Results 1 – 4 of 4) sorted by relevance

/external/opencv3/modules/cudaimgproc/src/cuda/
Dhough_segments.cu68 const int curVotes = accum(n + 1, r + 1); in houghLinesProbabilistic() local
70 if (curVotes >= lineLength && in houghLinesProbabilistic()
71 curVotes > accum(n, r) && in houghLinesProbabilistic()
72 curVotes > accum(n, r + 1) && in houghLinesProbabilistic()
73 curVotes > accum(n, r + 2) && in houghLinesProbabilistic()
74 curVotes > accum(n + 1, r) && in houghLinesProbabilistic()
75 curVotes > accum(n + 1, r + 2) && in houghLinesProbabilistic()
76 curVotes > accum(n + 2, r) && in houghLinesProbabilistic()
77 curVotes > accum(n + 2, r + 1) && in houghLinesProbabilistic()
78 curVotes > accum(n + 2, r + 2)) in houghLinesProbabilistic()
Dhough_lines.cu157 const int curVotes = accum(n + 1, r + 1); in linesGetResult() local
159 if (curVotes > threshold && in linesGetResult()
160 curVotes > accum(n + 1, r) && in linesGetResult()
161 curVotes >= accum(n + 1, r + 2) && in linesGetResult()
162 curVotes > accum(n, r + 1) && in linesGetResult()
163 curVotes >= accum(n + 2, r + 1)) in linesGetResult()
172 votes[ind] = curVotes; in linesGetResult()
Dgeneralized_hough.cu267 const int curVotes = hist(y + 1, x + 1); in Ballard_Pos_findPosInHist() local
269 if (curVotes > threshold && in Ballard_Pos_findPosInHist()
270 curVotes > hist(y + 1, x) && in Ballard_Pos_findPosInHist()
271 curVotes >= hist(y + 1, x + 2) && in Ballard_Pos_findPosInHist()
272 curVotes > hist(y, x + 1) && in Ballard_Pos_findPosInHist()
273 curVotes >= hist(y + 2, x + 1)) in Ballard_Pos_findPosInHist()
280 votes[ind] = make_int3(curVotes, 0, 0); in Ballard_Pos_findPosInHist()
773 const int curVotes = hist(y + 1, x + 1); in Guil_Full_findPosInHist() local
775 if (curVotes > threshold && in Guil_Full_findPosInHist()
776 curVotes > hist(y + 1, x) && in Guil_Full_findPosInHist()
[all …]
Dhough_circles.cu218 const int curVotes = smem[i + 1]; in circlesAccumRadius() local
220 if (curVotes >= threshold && curVotes > smem[i] && curVotes >= smem[i + 2]) in circlesAccumRadius()