You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, First of all, congratulations on this great work!
I'm evaluating recent Depth Estimation techniques and I'm wondering if you could help me to validate the results.
I downloaded your SwinLarge predictions and wanted to compare them with the KITTI Improved Ground Truth [1] directly by comparing your output map with the GT.
I followed your instructions by dividing by 256 (as the GT data), and I interpolated just like your code do on the output of the model, using F.interpolate with mode=bicubic and align_corners=True.
I'm following Monodepth2 procedures to compare, therefore not using Garg's crop in here.
I was expecting lower values than what you provided in the paper (like... Abs Rel probably lower than 0.05) but actually got way higher values (like... Abs Rel 0.086).
Thanks again for your work!
Ref.
[Uhrig, Jonas, et al. "Sparsity invariant cnns." 2017 international conference on 3D Vision (3DV). IEEE, 2017.]
The text was updated successfully, but these errors were encountered:
The evaluation crop is usually quite important.
Anyway, typically the validation RGB images correspond to the cropped validation images with shape (352,1216), you can look in kitti.py lines 171-176.
The snippet you provided seems fine, so the problem lies in the data. Either the prediction I provided or the validation
I add here the results with eigen-crop or without any crop obtained by running test.py with kitti config, swinlarge model and changing the "crop" flag in the .json file (to "eigen" for Eigen crop and to "any" for no crop).
Crop | abs_rel | sq_rel | rmse | rmse_log | a1 | a2 | a3 |
No-crop | 0.0574 | 0.201 | 2.463 | 0.088 | 0.966 | 0.995 | 0.999
Eigen | 0.059 | 0.216 | 2.573 | 0.089 | 0.965 | 0.995 | 0.999 \
Hi, First of all, congratulations on this great work!
I'm evaluating recent Depth Estimation techniques and I'm wondering if you could help me to validate the results.
I downloaded your SwinLarge predictions and wanted to compare them with the KITTI Improved Ground Truth [1] directly by comparing your output map with the GT.
I followed your instructions by dividing by 256 (as the GT data), and I interpolated just like your code do on the output of the model, using F.interpolate with mode=bicubic and align_corners=True.
I'm following Monodepth2 procedures to compare, therefore not using Garg's crop in here.
The results are the following:
abs_rel | sq_rel | rmse | rmse_log | a1 | a2 | a3 |
& 0.086 & 0.539 & 4.228 & 0.153 & 0.913 & 0.979 & 0.991 \
I was expecting really lower results. Can you validate these steps, please? Are the SwinLarge predictions giving the correct outcome?
The code is quite simple, and I'll share it above here just so you can check it (if you want).
`
`
I was expecting lower values than what you provided in the paper (like... Abs Rel probably lower than 0.05) but actually got way higher values (like... Abs Rel 0.086).
Thanks again for your work!
Ref.
[Uhrig, Jonas, et al. "Sparsity invariant cnns." 2017 international conference on 3D Vision (3DV). IEEE, 2017.]
The text was updated successfully, but these errors were encountered: