I am trying to get 3D reconstruction from uncalibrated multi-view images. I don't know the intrinsic parameters of the camera
I have SIFT features.
What I like to do is filtering out-liers using the 5-point algorithm in combination with RANSAC, so that I can proceed for the relative pose optimization and triangulation of the points matched.
Opencv has one API findEssentialMat(); That API needs focal and pp. Where I can have focal and pp? Is this API findEssentialMat() the right one I have to use for the pose estimation? If my approach is wrong, is there any API closer to what I want to achieve in OpenCV? Thanks