Home
last modified time | relevance | path

Searched refs:centersCount (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/cudaimgproc/src/
Dhough_circles.cpp65 …int circlesAccumRadius_gpu(const unsigned int* centers, int centersCount, const unsigned int* list…
204 int centersCount = buildCentersList_gpu(accum_, centers, votesThreshold_); in detect() local
205 if (centersCount == 0) in detect()
213 AutoBuffer<ushort2> oldBuf_(centersCount); in detect()
214 AutoBuffer<ushort2> newBuf_(centersCount); in detect()
220 …cudaSafeCall( cudaMemcpy(oldBuf, centers, centersCount * sizeof(ushort2), cudaMemcpyDeviceToHost) … in detect()
231 for(int i=0; i<centersCount; i++){ in detect()
240 for (int i = 0; i < centersCount; ++i) in detect()
293 centersCount = newCount; in detect()
298 …int circlesCount = circlesAccumRadius_gpu(centers, centersCount, srcPoints, pointsCount, result_.p… in detect()
/external/opencv3/modules/cudaimgproc/src/cuda/
Dhough_circles.cu229 …int circlesAccumRadius_gpu(const unsigned int* centers, int centersCount, const unsigned int* list… in circlesAccumRadius_gpu() argument
238 const dim3 grid(centersCount); in circlesAccumRadius_gpu()