with Opencv 3.0, I obtained the essential matrix with the function:
E = findEssentialMat(points2, points1, focal, pp, RANSAC, 0.999, 1.0, mask);
Looking at the mask values number of inliers are really high.
After I used the recoverPose function:
recoverPose(E, points2, points1, R, t, focal, pp, mask);
But I noticed that the number of passed inliers (looking at the mask) are very few (often zeroes).
My questions is: There is a way to obtain more inliers from recoverPose function? If not, There is alternate way to obtain R and t (without using recoverPose function)?
Thanks a lot!