RotatedRect与Rect或RotatedRect OpenCV的交集

时间:2015-05-15 15:29:14

标签: c++ opencv

我知道可以在OpenCV中交叉两个Rect,以获得交叉区域。有没有办法将RotatedRect与c ++中的另一个Rect或RotatedRect相交?

1 个答案:

答案 0 :(得分:1)

您可以使用 rotatedRectangleIntersection 功能:

cv::rotatedRectangleIntersection    (   const RotatedRect &     rect1,
const RotatedRect &     rect2,
OutputArray     intersectingRegion 
)