1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00

imgproc: fix minAreaRect()

This commit is contained in:
Alexander Alekhin
2020-12-10 08:07:50 +00:00
parent 8286d84fb1
commit 3e5d7e1718
4 changed files with 82 additions and 4 deletions
+1 -1
View File
@@ -352,7 +352,7 @@ cv::RotatedRect cv::minAreaRect( InputArray _points )
Point2f out[3];
RotatedRect box;
convexHull(_points, hull, true, true);
convexHull(_points, hull, false, true);
if( hull.depth() != CV_32F )
{