opencv如何提取旋转矩形的ROI?
代码如下:
// testRotateRect.cpp : 定义控制台应用程序的入口点。
02 //
03 #include "stdafx.h"
04 #include "opencv2/opencv.hpp"
05 using namespace std;
06 using namespace cv;
07 int _tmain(int argc, _TCHAR* argv[])
08 {
09 Mat image(200,200,CV_8UC3,Scalar(0));
10 RotatedRect rRect=RotatedRect(Point2f(100,100),Size2f(100,50),30); //定义一个旋转矩形
11 Point2f vertices[4];
12 rRect.points(vertices);//提取旋转矩形的四个角点
13 for(int i=0;i<4;i++)
14 {
15 line(image,vertices[i],vertices[(i+1)%4],Scalar(0,255,0));//四个角点连成线,最终形成旋转的矩形。
16 }
17 Mat img=imread("d:/fff.jpg");
18 imshow("ran",image);
19 waitKey();
20 return 0;
21 }
2024-08-08 广告