├── .gitignore ├── .gitmodules ├── LICENSE ├── NOTICE ├── README.md ├── assets ├── examples.jpg ├── img1.jpg ├── img2.jpg ├── overview.jpg ├── pow3r.jpg └── pow3r_demo.jpg ├── demo_high_res.py ├── pow3r ├── __init__.py ├── datasets │ └── utils │ │ └── modalities.py ├── model │ ├── __init__.py │ ├── blocks.py │ ├── heads.py │ ├── inference.py │ ├── model.py │ └── patch_embed.py └── tools │ ├── __init__.py │ ├── geometry.py │ ├── path_to_dust3r.py │ └── video_maker.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/README.md -------------------------------------------------------------------------------- /assets/examples.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/assets/examples.jpg -------------------------------------------------------------------------------- /assets/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/assets/img1.jpg -------------------------------------------------------------------------------- /assets/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/assets/img2.jpg -------------------------------------------------------------------------------- /assets/overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/assets/overview.jpg -------------------------------------------------------------------------------- /assets/pow3r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/assets/pow3r.jpg -------------------------------------------------------------------------------- /assets/pow3r_demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/assets/pow3r_demo.jpg -------------------------------------------------------------------------------- /demo_high_res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/demo_high_res.py -------------------------------------------------------------------------------- /pow3r/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/pow3r/__init__.py -------------------------------------------------------------------------------- /pow3r/datasets/utils/modalities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/pow3r/datasets/utils/modalities.py -------------------------------------------------------------------------------- /pow3r/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/pow3r/model/__init__.py -------------------------------------------------------------------------------- /pow3r/model/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/pow3r/model/blocks.py -------------------------------------------------------------------------------- /pow3r/model/heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/pow3r/model/heads.py -------------------------------------------------------------------------------- /pow3r/model/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/pow3r/model/inference.py -------------------------------------------------------------------------------- /pow3r/model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/pow3r/model/model.py -------------------------------------------------------------------------------- /pow3r/model/patch_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/pow3r/model/patch_embed.py -------------------------------------------------------------------------------- /pow3r/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/pow3r/tools/__init__.py -------------------------------------------------------------------------------- /pow3r/tools/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/pow3r/tools/geometry.py -------------------------------------------------------------------------------- /pow3r/tools/path_to_dust3r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/pow3r/tools/path_to_dust3r.py -------------------------------------------------------------------------------- /pow3r/tools/video_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/pow3r/HEAD/pow3r/tools/video_maker.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | cython 2 | pyaml 3 | xformers 4 | scikit-learn 5 | open3d 6 | viser --------------------------------------------------------------------------------