├── LICENSE ├── README.md ├── average_gradients.py ├── bilinear_sampler.py ├── images └── SemanticMonoDepth.PNG ├── monodepth_dataloader.py ├── monodepth_main.py ├── monodepth_model.py ├── utils.py └── utils ├── evaluate_kitti.py ├── evaluation_utils.py ├── filenames ├── cityscapes_semantic_train_files.txt ├── kitti_semantic_stereo_2015_test_split.txt └── kitti_semantic_stereo_2015_train_split.txt ├── shuffler.py └── visualize_semantic.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVLAB-Unibo/Semantic-Mono-Depth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVLAB-Unibo/Semantic-Mono-Depth/HEAD/README.md -------------------------------------------------------------------------------- /average_gradients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVLAB-Unibo/Semantic-Mono-Depth/HEAD/average_gradients.py -------------------------------------------------------------------------------- /bilinear_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVLAB-Unibo/Semantic-Mono-Depth/HEAD/bilinear_sampler.py -------------------------------------------------------------------------------- /images/SemanticMonoDepth.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVLAB-Unibo/Semantic-Mono-Depth/HEAD/images/SemanticMonoDepth.PNG -------------------------------------------------------------------------------- /monodepth_dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVLAB-Unibo/Semantic-Mono-Depth/HEAD/monodepth_dataloader.py -------------------------------------------------------------------------------- /monodepth_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVLAB-Unibo/Semantic-Mono-Depth/HEAD/monodepth_main.py -------------------------------------------------------------------------------- /monodepth_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVLAB-Unibo/Semantic-Mono-Depth/HEAD/monodepth_model.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVLAB-Unibo/Semantic-Mono-Depth/HEAD/utils.py -------------------------------------------------------------------------------- /utils/evaluate_kitti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVLAB-Unibo/Semantic-Mono-Depth/HEAD/utils/evaluate_kitti.py -------------------------------------------------------------------------------- /utils/evaluation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVLAB-Unibo/Semantic-Mono-Depth/HEAD/utils/evaluation_utils.py -------------------------------------------------------------------------------- /utils/filenames/cityscapes_semantic_train_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVLAB-Unibo/Semantic-Mono-Depth/HEAD/utils/filenames/cityscapes_semantic_train_files.txt -------------------------------------------------------------------------------- /utils/filenames/kitti_semantic_stereo_2015_test_split.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVLAB-Unibo/Semantic-Mono-Depth/HEAD/utils/filenames/kitti_semantic_stereo_2015_test_split.txt -------------------------------------------------------------------------------- /utils/filenames/kitti_semantic_stereo_2015_train_split.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVLAB-Unibo/Semantic-Mono-Depth/HEAD/utils/filenames/kitti_semantic_stereo_2015_train_split.txt -------------------------------------------------------------------------------- /utils/shuffler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVLAB-Unibo/Semantic-Mono-Depth/HEAD/utils/shuffler.py -------------------------------------------------------------------------------- /utils/visualize_semantic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVLAB-Unibo/Semantic-Mono-Depth/HEAD/utils/visualize_semantic.py --------------------------------------------------------------------------------