意义:
轮廓信息对于物体检测而言有着十分重要的意义,根据提取到的轮廓信息,通过轮廓点集的特征选择适合的处理算法,即可提取到物体的形状信息,从而提取所需检测的物体。
大概原理:
对原图像进行二值化处理,利用边缘点连接的层次差别,提取位于结构特征高的区域点集构成的集合,这部分点集很可能就是物体的轮廓。
核心函数:
详细参见:https://www.jianshu.com/p/4bc3349b4611 有官方源文档
findContours( InputOutputArray image, OutputArrayOfArrays contours,
OutputArray hierarchy, int mode,
int method, Point offset=Point());
从上面的函数解释来看,这个函数的参数比较多。这里从简单开始进行一些测试来对比参数的功能。
1、只检测最外层轮廓
mode使用CV_RETR_EXTERNAL即可
#include
#include
#include
#include
#include
using namespace cv;
using namespace std;
Mat srcImage;
Mat srcGray;
int thresh = 100;
int max_thresh = 255;
RNG rng(12345);
//tracebar回调
void thresh_callback(int, void *)
{
Mat canny_output;
vector>contours;
vector hierarchy;
//canny边缘检测
Canny(srcGray, canny_output, thresh, thresh * 2, 3);
//寻找轮廓
findContours(canny_output, contours, hierarchy,
CV_RETR_EXTERNAL, CV_CHAIN_APPROX_SIMPLE, Point(0, 0));
//绘制轮廓
Mat drawing = Mat::zeros(canny_output.size(), CV_8UC3);
for (int i = 0; i < contours.size(); i++){
//定义随机颜色
Scalar color = Scalar(rng.uniform(0, 255),
rng.uniform(0, 255), rng.uniform(0, 255));
//绘制
drawContours(drawing, contours, i, color,
2, 8, hierarchy, 0, Point());
}
//显示
namedWindow("contours", CV_WINDOW_AUTOSIZE);
imshow("contours", drawing);
}
void main()
{
srcImage = imread("F:\\opencv_re_learn\\contour1.jpg");
if (!srcImage.data){
cout << "failed to read" << endl;
system("pause");
return;
}
//灰度图
cvtColor(srcImage, srcGray, CV_BGR2GRAY);
blur(srcGray, srcGray, Size(3, 3));
//
string src_win = "srcImage";
namedWindow(src_win, CV_WINDOW_AUTOSIZE);
imshow(src_win, srcImage);
//创建滑动条
createTrackbar("threth:", "srcImage", &thresh,
max_thresh, thresh_callback);
thresh_callback(0, 0);
waitKey(0);
}
效果:
2、检测所有轮廓,且建立等级结构
mode使用CV_RETR_TREE
若想只绘制出内层轮廓
那么,查看轮廓等级树hierarchy
这里有4个轮廓,其中【0】和【1】重复 , 【2】和【3】重复
而且从上面可以看出,右侧有两个旮沓的是内层轮廓
那么,【3】就是我们想要的轮廓
法一
绘制轮廓函数 drawContours(drawing, contours,
i3, color,2, 8, hierarchy, 0, Point());把i,改成3,即可
法二
从上面分析可知,当hierarchy[i][3]==-1 时,那么这个轮廓很可能就是内层的轮廓
于是,代码修改为:
//绘制 if (hierarchy[i][2] == -1){ drawContours(drawing, contours, i, color, 2, 8, hierarchy, 0, Point()); }
效果:
从右侧边框的旮沓,可以得知,这个是内层轮廓