ardaduz / deep-video-mvs

Code for "DeepVideoMVS: Multi-View Stereo on Video with Recurrent Spatio-Temporal Fusion" (CVPR 2021)
MIT License
221 stars 29 forks source link

Code to generate mesh as the mp4 shows #9

Closed fengting-amazon closed 3 years ago

fengting-amazon commented 3 years ago

Hi,

Thank you for sharing the code of your great work.

I wonder if there is any code that can help us to generate the mesh from the depth as the attached mp4 show. It would be even more perfect if it can directly provides the interface like that, and fuse the depths into a mesh in such an online fashion .

ardaduz commented 3 years ago

Hi,

I added the required code, some sample input/outputs and a section to the end of README.

The depth map integration is not a sophisticated online algorithm, I just run marching cubes on the whole volume after each depth integration and save the mesh, making it "online". The script I provide gives you an option (--save_progressive flag) to save those meshes after integrating each predicted depth map.

Hope this helps.

fengting-amazon commented 3 years ago

Thank you. It helps, will take a look.