If we have multiple image pairs and the feature correspondences from the same stereo setup , how can we leverage all of them to find the essential matrix.
The openCV cv2.findEssentialMat function takes points1 and points2 arguments that belong to one image pair.
In the hopes of identifying better inliers by the RANSAC with more feature correspondences, is there a way to incorporate the correspondences from multiple image pairs for the essential matrix calculation? And thereby the extrinsics (roll, pitch, yaw)
Right now I am calculating essential matrix for each image pair, cv2.recoverPose to get the rotation_matrix, and then averaging the roll,pitch, yaw of all the image pairs. Is there a more robust method?
Edit: Clarification: Multiple image pairs from the same stereo setup