Commit 10465c54 authored by Chechli's avatar Chechli

Update hough_circles.cpp

parent 72e4f72a
......@@ -195,7 +195,10 @@ namespace
accum_.setTo(Scalar::all(0));
circlesAccumCenters_gpu(srcPoints, pointsCount, dx_, dy_, accum_, minRadius_, maxRadius_, idp);
Mat tt; //CPU copy of accum_
accum_.download(tt);
int centersCount = buildCentersList_gpu(accum_, centers, votesThreshold_);
if (centersCount == 0)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment