0

我正在重写以下在 android 上扭曲两个图像的代码,为此我需要在 android opencv 中找到 1st 的等效语句。请帮忙。

    std::vector< Point2f > obj;
    std::vector< Point2f > scene;
    Mat H = findHomography( obj, scene, CV_RANSAC );
    // Use the Homography Matrix to warp the images
    cv::Mat result;
    warpPerspective(image1,result,H,cv::Size(image1.cols+image2.cols,image1.rows));
    cv::Mat half(result,cv::Rect(0,0,image2.cols,image2.rows));
4

1 回答 1

0

OpenCV findHomography Javadocs

Mat H = Calib3d.findHomography(obj, scene, Calib3d.RANSAC, 8);
于 2014-03-02T19:51:21.007 回答