opencv 中 获得RotatedRect rect 的参数
时间: 2024-03-13 19:45:17 浏览: 180
opencv实现图像打开并反转
5星 · 资源好评率100%
在 OpenCV 中,获取 RotatedRect 的参数可以使用以下代码:
```
RotatedRect rect; // 假设已经获取了 RotatedRect 对象
Point2f vertices[4];
rect.points(vertices); // 获取 RotatedRect 的四个顶点坐标
float angle = rect.angle; // 获取 RotatedRect 的旋转角度
Size2f size = rect.size; // 获取 RotatedRect 的尺寸(长宽)
Point2f center = rect.center; // 获取 RotatedRect 的中心点坐标
```
其中,`points()` 方法可以获取 RotatedRect 的四个顶点坐标,`angle` 获取旋转角度,`size` 获取尺寸,`center` 获取中心点坐标。
阅读全文