倾斜物体矫正提取:https://www.cnblogs.com/little-monkey/p/7429579.html
1 #include "opencv2/opencv.hpp"
2 #include<iostream>
3 using namespace std;
4 using namespace cv;
5
6 void main()
7 {
8 Mat srcImg = imread("E://qrcode.jpg");
9 imshow("src", srcImg);
10 Mat dstImg = srcImg.clone();
11 GaussianBlur(srcImg, srcImg, Size(3, 3), 0, 0);
12 cvtColor(srcImg, srcImg, CV_BGR2GRAY);
13 Canny(srcImg, srcImg, 100, 200);//因为原图比较复杂,所以需要将canny的值调大,去除不想要的成分
14 //threshold(srcImg, srcImg, 100, 255, CV_THRESH_BINARY_INV); //二值化也可以实现canny效果,不过在本例中杂絮较多
15 imshow("canny", srcImg);
16 Mat element = getStructuringElement(MORPH_RECT, Size(11, 11), Point(-1, -1)); //定义结构元素
17 dilate(srcImg, srcImg, element); //膨胀
18 imshow("dilate", srcImg);
19 erode(srcImg, srcImg, element);
20 imshow("erode", srcImg);
21
22 vector<vector<Point>> contours;
23 vector<Vec4i> hierarcy;
24 findContours(srcImg, contours, hierarcy, CV_RETR_TREE, CV_CHAIN_APPROX_NONE);
25 vector<Rect> boundRect(contours.size());
26 vector<RotatedRect> box(contours.size());
27 Point2f rect[4];
28 for(int i=0; i<contours.size(); i++)
29 {
30 box[i] = minAreaRect(Mat(contours[i]));
31 boundRect[i] = boundingRect(Mat(contours[i]));
32
33 if(box[i].size.width < 100 || box[i].size.height<100)//筛选
34 continue;
35 rectangle(dstImg, Point(boundRect[i].x, boundRect[i].y), Point(boundRect[i].x + boundRect[i].width, boundRect[i].y + boundRect[i].height), Scalar(0, 255, 0), 2, 8);
36 circle(dstImg, Point(box[i].center.x, box[i].center.y), 5, Scalar(0, 255, 0), -1, 8);
37 box[i].points(rect);
38 for(int j=0; j<4; j++)
39 {
40 line(dstImg, rect[j], rect[(j+1)%4], Scalar(0, 0, 255), 2, 8);
41 }
42
43 float angle;
44 cout<<"angle="<<box[i].angle<<endl;
45 angle = box[i].angle;
46 char width[20], height[20];
47 sprintf(width, "width=%0.2f", box[i].size.width);
48 sprintf(height, "height=%0.2f", box[i].size.height);
49 putText(dstImg, width, Point(195, 260), CV_FONT_HERSHEY_COMPLEX_SMALL, 0.85, Scalar(0, 255, 0));
50 putText(dstImg, height, Point(190, 285), CV_FONT_HERSHEY_COMPLEX_SMALL, 0.85, Scalar(0, 255, 0));
51 imshow("temp", dstImg);
52
53 //利用仿射变换进行旋转 另一种方法,透视变换
54 if (0< abs(angle) && abs(angle)<=45)
55 angle = angle;//负数,顺时针旋转
56 else if (45< abs(angle) && abs(angle)<90)
57 angle = 90 - abs(angle);//正数,逆时针旋转
58 Point2f center = box[i].center; //定义旋转中心坐标
59 double angle0 = angle;
60 double scale = 1;
61 Mat roateM = getRotationMatrix2D(center, angle0, scale); //获得旋转矩阵,顺时针为负,逆时针为正
62 warpAffine(dstImg, dstImg, roateM, dstImg.size()); //仿射变换
63
64 //保存二维码
65 int x0=0, y0=0, w0=0, h0=0;
66 x0 = boundRect[i].x;
67 y0 = boundRect[i].y;
68 w0 = boundRect[i].width;
69 h0 = boundRect[i].height;
70 Mat ROI = dstImg(Rect(x0, y0, w0, h0));
71 imwrite("F://1.jpg", ROI);
72 }
73 imshow("dst", dstImg);
74 waitKey(0);
75 }
倾斜物体矫正
最新推荐文章于 2024-08-05 06:26:23 发布