Xt-Chen / SARPN

Structure-Aware Residual Pyramid Network for Monocular Depth Estimation IJCAI 2019
86 stars 15 forks source link

About the depth ground truth pre-processing? #10

Closed alanlyawen closed 3 years ago

alanlyawen commented 3 years ago

Thank for your great work! I am a little confused about the dataloader code! Why divide the depth groundtruth by 255 and multiply it by 10 in training and divide it by 1000 in evaluate? Will this affect the evaluation results? If i need adjust it?

Xt-Chen commented 3 years ago

Because the depth scale of training data and test data are different, these operations are done in order to ensure the consistency of training and testing.

alanlyawen commented 3 years ago

Because the depth scale of training data and test data are different, these operations are done in order to ensure the consistency of training and testing.

Thanks for your timely reply!