Hello Everyone,
I Want to know what technique is implemented behind the "cvEstimateRigidTransform()" opencv function. As I used it for image rectification it is working fine. Now I want to try the rectification without using opencv that's why asking the method behind this function.
Mat img_refernce = imread( pathOne, CV_LOAD_IMAGE_GRAYSCALE );
Mat img_test = imread( pathTwo, CV_LOAD_IMAGE_GRAYSCALE );
cv::Mat transformMat = cv::estimateRigidTransform(img_refernce, img_test ,true);
Thanks in advance