Androidで2つの画像をワープする次のコードを書き直しています。これには、Android opencvで1番目の同等のステートメントを見つける必要があります。助けてください。
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));