Ask Your Question

meber's profile - activity

2015-05-18 10:08:30 -0600 asked a question gpu::HoughCircles retrieves circles with equal center

OpenCV 2.4.10 CPU HoughCircles retrieves different results compared with gpu::HoughCircles on my sample scenario. Using exactly the same parameters the CPU variant retrieves 1 circle but the GPU variant 5 circles (all with the same center but different radius).

The used parameters are: method = CV_HOUGH_GRADIENT; dp = 1.0; minDist = 48; cannyThreshold = 46; votesThreshold = 54; minRadius = 36; maxRadius = 60;

C:\fakepath\CircleData.png

What I'm doing wrong?