opencv如何在java中绘制minAreaRect



嗨,我正试图从minAreaRect中绘制旋转矩形,但我在python中只找到了代码。

rect = cv2.minAreaRect(cnt)
box = cv2.cv.BoxPoints(rect)
box = np.int0(box)
cv2.drawContours(im,[box],0,(0,0,255),2)

如何用java绘制?

我知道这个问题很老了,但最近我遇到了同样的问题,所以我决定在这里发布答案。

不幸的是,我在Android上使用的OpenCV版本没有支持RotatedRect作为参数的方法rectangle。所以我不得不即兴发挥。

    Point points[] = new Point[4];
    rect.points(points);
    for(int i=0; i<4; ++i){
        Core.line(init, points[i], points[(i+1)%4], new Scalar(255,255,255));
    }

您可以这样使用drawContours

Point[] vertices = new Point[4];
rotatedRect.points(vertices);
List<MatOfPoint> boxContours = new ArrayList<>();
boxContours.add(new MatOfPoint(vertices));
Imgproc.drawContours(out, boxContours, 0, new Scalar(128, 128, 128), -1);

使用此方法,您可以绘制轮廓并用纯色填充(如果使用Imgproc.line,则无法做到这一点)

我使用如下代码从minAreaRect绘制旋转的矩形:

rRect = Imgproc.minAreaRect(mop2f);
        Point[] vertices = new Point[4];  
        rRect.points(vertices);  
        for (int j = 0; j < 4; j++){  
            Imgproc.line(mat, vertices[j], vertices[(j+1)%4], new Scalar(0,255,0));
        }

类似这样的东西:

MatOfPoint2f points = new MatOfPoint2f(new Point(1, 1), new Point(5, 1), new Point(4, 3), new Point(6, 2));
RotatedRect rrect = Imgproc.minAreaRect(points);

相关内容

  • 没有找到相关文章

最新更新