├── .gitignore ├── LICENSE ├── README.md ├── configs ├── arguments_eval_kittieigen.txt ├── arguments_eval_nyu.txt ├── arguments_train_kittieigen.txt └── arguments_train_nyu.txt ├── data_splits ├── eigen_test_files_with_gt.txt ├── eigen_train_files_with_gt.txt ├── kitti_depth_prediction_train.txt ├── kitti_official_test.txt ├── kitti_official_valid.txt ├── nyudepthv2_test_files_with_gt.txt └── nyudepthv2_train_files_with_gt_dense.txt ├── files ├── intro.png ├── office_00633.jpg ├── office_00633_depth.jpg ├── office_00633_pcd.jpg ├── output_nyu1_compressed.gif └── output_nyu2_compressed.gif └── newcrfs ├── dataloaders ├── __init__.py ├── dataloader.py └── dataloader_kittipred.py ├── demo.py ├── eval.py ├── networks ├── NewCRFDepth.py ├── __init__.py ├── newcrf_layers.py ├── newcrf_utils.py ├── swin_transformer.py └── uper_crf_head.py ├── test.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/README.md -------------------------------------------------------------------------------- /configs/arguments_eval_kittieigen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/configs/arguments_eval_kittieigen.txt -------------------------------------------------------------------------------- /configs/arguments_eval_nyu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/configs/arguments_eval_nyu.txt -------------------------------------------------------------------------------- /configs/arguments_train_kittieigen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/configs/arguments_train_kittieigen.txt -------------------------------------------------------------------------------- /configs/arguments_train_nyu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/configs/arguments_train_nyu.txt -------------------------------------------------------------------------------- /data_splits/eigen_test_files_with_gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/data_splits/eigen_test_files_with_gt.txt -------------------------------------------------------------------------------- /data_splits/eigen_train_files_with_gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/data_splits/eigen_train_files_with_gt.txt -------------------------------------------------------------------------------- /data_splits/kitti_depth_prediction_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/data_splits/kitti_depth_prediction_train.txt -------------------------------------------------------------------------------- /data_splits/kitti_official_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/data_splits/kitti_official_test.txt -------------------------------------------------------------------------------- /data_splits/kitti_official_valid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/data_splits/kitti_official_valid.txt -------------------------------------------------------------------------------- /data_splits/nyudepthv2_test_files_with_gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/data_splits/nyudepthv2_test_files_with_gt.txt -------------------------------------------------------------------------------- /data_splits/nyudepthv2_train_files_with_gt_dense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/data_splits/nyudepthv2_train_files_with_gt_dense.txt -------------------------------------------------------------------------------- /files/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/files/intro.png -------------------------------------------------------------------------------- /files/office_00633.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/files/office_00633.jpg -------------------------------------------------------------------------------- /files/office_00633_depth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/files/office_00633_depth.jpg -------------------------------------------------------------------------------- /files/office_00633_pcd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/files/office_00633_pcd.jpg -------------------------------------------------------------------------------- /files/output_nyu1_compressed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/files/output_nyu1_compressed.gif -------------------------------------------------------------------------------- /files/output_nyu2_compressed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/files/output_nyu2_compressed.gif -------------------------------------------------------------------------------- /newcrfs/dataloaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newcrfs/dataloaders/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/newcrfs/dataloaders/dataloader.py -------------------------------------------------------------------------------- /newcrfs/dataloaders/dataloader_kittipred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/newcrfs/dataloaders/dataloader_kittipred.py -------------------------------------------------------------------------------- /newcrfs/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/newcrfs/demo.py -------------------------------------------------------------------------------- /newcrfs/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/newcrfs/eval.py -------------------------------------------------------------------------------- /newcrfs/networks/NewCRFDepth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/newcrfs/networks/NewCRFDepth.py -------------------------------------------------------------------------------- /newcrfs/networks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newcrfs/networks/newcrf_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/newcrfs/networks/newcrf_layers.py -------------------------------------------------------------------------------- /newcrfs/networks/newcrf_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/newcrfs/networks/newcrf_utils.py -------------------------------------------------------------------------------- /newcrfs/networks/swin_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/newcrfs/networks/swin_transformer.py -------------------------------------------------------------------------------- /newcrfs/networks/uper_crf_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/newcrfs/networks/uper_crf_head.py -------------------------------------------------------------------------------- /newcrfs/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/newcrfs/test.py -------------------------------------------------------------------------------- /newcrfs/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/newcrfs/train.py -------------------------------------------------------------------------------- /newcrfs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/NeWCRFs/HEAD/newcrfs/utils.py --------------------------------------------------------------------------------