我目前正在尝试将圆圈外的所有内容涂黑。我正在使用以下代码行绘制圆圈:
cv::Point center(cvRound(circles[i][0]), cvRound(circles[i][1])); // CVRound converts floating numbers to integer
int radius = cvRound(circles[i][2]); // Radius is the third parameter [i][0] = x [i][1]= y [i][2] = radius
circle( image, center, 3, cv::Scalar(0,255,0), -1, 8, 0 ); // Drawing little circle to Image Center , next Line of Code draws the real circle
circle( image, center, radius, cv::Scalar(0,0,255), 3, 8, 0 ); // Circle(img, center, radius, color, thickness=1, lineType=8, shift=0)
如果我有一个半径和我的圆的中心,那么将所有圆形黑色绘制的最佳方法是什么?OpenCV 是否提供了一种简单的机制来执行此操作,或者我应该遍历图像的所有像素并根据位置将它们着色为黑色吗?