我有一个图像文件。里面有几个填充的圆圈和矩形。填充颜色是蓝色。圆圈的半径可以变化。背景是白色的。我需要找到:
我该怎么办? 我正在使用OpenCV和C ++ 你能写一个代码并解释一下.. 或者请给我一些搜索点......比如使用什么功能等等
我是OpenCV和Stackoverflow的新手...... 感谢..
答案 0 :(得分:0)
OpenCV有一个名为Hough Circle Transform
的东西在该链接上有示例代码:
关键部分是:
/// Apply the Hough Transform to find the circles
HoughCircles( src_gray, circles, CV_HOUGH_GRADIENT, 1, src_gray.rows/8, 200, 100, 0, 0 );
/// Draw the circles detected
for( size_t i = 0; i < circles.size(); i++ )
{
Point center(cvRound(circles[i][0]), cvRound(circles[i][1]));
int radius = cvRound(circles[i][2]);
// circle center
circle( src, center, 3, Scalar(0,255,0), -1, 8, 0 );
// circle outline
circle( src, center, radius, Scalar(0,0,255), 3, 8, 0 );
}
/// Show your results
namedWindow( "Hough Circle Transform Demo", CV_WINDOW_AUTOSIZE );
imshow( "Hough Circle Transform Demo", src );