一种方法在于用cv::inRange()阈值输入图像:
cv::Mat image = cv::imread(argv[1]);
if (image.empty())
{
std::cout << "!!! Failed imread()" << std::endl;
return -1;
}
cv::Mat red_image;
cv::inRange(image, cv::Scalar(40, 0, 180), cv::Scalar(135, 110, 255), red_image);
//cv::imwrite("out1.png", red_image);
输出:
我们可以使用cv::findContours 来检索阈值图像的轮廓,以便能够为它们创建边界框,which is a technique described here:
std::vector<std::vector<cv::Point> > contours;
std::vector<cv::Vec4i> hierarchy;
cv::findContours( red_image,
contours,
hierarchy,
CV_RETR_TREE,
CV_CHAIN_APPROX_SIMPLE,
cv::Point(0, 0) );
std::vector<std::vector<cv::Point> > contours_poly( contours.size() );
std::vector<cv::Rect> boundRect( contours.size() );
for( int i = 0; i < contours.size(); i++ )
{
cv::approxPolyDP( cv::Mat(contours[i]), contours_poly[i], 3, true );
boundRect[i] = cv::boundingRect( cv::Mat(contours_poly[i]) );
}
// Debug purposes: draw bonding rects
//cv::Mat tmp = cv::Mat::zeros( red_image.size(), CV_8UC3 );
//for( int i = 0; i< contours.size(); i++ )
// rectangle( tmp, boundRect[i].tl(), boundRect[i].br(), cv::Scalar(0, 255, 0), 2, 8, 0 );
//cv::imwrite("out2.png", tmp);
输出:
上图中显示的所有矩形都作为cv::Rect 对象存储在boundRect 向量中。每个 rectangle 由 2 个相对的 cv::Point 对象组成,因此我们迭代此向量以创建一个仅由 cv::Point 对象组成的新向量:
// Two opposite cv::Point can be used to draw a rectangle.
// Iterate on the cv::Rect vector and retrieve all cv::Point
// and store them in a cv::Point vector.
std::vector<cv::Point> rect_points;
for( int i = 0; i < contours.size(); i++ )
{
rect_points.push_back(boundRect[i].tl());
rect_points.push_back(boundRect[i].br());
}
//cv::Mat drawing = cv::Mat::zeros( red_image.size(), CV_8UC3 );
cv::Mat drawing = image.clone();
寻找白色方块的逻辑是:假设25x25距离内的2个像素定义一个白色方块:
// Draw a rectangle when 2 points are less than 25x25 pixels of
// distance from each other
for( int i = 0; i < rect_points.size(); i++ )
{
for( int j = 0; j < rect_points.size(); j++ )
{
if (i == j)
continue;
int x_distance = (rect_points[i].x - rect_points[j].x);
if (x_distance < 0)
x_distance *= -1;
int y_distance = (rect_points[i].y - rect_points[j].y);
if (y_distance < 0)
y_distance *= -1;
if ( (x_distance < 25) && (y_distance < 25) )
{
std::cout << "Drawing rectangle " << i << " from "
<< rect_points[i] << " to " << rect_points[j]
<< " distance: " << x_distance << "x" << y_distance << std::endl;
cv::rectangle( drawing,
rect_points[i],
rect_points[j],
cv::Scalar(255, 50, 0),
2 );
break;
}
}
}
//cv::imwrite("out3.png", drawing);
cv::imshow("white rectangles", drawing);
cv::waitKey();
输出:
这个算法非常原始,错过了底部的 2 个白色方块,因为它们下面没有红墙,只有它们上面。
所以我让你来改进这种方法:)
祝你好运。