OpenCV 笔记 — 矩形边缘检测算法
OpenCV-
去噪
使用
medianBlur
中值滤波算法对图像去噪。中值滤波以像素点邻域灰度值的中值来代替该像素点的灰度,能够较好的保留图像的边缘细节,有助于边缘的检测。medianBlur
算法的函数原型如下:CV_EXPORTS_W void medianBlur( InputArray src, OutputArray dst, int ksize );
-
边缘检测
Canny
边缘检测算法的函数原型如下:CV_EXPORTS_W void Canny( InputArray image, OutputArray edges, double threshold1, double threshold2, int apertureSize = 3, bool L2gradient = false );
Canny
算法通过求解每一像素点附近的梯度幅度与方向来判断该点是否为边缘点。具体实现中,还拥有两个参数threshould1
与threshould2
,作为为Canny
算法的滞后阈值:- 如果某一像素位置的幅值超过高阈值, 该像素被保留为边缘像素;
- 如果某一像素位置的幅值小于低阈值,该像素被排除;
- 如果某一像素的幅值在两个阈值之间,则只有当该像素与一个高于高阈值的像素相邻时,该像素被保留。
通过测试,我们调整参数为
threshould1 = 10, threshould2 = 20
。 -
膨胀边缘
dilate
算法是OpenCV
的形态学算法之一,其可以对形状进行「膨胀」 。利用dilate
算法,可以去除第二步中因局部噪点产生的孔洞,以防止下一步对轮廓探测的影响。dilate
算法的函数原型如下:CV_EXPORTS_W void dilate( InputArray src, OutputArray dst, InputArray kernel, Point anchor = Point(-1,-1), int iterations = 1, int borderType = BORDER_CONSTANT, const Scalar& borderValue = morphologyDefaultBorderValue() );
-
轮廓探测
findContour
算法是OpenCV
所提供的轮廓探测算法,其函数原型如下:CV_EXPORTS void findContours( InputOutputArray image, OutputArrayOfArrays contours, int mode, int method, Point offset = Point());
参数
mode
定义轮廓的检索模式。有如下几个取值:CV_RETR_EXTERNAL
只检测最外围轮廓;CV_RETR_LIST
检测所有的轮廓,包括内围、外围轮廓,但是检测到的轮廓不建立等级关系;CV_RETR_CCOMP
检测所有的轮廓,但所有轮廓只建立两个等级关系;CV_RETR_TREE
检测所有轮廓,所有轮廓建立一个等级树结构。
参数
method
定义轮廓的近似方法。有如下几个取值:CV_CHAIN_APPROX_NONE
保存物体边界上所有连续的轮廓点到contours
向量内;CV_CHAIN_APPROX_SIMPLE
仅保存轮廓的拐点信息,把所有轮廓拐点处的点保存入contours
向量内。
根据实际目的,应选择
CV_RETR_LIST
与CV_CHAIN_APPROX_SIMPLE
这两个取值。 -
测试找到的轮廓
findContour
所找到的轮廓包含各种各样的形状。我们需要对上一部中的每个轮廓进行测试,筛选出其中的矩形。-
首先利用
approxPolyDP
对轮廓进行多边形拟合。这里利用arcLength
函数计算每个轮廓的周长,来设置多边形拟合的精度; -
对矩形进行判断。显然,一个矩形拥有四个顶点,且为一个凸包。这里利用
isContourConvex
来对多边形是否为凸包进行判断。同时,我们还利用contourArea
计算多边形面积过滤掉了过小的多边形; -
这里还对过于狭长的菱形进行了过滤:
对于四边形 ,当且仅当 ,该四边形才会被添加到结果列表里。
-
具体实现代码如下:
void ImgOperate::detectSquares() {
::std::vector<::std::vector<::cv::Point>> _squares;
::std::vector<::std::vector<::cv::Point>> contours;
::cv::Mat blurred(main_image.size(), CV_8UC3);
// 使用 ::cv::medianBlur 去噪
::cv::medianBlur(main_image, blurred, 9);
::cv::Mat gray0(blurred.size(), CV_8U), gray;
// 对图像的每个通道进行一次识别
for (int c = 0; c < 3; c++) {
int ch[] = { c, 0 };
::cv::mixChannels(&blurred, 1, &gray0, 1, ch, 1);
const int threshold_level = 2;
for (int l = 0; l < threshold_level; l++) {
if (l == 0) {
// 边缘检测
::cv::Canny(gray0, gray, 10, 20, 3);
// 膨胀边缘
::cv::dilate(gray, gray, ::cv::Mat(), ::cv::Point(-1, -1));
} else {
gray = gray0 >= (l + 1) * 255 / threshold_level;
}
// 轮廓探测
::cv::findContours(gray, contours, CV_RETR_LIST, CV_CHAIN_APPROX_SIMPLE);
// 测试找到的轮廓
::std::vector<::cv::Point> approx;
for (size_t i = 0; i < contours.size(); i++) {
// 多边形拟合
::cv::approxPolyDP(::cv::Mat(contours[i]), approx, ::cv::arcLength(::cv::Mat(contours[i]), true)*0.02, true);
// 矩形判断基本条件
if (approx.size() == 4 &&
fabs(::cv::contourArea(::cv::Mat(approx))) > 1000 &&
::cv::isContourConvex(::cv::Mat(approx))) {
// 过滤狭长菱形
double maxCosine = 0;
for (int j = 2; j < 5; j++) {
double cosine = fabs(angle(approx[j % 4], approx[j - 2], approx[j - 1]));
maxCosine = MAX(maxCosine, cosine);
}
if (maxCosine < 0.3)
_squares.push_back(approx);
}
}
}
}
/*Some Other Code*/
}