Closed lsongx closed 5 years ago
@LcDog 1. The test_model.py just uses the image to predict the depth value, the resized depth value will not be used during the test. The evaluation code can be found in util/evaluation.py. We will resize the predicted depth to the orginal KITTI ground truth resolution. That means the groundtruth will not be resized.
Besides, the kitti depth is sparse, but during the training, we will first use the traditional methods to get the completed depth. The completion code can be found in monodepth (https://github.com/mrharicot/monodepth/blob/master/utils/evaluate_kitti.py)
@lyndonzheng Thanks for your reply!!!
Hello lyndonzheng, thanks for your code!
While testing (using
test_model.py
), the images and labels are resized according to the setting inbase_options.py
, viaI have several questions about this:
Thanks!