では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 つの円が見つかった場合、3 番目の中心座標が整数ではなく分数であることがあり、4 つの円が見つかった場合にもこのエラーが発生することです。
xyz.exe の 0x75ebc41f で未処理の例外: Microsoft C++ 例外: cv::Exception at memory location 0x002df08c..
cout
座標を中心にしようとした場合。