Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

your Sobel outputs CV_64F, while HoughCircles expects CV_8U as input

since HoughCircles works on gradients, you probably should remove both threshold() and Sobel() ops (binarizing will be harmful)

again, have a look at the tutorial