├── .gitignore ├── LICENSE ├── README.md ├── SC_Depth.py ├── SC_DepthV2.py ├── SC_DepthV3.py ├── ckpts └── put_model_here.md ├── config.py ├── configs ├── v1 │ ├── bonn.txt │ ├── ddad.txt │ ├── kitti_raw.txt │ ├── nyu.txt │ └── tum.txt ├── v2 │ ├── bonn.txt │ ├── nyu.txt │ └── tum.txt └── v3 │ ├── bonn.txt │ ├── ddad.txt │ ├── kitti_raw.txt │ ├── nyu.txt │ └── tum.txt ├── data_modules.py ├── datasets ├── custom_transforms.py ├── test_folder.py ├── train_folders.py └── validation_folders.py ├── demo └── input │ ├── 00.jpg │ ├── 01.jpg │ └── 02.jpg ├── eval_depth.py ├── generate_valid_frame_index.py ├── inference.py ├── losses ├── inverse_warp.py ├── loss_functions.py ├── mask_ranking_loss.py └── normal_ranking_loss.py ├── models ├── DepthNet.py ├── PoseNet.py ├── RectifyNet.py └── resnet_encoder.py ├── requirements.txt ├── scripts ├── run_evaluation.sh ├── run_inference.sh ├── run_test.sh └── run_train.sh ├── setup.py ├── test.py ├── train.py └── visualization.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | /build/ 3 | /sc_depth_pl.egg-info/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/README.md -------------------------------------------------------------------------------- /SC_Depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/SC_Depth.py -------------------------------------------------------------------------------- /SC_DepthV2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/SC_DepthV2.py -------------------------------------------------------------------------------- /SC_DepthV3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/SC_DepthV3.py -------------------------------------------------------------------------------- /ckpts/put_model_here.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/config.py -------------------------------------------------------------------------------- /configs/v1/bonn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/configs/v1/bonn.txt -------------------------------------------------------------------------------- /configs/v1/ddad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/configs/v1/ddad.txt -------------------------------------------------------------------------------- /configs/v1/kitti_raw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/configs/v1/kitti_raw.txt -------------------------------------------------------------------------------- /configs/v1/nyu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/configs/v1/nyu.txt -------------------------------------------------------------------------------- /configs/v1/tum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/configs/v1/tum.txt -------------------------------------------------------------------------------- /configs/v2/bonn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/configs/v2/bonn.txt -------------------------------------------------------------------------------- /configs/v2/nyu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/configs/v2/nyu.txt -------------------------------------------------------------------------------- /configs/v2/tum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/configs/v2/tum.txt -------------------------------------------------------------------------------- /configs/v3/bonn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/configs/v3/bonn.txt -------------------------------------------------------------------------------- /configs/v3/ddad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/configs/v3/ddad.txt -------------------------------------------------------------------------------- /configs/v3/kitti_raw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/configs/v3/kitti_raw.txt -------------------------------------------------------------------------------- /configs/v3/nyu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/configs/v3/nyu.txt -------------------------------------------------------------------------------- /configs/v3/tum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/configs/v3/tum.txt -------------------------------------------------------------------------------- /data_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/data_modules.py -------------------------------------------------------------------------------- /datasets/custom_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/datasets/custom_transforms.py -------------------------------------------------------------------------------- /datasets/test_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/datasets/test_folder.py -------------------------------------------------------------------------------- /datasets/train_folders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/datasets/train_folders.py -------------------------------------------------------------------------------- /datasets/validation_folders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/datasets/validation_folders.py -------------------------------------------------------------------------------- /demo/input/00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/demo/input/00.jpg -------------------------------------------------------------------------------- /demo/input/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/demo/input/01.jpg -------------------------------------------------------------------------------- /demo/input/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/demo/input/02.jpg -------------------------------------------------------------------------------- /eval_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/eval_depth.py -------------------------------------------------------------------------------- /generate_valid_frame_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/generate_valid_frame_index.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/inference.py -------------------------------------------------------------------------------- /losses/inverse_warp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/losses/inverse_warp.py -------------------------------------------------------------------------------- /losses/loss_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/losses/loss_functions.py -------------------------------------------------------------------------------- /losses/mask_ranking_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/losses/mask_ranking_loss.py -------------------------------------------------------------------------------- /losses/normal_ranking_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/losses/normal_ranking_loss.py -------------------------------------------------------------------------------- /models/DepthNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/models/DepthNet.py -------------------------------------------------------------------------------- /models/PoseNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/models/PoseNet.py -------------------------------------------------------------------------------- /models/RectifyNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/models/RectifyNet.py -------------------------------------------------------------------------------- /models/resnet_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/models/resnet_encoder.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/run_evaluation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/scripts/run_evaluation.sh -------------------------------------------------------------------------------- /scripts/run_inference.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/scripts/run_inference.sh -------------------------------------------------------------------------------- /scripts/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/scripts/run_test.sh -------------------------------------------------------------------------------- /scripts/run_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/scripts/run_train.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/train.py -------------------------------------------------------------------------------- /visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiawangBian/sc_depth_pl/HEAD/visualization.py --------------------------------------------------------------------------------