├── LICENSE ├── README.md ├── assets ├── 10min.png ├── 2min.png ├── method.png ├── results.png ├── table.png └── teaser.png ├── datasets ├── __init__.py ├── ade20k_dataset.py ├── base_dataset.py ├── diode_dataset.py ├── diw_dataset.py ├── eth3d_dataset.py ├── flicker_dataset.py ├── kitti_dataset.py ├── mapillary_dataset.py ├── middlebury_dataset.py ├── mscoco_dataset.py ├── sceneflow_dataset.py └── warp_dataset.py ├── inference.py ├── main.py ├── model_manager.py ├── networks ├── __init__.py ├── psm_hourglass.py └── psm_submodules.py ├── options.py ├── paths_config.yaml ├── splits ├── ADE20K │ ├── train_files_all.txt │ └── val_files_all.txt ├── diode │ ├── train_files_all.txt │ └── val_files_all.txt ├── diw │ ├── train_files_all.txt │ └── val_files_all.txt ├── eth3d │ └── test_files.txt ├── flicker │ └── test_files.txt ├── kitti │ ├── kitti2012.txt │ ├── kitti2015.txt │ └── kitti2015submission.txt ├── mapillary │ ├── train_files_all.txt │ └── val_files_all.txt ├── middlebury │ └── test_files.txt ├── mscoco │ ├── train_files_all.txt │ └── val_files_all.txt └── sceneflow │ ├── test_files.txt │ └── train_files_all.txt ├── trainer.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/README.md -------------------------------------------------------------------------------- /assets/10min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/assets/10min.png -------------------------------------------------------------------------------- /assets/2min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/assets/2min.png -------------------------------------------------------------------------------- /assets/method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/assets/method.png -------------------------------------------------------------------------------- /assets/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/assets/results.png -------------------------------------------------------------------------------- /assets/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/assets/table.png -------------------------------------------------------------------------------- /assets/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/assets/teaser.png -------------------------------------------------------------------------------- /datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/datasets/__init__.py -------------------------------------------------------------------------------- /datasets/ade20k_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/datasets/ade20k_dataset.py -------------------------------------------------------------------------------- /datasets/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/datasets/base_dataset.py -------------------------------------------------------------------------------- /datasets/diode_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/datasets/diode_dataset.py -------------------------------------------------------------------------------- /datasets/diw_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/datasets/diw_dataset.py -------------------------------------------------------------------------------- /datasets/eth3d_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/datasets/eth3d_dataset.py -------------------------------------------------------------------------------- /datasets/flicker_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/datasets/flicker_dataset.py -------------------------------------------------------------------------------- /datasets/kitti_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/datasets/kitti_dataset.py -------------------------------------------------------------------------------- /datasets/mapillary_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/datasets/mapillary_dataset.py -------------------------------------------------------------------------------- /datasets/middlebury_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/datasets/middlebury_dataset.py -------------------------------------------------------------------------------- /datasets/mscoco_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/datasets/mscoco_dataset.py -------------------------------------------------------------------------------- /datasets/sceneflow_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/datasets/sceneflow_dataset.py -------------------------------------------------------------------------------- /datasets/warp_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/datasets/warp_dataset.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/inference.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/main.py -------------------------------------------------------------------------------- /model_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/model_manager.py -------------------------------------------------------------------------------- /networks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/networks/__init__.py -------------------------------------------------------------------------------- /networks/psm_hourglass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/networks/psm_hourglass.py -------------------------------------------------------------------------------- /networks/psm_submodules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/networks/psm_submodules.py -------------------------------------------------------------------------------- /options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/options.py -------------------------------------------------------------------------------- /paths_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/paths_config.yaml -------------------------------------------------------------------------------- /splits/ADE20K/train_files_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/splits/ADE20K/train_files_all.txt -------------------------------------------------------------------------------- /splits/ADE20K/val_files_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/splits/ADE20K/val_files_all.txt -------------------------------------------------------------------------------- /splits/diode/train_files_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/splits/diode/train_files_all.txt -------------------------------------------------------------------------------- /splits/diode/val_files_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/splits/diode/val_files_all.txt -------------------------------------------------------------------------------- /splits/diw/train_files_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/splits/diw/train_files_all.txt -------------------------------------------------------------------------------- /splits/diw/val_files_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/splits/diw/val_files_all.txt -------------------------------------------------------------------------------- /splits/eth3d/test_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/splits/eth3d/test_files.txt -------------------------------------------------------------------------------- /splits/flicker/test_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/splits/flicker/test_files.txt -------------------------------------------------------------------------------- /splits/kitti/kitti2012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/splits/kitti/kitti2012.txt -------------------------------------------------------------------------------- /splits/kitti/kitti2015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/splits/kitti/kitti2015.txt -------------------------------------------------------------------------------- /splits/kitti/kitti2015submission.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/splits/kitti/kitti2015submission.txt -------------------------------------------------------------------------------- /splits/mapillary/train_files_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/splits/mapillary/train_files_all.txt -------------------------------------------------------------------------------- /splits/mapillary/val_files_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/splits/mapillary/val_files_all.txt -------------------------------------------------------------------------------- /splits/middlebury/test_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/splits/middlebury/test_files.txt -------------------------------------------------------------------------------- /splits/mscoco/train_files_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/splits/mscoco/train_files_all.txt -------------------------------------------------------------------------------- /splits/mscoco/val_files_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/splits/mscoco/val_files_all.txt -------------------------------------------------------------------------------- /splits/sceneflow/test_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/splits/sceneflow/test_files.txt -------------------------------------------------------------------------------- /splits/sceneflow/train_files_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/splits/sceneflow/train_files_all.txt -------------------------------------------------------------------------------- /trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/trainer.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nianticlabs/stereo-from-mono/HEAD/utils.py --------------------------------------------------------------------------------