├── README.md ├── data ├── 7scenes │ └── test.txt ├── __init__.py ├── general_eval.py ├── general_eval_seq.py ├── m_preprocess.py ├── scannet.py ├── scannet_select.py └── scannet_split │ ├── test_split.txt │ ├── train_split.txt │ └── val_split.txt ├── docs ├── css │ ├── iconize.css │ └── project.css ├── images │ ├── data_ico.png │ ├── pdf.png │ ├── pipeline.png │ └── teaser.png ├── index.htm ├── logos │ ├── Logo_HKU.png │ ├── Logo_MPII.png │ ├── Logo_inceptio.png │ └── logo_TAMU.png └── videos │ ├── single.mp4 │ ├── ten.mp4 │ └── three.mp4 ├── environment.yml ├── eval_hybrid.py ├── eval_hybrid.sh ├── eval_hybrid_seq.py ├── eval_hybrid_seq.sh ├── hybrid_models ├── hybrid_depth_decoder.py ├── model_hybrid.py └── resnet_encoder.py ├── metric.py ├── networks ├── __init__.py ├── layers_op.py ├── psm_submodule.py ├── senet.py └── senet_submodule.py ├── train_hybrid.py ├── train_hybrid.sh ├── transformer ├── __init__.py └── epipolar_transformer.py └── utils ├── __init__.py ├── homo_utils.py ├── misc_utils.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/README.md -------------------------------------------------------------------------------- /data/7scenes/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/data/7scenes/test.txt -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/general_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/data/general_eval.py -------------------------------------------------------------------------------- /data/general_eval_seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/data/general_eval_seq.py -------------------------------------------------------------------------------- /data/m_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/data/m_preprocess.py -------------------------------------------------------------------------------- /data/scannet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/data/scannet.py -------------------------------------------------------------------------------- /data/scannet_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/data/scannet_select.py -------------------------------------------------------------------------------- /data/scannet_split/test_split.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/data/scannet_split/test_split.txt -------------------------------------------------------------------------------- /data/scannet_split/train_split.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/data/scannet_split/train_split.txt -------------------------------------------------------------------------------- /data/scannet_split/val_split.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/data/scannet_split/val_split.txt -------------------------------------------------------------------------------- /docs/css/iconize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/docs/css/iconize.css -------------------------------------------------------------------------------- /docs/css/project.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/docs/css/project.css -------------------------------------------------------------------------------- /docs/images/data_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/docs/images/data_ico.png -------------------------------------------------------------------------------- /docs/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/docs/images/pdf.png -------------------------------------------------------------------------------- /docs/images/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/docs/images/pipeline.png -------------------------------------------------------------------------------- /docs/images/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/docs/images/teaser.png -------------------------------------------------------------------------------- /docs/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/docs/index.htm -------------------------------------------------------------------------------- /docs/logos/Logo_HKU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/docs/logos/Logo_HKU.png -------------------------------------------------------------------------------- /docs/logos/Logo_MPII.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/docs/logos/Logo_MPII.png -------------------------------------------------------------------------------- /docs/logos/Logo_inceptio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/docs/logos/Logo_inceptio.png -------------------------------------------------------------------------------- /docs/logos/logo_TAMU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/docs/logos/logo_TAMU.png -------------------------------------------------------------------------------- /docs/videos/single.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/docs/videos/single.mp4 -------------------------------------------------------------------------------- /docs/videos/ten.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/docs/videos/ten.mp4 -------------------------------------------------------------------------------- /docs/videos/three.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/docs/videos/three.mp4 -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/environment.yml -------------------------------------------------------------------------------- /eval_hybrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/eval_hybrid.py -------------------------------------------------------------------------------- /eval_hybrid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/eval_hybrid.sh -------------------------------------------------------------------------------- /eval_hybrid_seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/eval_hybrid_seq.py -------------------------------------------------------------------------------- /eval_hybrid_seq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/eval_hybrid_seq.sh -------------------------------------------------------------------------------- /hybrid_models/hybrid_depth_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/hybrid_models/hybrid_depth_decoder.py -------------------------------------------------------------------------------- /hybrid_models/model_hybrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/hybrid_models/model_hybrid.py -------------------------------------------------------------------------------- /hybrid_models/resnet_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/hybrid_models/resnet_encoder.py -------------------------------------------------------------------------------- /metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/metric.py -------------------------------------------------------------------------------- /networks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /networks/layers_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/networks/layers_op.py -------------------------------------------------------------------------------- /networks/psm_submodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/networks/psm_submodule.py -------------------------------------------------------------------------------- /networks/senet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/networks/senet.py -------------------------------------------------------------------------------- /networks/senet_submodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/networks/senet_submodule.py -------------------------------------------------------------------------------- /train_hybrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/train_hybrid.py -------------------------------------------------------------------------------- /train_hybrid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/train_hybrid.sh -------------------------------------------------------------------------------- /transformer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /transformer/epipolar_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/transformer/epipolar_transformer.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/homo_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/utils/homo_utils.py -------------------------------------------------------------------------------- /utils/misc_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/utils/misc_utils.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/ESTDepth/HEAD/utils/utils.py --------------------------------------------------------------------------------