Lines Matching refs:curVotes
267 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()
777 curVotes >= hist(y + 1, x + 2) && in Guil_Full_findPosInHist()
778 curVotes > hist(y, x + 1) && in Guil_Full_findPosInHist()
779 curVotes >= hist(y + 2, x + 1)) in Guil_Full_findPosInHist()
786 votes[ind] = make_int3(curVotes, scaleVotes, angleVotes); in Guil_Full_findPosInHist()