├── LICENSE ├── LapDepth_demo.ipynb ├── README.md ├── calculate_error.py ├── datasets ├── datasets_list.py ├── download_from_gdrive.py ├── eigen_test_files_with_gt_dense.txt ├── eigen_train_files_with_gt_dense.txt ├── extract_official_train_test_set_from_mat.py ├── kitti_archives_to_download.txt ├── nyudepthv2_test_files_with_gt_dense.txt ├── nyudepthv2_train_files_with_gt_dense.txt ├── splits.mat ├── sync_project_frames_multi_threads.m └── train_scenes.txt ├── demo.py ├── eval.py ├── example ├── FIG1.png ├── kitti_demo.jpg ├── nyu_demo.jpg ├── out_kitti_demo.jpg └── out_nyu_demo.jpg ├── logger.py ├── model.py ├── option.py ├── train.py ├── trainer.py ├── transform_list.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/LICENSE -------------------------------------------------------------------------------- /LapDepth_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/LapDepth_demo.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/README.md -------------------------------------------------------------------------------- /calculate_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/calculate_error.py -------------------------------------------------------------------------------- /datasets/datasets_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/datasets/datasets_list.py -------------------------------------------------------------------------------- /datasets/download_from_gdrive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/datasets/download_from_gdrive.py -------------------------------------------------------------------------------- /datasets/eigen_test_files_with_gt_dense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/datasets/eigen_test_files_with_gt_dense.txt -------------------------------------------------------------------------------- /datasets/eigen_train_files_with_gt_dense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/datasets/eigen_train_files_with_gt_dense.txt -------------------------------------------------------------------------------- /datasets/extract_official_train_test_set_from_mat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/datasets/extract_official_train_test_set_from_mat.py -------------------------------------------------------------------------------- /datasets/kitti_archives_to_download.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/datasets/kitti_archives_to_download.txt -------------------------------------------------------------------------------- /datasets/nyudepthv2_test_files_with_gt_dense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/datasets/nyudepthv2_test_files_with_gt_dense.txt -------------------------------------------------------------------------------- /datasets/nyudepthv2_train_files_with_gt_dense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/datasets/nyudepthv2_train_files_with_gt_dense.txt -------------------------------------------------------------------------------- /datasets/splits.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/datasets/splits.mat -------------------------------------------------------------------------------- /datasets/sync_project_frames_multi_threads.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/datasets/sync_project_frames_multi_threads.m -------------------------------------------------------------------------------- /datasets/train_scenes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/datasets/train_scenes.txt -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/demo.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/eval.py -------------------------------------------------------------------------------- /example/FIG1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/example/FIG1.png -------------------------------------------------------------------------------- /example/kitti_demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/example/kitti_demo.jpg -------------------------------------------------------------------------------- /example/nyu_demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/example/nyu_demo.jpg -------------------------------------------------------------------------------- /example/out_kitti_demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/example/out_kitti_demo.jpg -------------------------------------------------------------------------------- /example/out_nyu_demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/example/out_nyu_demo.jpg -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/logger.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/model.py -------------------------------------------------------------------------------- /option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/option.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/train.py -------------------------------------------------------------------------------- /trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/trainer.py -------------------------------------------------------------------------------- /transform_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/transform_list.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjqansthd/LapDepth-release/HEAD/utils.py --------------------------------------------------------------------------------