Home
last modified time | relevance | path

Searched refs:accum_ (Results 1 – 3 of 3) sorted by relevance

/external/opencv3/modules/cudaimgproc/src/
Dhough_segments.cpp126 GpuMat accum_; member in __anon847be16b0111::HoughSegmentDetectorImpl
160 ensureSizeIsEnough(numangle + 2, numrho + 2, CV_32SC1, accum_); in detect()
161 accum_.setTo(Scalar::all(0)); in detect()
164 …linesAccum_gpu(srcPoints, pointsCount, accum_, rho_, theta_, devInfo.sharedMemPerBlock(), devInfo.… in detect()
168 …int linesCount = houghLinesProbabilistic_gpu(src, accum_, result_.ptr<int4>(), maxLines_, rho_, th… in detect()
Dhough_lines.cpp123 GpuMat accum_; member in __anon740b7d800111::HoughLinesDetectorImpl
156 ensureSizeIsEnough(numangle + 2, numrho + 2, CV_32SC1, accum_); in detect()
157 accum_.setTo(Scalar::all(0)); in detect()
160 …linesAccum_gpu(srcPoints, pointsCount, accum_, rho_, theta_, devInfo.sharedMemPerBlock(), devInfo.… in detect()
164 …int linesCount = linesGetResult_gpu(accum_, result_.ptr<float2>(0), result_.ptr<int>(1), maxLines_… in detect()
Dhough_circles.cpp135 GpuMat accum_; member in __anon547dd86a0111::HoughCirclesDetectorImpl
197 … ensureSizeIsEnough(cvCeil(src.rows * idp) + 2, cvCeil(src.cols * idp) + 2, CV_32SC1, accum_); in detect()
198 accum_.setTo(Scalar::all(0)); in detect()
200 … circlesAccumCenters_gpu(srcPoints, pointsCount, dx_, dy_, accum_, minRadius_, maxRadius_, idp); in detect()
202 accum_.download(tt); in detect()
204 int centersCount = buildCentersList_gpu(accum_, centers, votesThreshold_); in detect()