Opencv4Android getPerspectiveTransform错误

时间:2017-06-20 01:31:14

标签: android opencv opencv4android

我想使用getPerspectiveTransform函数,但它只接受Mat作为参数,我在数组中有坐标数据。所以我将它们转换为点然后转换为Mat,如下所示:

List<Point> l = new ArrayList<Point>();
for (int i = 0; i < pts_1.length; i++) {
    Point pt = new Point(pts_1[0][i], pts_1[1][i]);
    l.add(i,pt);
}
Mat mat1 = Converters.vector_Point2f_to_Mat(l);
for (int i = 0; i < pts_2.length; i++) {
    Point pt = new Point(pts_2[0][i], pts_2[1][i]);
    l.add(i,pt);
    }
Mat mat2 = Converters.vector_Point2f_to_Mat(l);
Mat perspectiveTransform = Imgproc.getPerspectiveTransform(mat1,mat2);

但是当我运行我的应用程序时,它会给我错误'出错了',并且在logcat中我收到以下错误:

E/cv::error(): OpenCV Error: Assertion failed (src.checkVector(2, CV_32F) == 4 && dst.checkVector(2, CV_32F) == 4) in cv::Mat cv::getPerspectiveTransform(cv::InputArray, cv::InputArray), file /build/master_pack-android/opencv/modules/imgproc/src/imgwarp.cpp, line 6748
E/org.opencv.imgproc: imgproc::getPerspectiveTransform_10() caught cv::Exception: /build/master_pack-android/opencv/modules/imgproc/src/imgwarp.cpp:6748: error: (-215) src.checkVector(2, CV_32F) == 4 && dst.checkVector(2, CV_32F) == 4 in function cv::Mat cv::getPerspectiveTransform(cv::InputArray, cv::InputArray)

我是OpenCV4Android的新手,所以我不明白为什么会这样。怎么解决?还有其他更好的方法吗?

感谢您的帮助!

注意:我知道此处遵循类似的程序:Can't get OpenCV's warpPerspective to work on Android但他没有收到此错误,因此我在此处发布。

1 个答案:

答案 0 :(得分:1)

正如OP的帖子评论讨论中提到的那样(所有信用都是他们),问题在于l列表:

List<Point> l = new ArrayList<Point>();
for (int i = 0; i < pts_1.length; i++) {
    Point pt = new Point(pts_1[0][i], pts_1[1][i]);
    l.add(i,pt);
}
Mat mat1 = Converters.vector_Point2f_to_Mat(l);

如果我们看一下List<Point> l的内容:

for (Point pt : l)
    System.out.println("(" + pt.x + ", " + p.ty + ")");

(x0, y0)
(x1, y1)
(x2, y2)
(x3, y3)

转到下一个矩阵:

for (int i = 0; i < pts_2.length; i++) {
    Point pt = new Point(pts_2[0][i], pts_2[1][i]);
    l.add(i,pt);
    }
Mat mat2 = Converters.vector_Point2f_to_Mat(l);

再看一下List<Point> l的内容:

for (Point pt : l)
    System.out.println("(" + pt.x + ", " + p.ty + ")");

(x4, y4)
(x5, y5)
(x6, y6)
(x7, y7)
(x0, y0)
(x1, y1)
(x2, y2)
(x3, y3)

所以这就是罪魁祸首;你的第二个矩阵将有8个点。

来自Java docs for ArrayList

  

参数:index - index at which the specified element is to be inserted

使用l.add插入而不会覆盖旧列表。因此,解决方案是为每个转换矩阵创建一个新列表。