我想使用 OpenCV 和 C++ 检测图像中的圆圈。我可以通过参考官方文档并调整 OpenCV 团队编写的代码的参数来做到这一点。
所以,我正在使用的代码如下:(参数已经调整)
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include <iostream>
#include <stdio.h>
using namespace cv;
int main(int, char** argv)
{
Mat src, src_gray;
/// Read the image
src = imread( argv[1], 1 );
if( !src.data )
{ return -1; }
/// Convert it to gray
cvtColor( src, src_gray, CV_BGR2GRAY );
/// Reduce the noise so we avoid false circle detection
GaussianBlur( src_gray, src_gray, Size(9, 9), 2, 2 );
vector<Vec3f> circles;
/// Apply the Hough Transform to find the circles
HoughCircles( src_gray, circles, CV_HOUGH_GRADIENT, 6.0, 5, 110, 70, 3, 20 );
/// Draw the circles detected
for( size_t i = 0; i < circles.size(); i++ )
{
Point center(cvRound(circles[i][0]), cvRound(circles[i][2]));
int radius = cvRound(circles[i][3]);
// 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 );
waitKey(0);
src.release();
src_gray.release();
return 0;
}
我要检测的圆圈的图像如下:测试图像
这些实际上是我使用 cvBlobsLib 获得并重新绘制为新图像的两个 blob 的轮廓。
该算法能够识别每个圆的中心,但是,当我按下任何键关闭程序时,它就会崩溃...... :(而且我必须强行关闭它。
我需要调整该算法以在相机中运行,因此当它像那样崩溃时我无法继续执行。
那么,有谁知道是什么导致了这个问题?我正在 Visual Studio 2012 和 OpenCV 2.4.2 版上进行开发。
如果有人能给我一个建议,或者尝试运行算法,我将非常感激!