maybeLx / MVSFormerPlusPlus

Codes of MVSFormer++: Revealing the Devil in Transformer’s Details for Multi-View Stereo (ICLR2024)
Apache License 2.0
153 stars 4 forks source link

uniform inverse depth sampling VS uniform depth sampling #9

Closed thucz closed 4 months ago

thucz commented 4 months ago

Hi! I have a problem with the depth candidates for multi-view matching. I noticed that you used a uniform depth sampling for DTU dataset. If I want to use MVSForm++ in indoor or outdoor scenes, Would it be better to use inverse depth sampling (1 / depth) as the maximum value is always very large?

maybeLx commented 4 months ago

We use inverse sampling in all datasets rather than uniform sampling. Please refer to the inverse_depth in the mvsformer++.json

ewrfcas commented 4 months ago

We have also evaluated the performance of inverse and uniform sampling. As a result, inverse always slightly outperforms uniform in our cases.

thucz commented 4 months ago

I see. Thanks!