I'm new to OpenCV, and I'm doing something about image stitching.
In the following code I want to know what the perspective transform matrix is and display the matrix, however I am getting the following errors.
//-- Find the Homography
cv::Mat H = cv::findHomography(cv::Mat(vec2),cv::Mat(vec1),CV_RANSAC);
cout << H.at(0,0) <<endl;