3D reconstruction with known camera parameters
Let's say I have 8 pictures of an object from different views. For each of the 8 pics I know the corresponding camera position and orientation. What would be the best way to try a 3D reconstruction of the object?
If you know intrinsic parameters and pose you can use stereoRectify. Then you retrieve 3d using stereo algorithm stereoBM or SGBM. It is only stereonot multi-view.
You can use sfm module too (no need of extrinsic parameters). It is multiview but algorithm estimates pose
what you're trying to do is called: "structure from motion"
Of course, SfM would be an approach. But as I already know the camera pose for each image even in a common world coordinate system, I think SfM were a waste of computing time in this case...
Ok it's a waste of time. You know camera pose. I'm very interesting to know ho do you process image without intrincsic parameters ?