dazinovic / neural-rgbd-surface-reconstruction

Official implementation of the CVPR 2022 Paper "Neural RGB-D Surface Reconstruction"
https://dazinovic.github.io/neural-rgbd-surface-reconstruction/
586 stars 59 forks source link

Get noisy results #27

Closed ShawnXu10 closed 2 years ago

ShawnXu10 commented 2 years ago

Just I run you code to reconstruct scenes but getting some pretty weird and different results. For example, the green room.

Screen Shot 2022-08-30 at 10 41 47 AM Screen Shot 2022-08-30 at 10 42 20 AM

The right is output from you code and the second is the mesh you provided Seem the right has much more vertices and covered by outliers. Are there any post-processes you did that not includes in the code?

dazinovic commented 2 years ago

You need to cull the mesh. Perhaps this reply can help you: https://github.com/dazinovic/neural-rgbd-surface-reconstruction/issues/13#issuecomment-1129218530

ShawnXu10 commented 2 years ago

It solves my problem. Thank you.