├── .gitignore ├── LICENSE ├── README.md ├── classification └── .gitignore ├── monocular_depth_estimation ├── COPYING ├── README.md ├── pytorch │ ├── arguments_test_eigen.txt │ ├── arguments_test_eigen_ldu.txt │ ├── arguments_test_nyu.txt │ ├── arguments_train_eigen.txt │ ├── arguments_train_nyu.txt │ ├── bts.py │ ├── bts_dataloader.py │ ├── bts_eval.py │ ├── bts_ldu.py │ ├── bts_live_3d.py │ ├── bts_main.py │ ├── bts_test.py │ ├── bts_test_kitti_ldu.py │ ├── distributed_sampler_no_evenly_divisible.py │ ├── run_bts_eval_schedule.py │ ├── run_bts_live_3d.sh │ └── sparsification.py ├── train_test_inputs │ ├── eigen_test_files_with_gt.txt │ ├── eigen_train_files_with_gt.txt │ ├── nyudepthv2_test_files_with_gt.txt │ └── nyudepthv2_train_files_with_gt.txt └── utils │ ├── download_from_gdrive.py │ ├── eval_with_pngs.py │ ├── extract_official_train_test_set_from_mat.py │ ├── kitti_archives_to_download.txt │ ├── nyudepthv2_archives_to_download.txt │ ├── splits.mat │ ├── sync_project_frames_multi_threads.m │ └── train_scenes.txt └── process.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/README.md -------------------------------------------------------------------------------- /classification/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/classification/.gitignore -------------------------------------------------------------------------------- /monocular_depth_estimation/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/COPYING -------------------------------------------------------------------------------- /monocular_depth_estimation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/README.md -------------------------------------------------------------------------------- /monocular_depth_estimation/pytorch/arguments_test_eigen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/pytorch/arguments_test_eigen.txt -------------------------------------------------------------------------------- /monocular_depth_estimation/pytorch/arguments_test_eigen_ldu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/pytorch/arguments_test_eigen_ldu.txt -------------------------------------------------------------------------------- /monocular_depth_estimation/pytorch/arguments_test_nyu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/pytorch/arguments_test_nyu.txt -------------------------------------------------------------------------------- /monocular_depth_estimation/pytorch/arguments_train_eigen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/pytorch/arguments_train_eigen.txt -------------------------------------------------------------------------------- /monocular_depth_estimation/pytorch/arguments_train_nyu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/pytorch/arguments_train_nyu.txt -------------------------------------------------------------------------------- /monocular_depth_estimation/pytorch/bts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/pytorch/bts.py -------------------------------------------------------------------------------- /monocular_depth_estimation/pytorch/bts_dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/pytorch/bts_dataloader.py -------------------------------------------------------------------------------- /monocular_depth_estimation/pytorch/bts_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/pytorch/bts_eval.py -------------------------------------------------------------------------------- /monocular_depth_estimation/pytorch/bts_ldu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/pytorch/bts_ldu.py -------------------------------------------------------------------------------- /monocular_depth_estimation/pytorch/bts_live_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/pytorch/bts_live_3d.py -------------------------------------------------------------------------------- /monocular_depth_estimation/pytorch/bts_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/pytorch/bts_main.py -------------------------------------------------------------------------------- /monocular_depth_estimation/pytorch/bts_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/pytorch/bts_test.py -------------------------------------------------------------------------------- /monocular_depth_estimation/pytorch/bts_test_kitti_ldu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/pytorch/bts_test_kitti_ldu.py -------------------------------------------------------------------------------- /monocular_depth_estimation/pytorch/distributed_sampler_no_evenly_divisible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/pytorch/distributed_sampler_no_evenly_divisible.py -------------------------------------------------------------------------------- /monocular_depth_estimation/pytorch/run_bts_eval_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/pytorch/run_bts_eval_schedule.py -------------------------------------------------------------------------------- /monocular_depth_estimation/pytorch/run_bts_live_3d.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/pytorch/run_bts_live_3d.sh -------------------------------------------------------------------------------- /monocular_depth_estimation/pytorch/sparsification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/pytorch/sparsification.py -------------------------------------------------------------------------------- /monocular_depth_estimation/train_test_inputs/eigen_test_files_with_gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/train_test_inputs/eigen_test_files_with_gt.txt -------------------------------------------------------------------------------- /monocular_depth_estimation/train_test_inputs/eigen_train_files_with_gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/train_test_inputs/eigen_train_files_with_gt.txt -------------------------------------------------------------------------------- /monocular_depth_estimation/train_test_inputs/nyudepthv2_test_files_with_gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/train_test_inputs/nyudepthv2_test_files_with_gt.txt -------------------------------------------------------------------------------- /monocular_depth_estimation/train_test_inputs/nyudepthv2_train_files_with_gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/train_test_inputs/nyudepthv2_train_files_with_gt.txt -------------------------------------------------------------------------------- /monocular_depth_estimation/utils/download_from_gdrive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/utils/download_from_gdrive.py -------------------------------------------------------------------------------- /monocular_depth_estimation/utils/eval_with_pngs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/utils/eval_with_pngs.py -------------------------------------------------------------------------------- /monocular_depth_estimation/utils/extract_official_train_test_set_from_mat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/utils/extract_official_train_test_set_from_mat.py -------------------------------------------------------------------------------- /monocular_depth_estimation/utils/kitti_archives_to_download.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/utils/kitti_archives_to_download.txt -------------------------------------------------------------------------------- /monocular_depth_estimation/utils/nyudepthv2_archives_to_download.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/utils/nyudepthv2_archives_to_download.txt -------------------------------------------------------------------------------- /monocular_depth_estimation/utils/splits.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/utils/splits.mat -------------------------------------------------------------------------------- /monocular_depth_estimation/utils/sync_project_frames_multi_threads.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/utils/sync_project_frames_multi_threads.m -------------------------------------------------------------------------------- /monocular_depth_estimation/utils/train_scenes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/monocular_depth_estimation/utils/train_scenes.txt -------------------------------------------------------------------------------- /process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENSTA-U2IS-AI/LDU/HEAD/process.png --------------------------------------------------------------------------------