我正在重写以下在 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));