无法获得霍夫圈

时间:2014-12-31 14:13:28

标签: opencv image-processing hough-transform

我有以下图片:

enter image description here

我在c ++中使用opencv 3,以下代码总是返回0,无论我尝试使用阈值。

std::vector<cv::Vec3f> circles;
cv::Mat img; // this is an image i've loaded... I'm not showing this code here

cv::HoughCircles(img, circles,
    cv::HOUGH_GRADIENT, 1, 1, 100, 100, 0, 0);

int n = circles.size();

我猜我有一个小错误,但我找不到它。

谢谢!

0 个答案:

没有答案