Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to get the stereo depth maps? #1

Open
yavon818 opened this issue Oct 30, 2023 · 1 comment
Open

How to get the stereo depth maps? #1

yavon818 opened this issue Oct 30, 2023 · 1 comment

Comments

@yavon818
Copy link

Thanks for your great work! I tried to run the program on my own data, however, I dont know how to get the stereo depth maps of the stereo images. I remembered that you mentioned using the DERS tool, but I dont know how to get access to it. Could you give me some hints?

Thanks a lot!

@jlartois
Copy link
Contributor

Hi, there are many ways to calculate depth maps. Here are some suggestions:

  1. DERS is relatively old, a more current version is called IVDE . I find it quite slow though, so I would not recommend it anymore.
  2. If you have a pair of undistorted stereo images, you can estimate their disparity, and thus the depth using OpenCV.
  3. If you have multiple images, and not necessarily stereo pairs, then you should take a look at Multi-View Stereo (MVS). The best MVS algorithms generally are based upon PatchMatch.
  4. COLMAP allows you to generate depth maps during the dense reconstruction..
  5. You could train NeRF (or the faster instant-ngp) on your images and render the depth maps.
  6. Lately, many deep learning models are trained to estimate depth maps from a set of input images. These methods are fast but might not generalise well for every type of image. Some examples: MVSNet, MultiViewStereoNet

So if you want to learn more about MVS depth estimation, I would recommend to look into PatchMatch based approaches.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants