HomeSort by relevance Sort by last modified time
    Searched refs:votes (Results 1 - 9 of 9) sorted by null

  /external/opencv3/modules/imgproc/src/
generalized_hough.cpp 71 void detectImpl(InputArray image, OutputArray positions, OutputArray votes);
72 void detectImpl(InputArray edges, InputArray dx, InputArray dy, OutputArray positions, OutputArray votes);
99 void convertTo(OutputArray positions, OutputArray votes);
154 void GeneralizedHoughBase::detectImpl(InputArray image, OutputArray positions, OutputArray votes)
169 convertTo(positions, votes);
174 if (votes.needed())
175 votes.release();
179 void GeneralizedHoughBase::detectImpl(InputArray edges, InputArray dx, InputArray dy, OutputArray positions, OutputArray votes)
200 convertTo(positions, votes);
205 if (votes.needed()
318 Mat votes = _votes.getMat(); local
480 const int votes = curRow[x + 1]; local
929 const int votes = curRow[x + 1]; local
    [all...]
  /external/opencv3/modules/cudaimgproc/src/
generalized_hough.cpp 70 int Ballard_Pos_findPosInHist_gpu(PtrStepSzi hist, float4* out, int3* votes, int maxSize, float dp, int threshold);
93 int Guil_Full_findPosInHist_gpu(PtrStepSzi hist, float4* out, int3* votes, int curSize, int maxSize,
112 void detectImpl(InputArray image, OutputArray positions, OutputArray votes);
113 void detectImpl(InputArray edges, InputArray dx, InputArray dy, OutputArray positions, OutputArray votes);
148 void convertTo(OutputArray positions, OutputArray votes);
239 void GeneralizedHoughBase::detectImpl(InputArray image, OutputArray positions, OutputArray votes)
244 (void) votes;
258 if (votes.needed())
259 votes.release();
265 convertTo(positions, votes);
    [all...]
hough_lines.cpp 64 int linesGetResult_gpu(PtrStepSzi accum, float2* out, int* votes, int maxSize, float rho, float theta, int threshold, bool doSort);
  /external/opencv3/modules/cudaimgproc/src/cuda/
hough_lines.cu 149 __global__ void linesGetResult(const PtrStepSzi accum, float2* out, int* votes, const int maxSize, const float rho, const float theta, const int threshold, const int numrho)
172 votes[ind] = curVotes;
177 int linesGetResult_gpu(PtrStepSzi accum, float2* out, int* votes, int maxSize, float rho, float theta, int threshold, bool doSort)
189 linesGetResult<<<grid, block>>>(accum, out, votes, maxSize, rho, theta, threshold, accum.cols - 2);
202 thrust::device_ptr<int> votesPtr(votes);
generalized_hough.cu 258 __global__ void Ballard_Pos_findPosInHist(const PtrStepSzi hist, float4* out, int3* votes,
280 votes[ind] = make_int3(curVotes, 0, 0);
285 int Ballard_Pos_findPosInHist_gpu(PtrStepSzi hist, float4* out, int3* votes, int maxSize, float dp, int threshold)
297 Ballard_Pos_findPosInHist<<<grid, block>>>(hist, out, votes, maxSize, dp, threshold);
763 __global__ void Guil_Full_findPosInHist(const PtrStepSzi hist, float4* out, int3* votes, const int maxSize,
786 votes[ind] = make_int3(curVotes, scaleVotes, angleVotes);
791 int Guil_Full_findPosInHist_gpu(PtrStepSzi hist, float4* out, int3* votes, int curSize, int maxSize,
805 Guil_Full_findPosInHist<<<grid, block>>>(hist, out, votes, maxSize,
    [all...]
  /external/opencv/ml/src/
mlrtrees.cpp 410 CvMat votes; local
412 cvGetRow(oob_sample_votes, &votes, i);
413 votes.data.i[predicted_node->class_idx]++;
416 cvMinMaxLoc( &votes, 0, 0, 0, &max_loc );
457 // predict "permuted" cases and calculate the number of votes for the
547 int* votes = (int*)alloca( sizeof(int)*nclasses ); local
548 memset( votes, 0, sizeof(*votes)*nclasses );
556 nvotes = ++votes[class_idx];
  /external/opencv3/modules/ml/src/
rtrees.cpp 220 int* votes = &oobvotes[j*nclasses]; local
221 votes[ival]++;
224 if( votes[best_class] < votes[k] )
tree.cpp 1374 int* votes = buf; local
    [all...]
  /external/opencv3/modules/imgproc/include/opencv2/
imgproc.hpp     [all...]

Completed in 3150 milliseconds