图像处理 - OpenCV - 查找图像中圆的面积和中心坐标

时间:2015-01-28 11:26:23

标签: c++ opencv geometry area hough-transform

我有一个图像文件。里面有几个填充的圆圈和矩形。填充颜色是蓝色。圆圈的半径可以变化。背景是白色的。我需要找到:

  1. 每个圆圈的中心坐标。
  2. 每个圆圈的区域。
  3. 我该怎么办? 我正在使用OpenCV和C ++ 你能写一个代码并解释一下.. 或者请给我一些搜索点......比如使用什么功能等等

    我是OpenCV和Stackoverflow的新手...... 感谢..

1 个答案:

答案 0 :(得分:0)

OpenCV有一个名为Hough Circle Transform

的东西

在该链接上有示例代码:

  1. 加载图像并模糊图像以降低噪点
  2. 将霍夫圆变换应用于模糊图像。
  3. 在窗口中显示检测到的圆圈。
  4. 关键部分是:

      /// 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 );