├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── DSAEncoder └── drn_d_22-4bd2f8ea.pth ├── DSAModules.py ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── datasets ├── kitti │ ├── test.txt │ ├── train.txt │ └── val.txt └── vkitti │ ├── test.txt │ ├── train.txt │ └── val.txt ├── img ├── intro.PNG └── overview.png ├── loaddata.py ├── models └── modules.py ├── test.py ├── train.py ├── train_loss.py ├── transform.py └── utils.py /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DSAEncoder/drn_d_22-4bd2f8ea.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/DSAEncoder/drn_d_22-4bd2f8ea.pth -------------------------------------------------------------------------------- /DSAModules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/DSAModules.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /datasets/kitti/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/datasets/kitti/test.txt -------------------------------------------------------------------------------- /datasets/kitti/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/datasets/kitti/train.txt -------------------------------------------------------------------------------- /datasets/kitti/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/datasets/kitti/val.txt -------------------------------------------------------------------------------- /datasets/vkitti/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/datasets/vkitti/test.txt -------------------------------------------------------------------------------- /datasets/vkitti/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/datasets/vkitti/train.txt -------------------------------------------------------------------------------- /datasets/vkitti/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/datasets/vkitti/val.txt -------------------------------------------------------------------------------- /img/intro.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/img/intro.PNG -------------------------------------------------------------------------------- /img/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/img/overview.png -------------------------------------------------------------------------------- /loaddata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/loaddata.py -------------------------------------------------------------------------------- /models/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/models/modules.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/train.py -------------------------------------------------------------------------------- /train_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/train_loss.py -------------------------------------------------------------------------------- /transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/transform.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/S2R-DepthNet/HEAD/utils.py --------------------------------------------------------------------------------