Reputation: 1
I want to get a 3d point cloud from two images without camera intrinsic parameters or GCPs, but I could not figure out how to get it. Software such as Agisoft or Pix4d gets scale-free point cloud without this information, but I want to get it with Matlab. Could you help me?
A second responsibility; Can I get from the F matrix to the E matrix without knowing the camera intrinsic parameters?
Upvotes: 0
Views: 1032
Reputation: 2534
You can obtain a reasonable 3D point cloud from multiple images.
Take a look at this course:
http://3dvision.princeton.edu/courses/SFMedu/
Wich include some matlab code that generates SfM point clouds from multiple images and also some slides that should answer your second question.
This matlab code generates a Sparse Point Cloud. Pix4D and Agisoft perform a densification of this sparse point cloud as an extra step.
This densification is highly expensive and I would say that it's impractical to try to implement it in matlab.
However, there are some open-source alternatives that can perform this densification:
https://github.com/colmap/colmap
I'm not sure but I think that you could feed the output of your matlab SfM to colmap and then perform the densification.
The colmap documentation should also help you to understand how both SfM and Multi-View Stereo work.
Upvotes: 1