opencv提取旋转矩形区域的图像(将旋转矩形区域图像旋转成水平)

自己一个需求:给4个点,求最小外接矩形,然后提取矩形内的图片。但是最小外接矩形一般都是倾斜的,那么如何把倾斜的矩形转换成水平呢?在网上找了老半天没找到简单的方法,貌似也没有现成的opencv函数(如果说知道麻烦告诉一声。。)。

网上能查到的是一种漫水填充法,但是貌似挺复杂。所以自己稍微鼓捣了一下,凑合能用。

步骤:

  1. 找到外接矩形之后,这个外接矩形的中心、长宽、旋转角度是知道的。所以把原图以外界矩形的中心为轴心,旋转相应的度数。
  2. 然后选取ROI区域,提取就行了。具体ROI怎么选的,看代码。
#include "highgui/highgui.hpp"    
#include "imgproc/imgproc.hpp"    
#include "iostream"  

using namespace std;
using namespace cv;

int main(int argc, char *argv[])
{
	Mat imageSource = imread("1.jpg", 0);
	imshow("Source Image", imageSource);
	vector<Point> contour;
	Point p1(800,400), p2(1100,605), p3(902,970), p4(802,780);//随意给了4个点
	contour.push_back(p1);
	contour.push_back(p2);
	contour.push_back(p3);
	contour.push_back(p4);
	RotatedRect rect = minAreaRect(contour);//外接矩形
	Point2f vertices[
OpenCV中,如果你想要获取图像中的旋转矩形区域,你可以使用`getRotatedRect()`函数和`drawContours()`函数。首先,你需要找到轮廓(contours),这通常通过边缘检测(如Canny、HoughCircles或HoughLinesP等)或特征检测(如SIFT、SURF等)得到。 以下是一个简化的步骤: 1. **读取和预处理图像**: ```cpp cv::Mat image = cv::imread("image.jpg", cv::IMREAD_GRAYSCALE); ``` 2. **应用边缘检测或其他特征提取算法**: ```cpp cv::Canny(image, edges, threshold1, threshold2); std::vector<std::vector<cv::Point>> contours; cv::findContours(edges, contours, cv::RETR_EXTERNAL, cv::CHAIN_APPROX_SIMPLE); ``` 3. **寻找轮廓并获取旋转矩形**: 对于每个轮廓,可以这样计算旋转矩形: ```cpp for (const auto& contour : contours) { cv::Rect boundingRect = cv::boundingRect(contour); cv::RotatedRect rotatedRect = cv::minAreaRect(contour); // 获取最小的旋转矩形 double angle = rotatedRect.angle; // 取得旋转角度 } ``` 4. **绘制旋转矩形**: ```cpp cv::Mat rotatedImage = cv::Mat::zeros(image.size(), CV_8UC3); for (const auto& contour : contours) { cv::drawContours(rotatedImage, {contour}, -1, Scalar(0, 255, 0), 2); int left = rotatedRect.center.x - rotatedRect.size.width / 2; int top = rotatedRect.center.y - rotatedRect.size.height / 2; cv::rectangle(rotatedImage, Point(left, top), Point(left + rotatedRect.size.width, top + rotatedRect.size.height), Scalar(0, 0, 255), 2); } ``` 5. **显示结果**: ```cpp cv::imshow("Original", image); cv::imshow("Rotated Rectangles", rotatedImage); ```
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值