├── README.md ├── data ├── ScanNet │ └── ScanNet_files_ROB.txt ├── __init__.py └── kitti │ ├── test_files_eigen.txt │ └── test_scenes_eigen.txt ├── eval ├── __init__.py ├── __init__.pyc ├── __pycache__ │ └── depth_evaluation_utils.cpython-36.pyc ├── depth_evaluation_utils.py ├── depth_evaluation_utils.pyc ├── eval_depth_general.py └── eval_scannet_rob.py ├── kitti_eval ├── __init__.py ├── __init__.pyc ├── __pycache__ │ └── depth_evaluation_utils.cpython-36.pyc ├── depth_evaluation_utils.py ├── depth_evaluation_utils.pyc └── eval_depth_general.py ├── utils.py ├── utils.pyc └── waymo-dataset ├── day_segment.txt ├── day_segment_val.txt ├── save_segment.py └── save_segment_intrinsics.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxinxie97/Video-depth-estimation/HEAD/README.md -------------------------------------------------------------------------------- /data/ScanNet/ScanNet_files_ROB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxinxie97/Video-depth-estimation/HEAD/data/ScanNet/ScanNet_files_ROB.txt -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/kitti/test_files_eigen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxinxie97/Video-depth-estimation/HEAD/data/kitti/test_files_eigen.txt -------------------------------------------------------------------------------- /data/kitti/test_scenes_eigen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxinxie97/Video-depth-estimation/HEAD/data/kitti/test_scenes_eigen.txt -------------------------------------------------------------------------------- /eval/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eval/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxinxie97/Video-depth-estimation/HEAD/eval/__init__.pyc -------------------------------------------------------------------------------- /eval/__pycache__/depth_evaluation_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxinxie97/Video-depth-estimation/HEAD/eval/__pycache__/depth_evaluation_utils.cpython-36.pyc -------------------------------------------------------------------------------- /eval/depth_evaluation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxinxie97/Video-depth-estimation/HEAD/eval/depth_evaluation_utils.py -------------------------------------------------------------------------------- /eval/depth_evaluation_utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxinxie97/Video-depth-estimation/HEAD/eval/depth_evaluation_utils.pyc -------------------------------------------------------------------------------- /eval/eval_depth_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxinxie97/Video-depth-estimation/HEAD/eval/eval_depth_general.py -------------------------------------------------------------------------------- /eval/eval_scannet_rob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxinxie97/Video-depth-estimation/HEAD/eval/eval_scannet_rob.py -------------------------------------------------------------------------------- /kitti_eval/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kitti_eval/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxinxie97/Video-depth-estimation/HEAD/kitti_eval/__init__.pyc -------------------------------------------------------------------------------- /kitti_eval/__pycache__/depth_evaluation_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxinxie97/Video-depth-estimation/HEAD/kitti_eval/__pycache__/depth_evaluation_utils.cpython-36.pyc -------------------------------------------------------------------------------- /kitti_eval/depth_evaluation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxinxie97/Video-depth-estimation/HEAD/kitti_eval/depth_evaluation_utils.py -------------------------------------------------------------------------------- /kitti_eval/depth_evaluation_utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxinxie97/Video-depth-estimation/HEAD/kitti_eval/depth_evaluation_utils.pyc -------------------------------------------------------------------------------- /kitti_eval/eval_depth_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxinxie97/Video-depth-estimation/HEAD/kitti_eval/eval_depth_general.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxinxie97/Video-depth-estimation/HEAD/utils.py -------------------------------------------------------------------------------- /utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxinxie97/Video-depth-estimation/HEAD/utils.pyc -------------------------------------------------------------------------------- /waymo-dataset/day_segment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxinxie97/Video-depth-estimation/HEAD/waymo-dataset/day_segment.txt -------------------------------------------------------------------------------- /waymo-dataset/day_segment_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxinxie97/Video-depth-estimation/HEAD/waymo-dataset/day_segment_val.txt -------------------------------------------------------------------------------- /waymo-dataset/save_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxinxie97/Video-depth-estimation/HEAD/waymo-dataset/save_segment.py -------------------------------------------------------------------------------- /waymo-dataset/save_segment_intrinsics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaxinxie97/Video-depth-estimation/HEAD/waymo-dataset/save_segment_intrinsics.py --------------------------------------------------------------------------------