├── .idea ├── depth-hints.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── LICENSE ├── README.md ├── __pycache__ ├── kitti_utils.cpython-36.pyc ├── layers.cpython-36.pyc ├── options.cpython-36.pyc └── utils.cpython-36.pyc ├── assets ├── copyright_notice.txt ├── kitti.gif ├── sceneflow.gif └── test_image.jpg ├── datasets ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── kitti_dataset.cpython-36.pyc │ └── mono_dataset.cpython-36.pyc ├── kitti_dataset.py └── mono_dataset.py ├── depth_prediction_example.ipynb ├── evaluate_depth.py ├── evaluate_pose.py ├── export_gt_depth.py ├── kitti_utils.py ├── layers.py ├── networks ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── depth_decoder.cpython-36.pyc │ ├── pose_cnn.cpython-36.pyc │ ├── pose_decoder.cpython-36.pyc │ └── resnet_encoder.cpython-36.pyc ├── depth_decoder.py ├── pose_cnn.py ├── pose_decoder.py └── resnet_encoder.py ├── options.py ├── precompute_depth_hints.py ├── splits ├── benchmark │ ├── eigen_to_benchmark_ids.npy │ ├── test_files.txt │ ├── train_files.txt │ └── val_files.txt ├── eigen │ ├── gt_depths.npz │ └── test_files.txt ├── eigen_benchmark │ └── test_files.txt ├── eigen_full │ ├── all_files.txt │ ├── train_files.txt │ └── val_files.txt ├── eigen_zhou │ ├── train_files.txt │ └── val_files.txt ├── kitti_archives_to_download.txt └── odom │ ├── test_files_09.txt │ ├── test_files_10.txt │ ├── train_files.txt │ └── val_files.txt ├── test_simple.py ├── train.py ├── trainer.py └── utils.py /.idea/depth-hints.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 44 | 45 | 50 | 51 | 52 | 60 | 61 | 62 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 |