gitextract_wwh_ughm/ ├── DA-2K.md ├── LICENSE ├── README.md ├── app.py ├── depth_anything_v2/ │ ├── dinov2.py │ ├── dinov2_layers/ │ │ ├── __init__.py │ │ ├── attention.py │ │ ├── block.py │ │ ├── drop_path.py │ │ ├── layer_scale.py │ │ ├── mlp.py │ │ ├── patch_embed.py │ │ └── swiglu_ffn.py │ ├── dpt.py │ └── util/ │ ├── blocks.py │ └── transform.py ├── metric_depth/ │ ├── README.md │ ├── dataset/ │ │ ├── hypersim.py │ │ ├── kitti.py │ │ ├── splits/ │ │ │ ├── hypersim/ │ │ │ │ ├── train.txt │ │ │ │ └── val.txt │ │ │ ├── kitti/ │ │ │ │ └── val.txt │ │ │ └── vkitti2/ │ │ │ └── train.txt │ │ ├── transform.py │ │ └── vkitti2.py │ ├── depth_anything_v2/ │ │ ├── dinov2.py │ │ ├── dinov2_layers/ │ │ │ ├── __init__.py │ │ │ ├── attention.py │ │ │ ├── block.py │ │ │ ├── drop_path.py │ │ │ ├── layer_scale.py │ │ │ ├── mlp.py │ │ │ ├── patch_embed.py │ │ │ └── swiglu_ffn.py │ │ ├── dpt.py │ │ └── util/ │ │ ├── blocks.py │ │ └── transform.py │ ├── depth_to_pointcloud.py │ ├── dist_train.sh │ ├── requirements.txt │ ├── run.py │ ├── train.py │ └── util/ │ ├── dist_helper.py │ ├── loss.py │ ├── metric.py │ └── utils.py ├── requirements.txt ├── run.py └── run_video.py