├── LICENSE ├── README.md ├── assets └── pipeline.jpg ├── dataset.py ├── download.sh ├── eval.py ├── module ├── corr.py ├── featurelayer.py ├── loss_functions.py ├── network.py ├── update.py └── volume_generator.py ├── requirements.txt ├── test.py ├── train.py └── utils ├── array_utils.py ├── common.py ├── dbhelper.py ├── geometry.py ├── image.py ├── log.py └── ocam.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insta360-Research-Team/RomniStereo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insta360-Research-Team/RomniStereo/HEAD/README.md -------------------------------------------------------------------------------- /assets/pipeline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insta360-Research-Team/RomniStereo/HEAD/assets/pipeline.jpg -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insta360-Research-Team/RomniStereo/HEAD/dataset.py -------------------------------------------------------------------------------- /download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insta360-Research-Team/RomniStereo/HEAD/download.sh -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insta360-Research-Team/RomniStereo/HEAD/eval.py -------------------------------------------------------------------------------- /module/corr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insta360-Research-Team/RomniStereo/HEAD/module/corr.py -------------------------------------------------------------------------------- /module/featurelayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insta360-Research-Team/RomniStereo/HEAD/module/featurelayer.py -------------------------------------------------------------------------------- /module/loss_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insta360-Research-Team/RomniStereo/HEAD/module/loss_functions.py -------------------------------------------------------------------------------- /module/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insta360-Research-Team/RomniStereo/HEAD/module/network.py -------------------------------------------------------------------------------- /module/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insta360-Research-Team/RomniStereo/HEAD/module/update.py -------------------------------------------------------------------------------- /module/volume_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insta360-Research-Team/RomniStereo/HEAD/module/volume_generator.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insta360-Research-Team/RomniStereo/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insta360-Research-Team/RomniStereo/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insta360-Research-Team/RomniStereo/HEAD/train.py -------------------------------------------------------------------------------- /utils/array_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insta360-Research-Team/RomniStereo/HEAD/utils/array_utils.py -------------------------------------------------------------------------------- /utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insta360-Research-Team/RomniStereo/HEAD/utils/common.py -------------------------------------------------------------------------------- /utils/dbhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insta360-Research-Team/RomniStereo/HEAD/utils/dbhelper.py -------------------------------------------------------------------------------- /utils/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insta360-Research-Team/RomniStereo/HEAD/utils/geometry.py -------------------------------------------------------------------------------- /utils/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insta360-Research-Team/RomniStereo/HEAD/utils/image.py -------------------------------------------------------------------------------- /utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insta360-Research-Team/RomniStereo/HEAD/utils/log.py -------------------------------------------------------------------------------- /utils/ocam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insta360-Research-Team/RomniStereo/HEAD/utils/ocam.py --------------------------------------------------------------------------------