在opencv
,我正在使用霍夫变换来寻找圆形这里是代码
HoughCircles (diff, circles, CV_HOUGH_GRADIENT, 2, src.cols / 5, 200, 80, 20, 62);
for (size_t i = 0; i < circles.size(); i++ )
{
//if(circles[i][2]<62)
{
Point center(cvRound(circles[i][0]), cvRound(circles[i][1]));
int radius = cvRound(circles[i][2]);
// draw the green circle center
circle( src, center, 3, Scalar(0,255,255), -1, 8, 0 );
// draw the blue circle outline
circle(src, center, radius, Scalar(0,255,0), 3, 8, 0 );
}
}
我面临的问题是,有时如果它找到 3 个圆,第三个中心坐标是分数而不是整数,因为如果它找到 4 个圆,它也会给出这个错误
xyz.exe 中 0x75ebc41f 处的未处理异常:Microsoft C++ 异常:内存位置 0x002df08c 处的 cv::Exception。
如果我尝试cout
中心坐标。