├── .gitignore ├── LICENSE ├── README.md ├── assets ├── DSC_0410.JPG ├── DSC_0411.JPG ├── architecture.svg ├── easy_hard.jpg ├── sacre_coeur1.jpg ├── sacre_coeur2.jpg └── teaser.svg ├── demo.ipynb ├── export.py ├── infer.py ├── lightglue ├── __init__.py ├── disk.py ├── lightglue.py ├── superpoint.py ├── utils.py └── viz2d.py ├── lightglue_onnx ├── __init__.py ├── disk.py ├── end2end.py ├── lightglue.py ├── ops │ ├── __init__.py │ ├── convolution_mode.py │ └── sdpa.py ├── superpoint.py ├── utils.py └── viz2d.py ├── make_fixed_sizes.sh ├── onnx_runner ├── __init__.py ├── lightglue.py ├── utils.py └── viz2d.py ├── requirements-onnx.txt ├── requirements.txt ├── setup.py └── weights └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/README.md -------------------------------------------------------------------------------- /assets/DSC_0410.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/assets/DSC_0410.JPG -------------------------------------------------------------------------------- /assets/DSC_0411.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/assets/DSC_0411.JPG -------------------------------------------------------------------------------- /assets/architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/assets/architecture.svg -------------------------------------------------------------------------------- /assets/easy_hard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/assets/easy_hard.jpg -------------------------------------------------------------------------------- /assets/sacre_coeur1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/assets/sacre_coeur1.jpg -------------------------------------------------------------------------------- /assets/sacre_coeur2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/assets/sacre_coeur2.jpg -------------------------------------------------------------------------------- /assets/teaser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/assets/teaser.svg -------------------------------------------------------------------------------- /demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/demo.ipynb -------------------------------------------------------------------------------- /export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/export.py -------------------------------------------------------------------------------- /infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/infer.py -------------------------------------------------------------------------------- /lightglue/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/lightglue/__init__.py -------------------------------------------------------------------------------- /lightglue/disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/lightglue/disk.py -------------------------------------------------------------------------------- /lightglue/lightglue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/lightglue/lightglue.py -------------------------------------------------------------------------------- /lightglue/superpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/lightglue/superpoint.py -------------------------------------------------------------------------------- /lightglue/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/lightglue/utils.py -------------------------------------------------------------------------------- /lightglue/viz2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/lightglue/viz2d.py -------------------------------------------------------------------------------- /lightglue_onnx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/lightglue_onnx/__init__.py -------------------------------------------------------------------------------- /lightglue_onnx/disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/lightglue_onnx/disk.py -------------------------------------------------------------------------------- /lightglue_onnx/end2end.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/lightglue_onnx/end2end.py -------------------------------------------------------------------------------- /lightglue_onnx/lightglue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/lightglue_onnx/lightglue.py -------------------------------------------------------------------------------- /lightglue_onnx/ops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/lightglue_onnx/ops/__init__.py -------------------------------------------------------------------------------- /lightglue_onnx/ops/convolution_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/lightglue_onnx/ops/convolution_mode.py -------------------------------------------------------------------------------- /lightglue_onnx/ops/sdpa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/lightglue_onnx/ops/sdpa.py -------------------------------------------------------------------------------- /lightglue_onnx/superpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/lightglue_onnx/superpoint.py -------------------------------------------------------------------------------- /lightglue_onnx/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/lightglue_onnx/utils.py -------------------------------------------------------------------------------- /lightglue_onnx/viz2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/lightglue_onnx/viz2d.py -------------------------------------------------------------------------------- /make_fixed_sizes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/make_fixed_sizes.sh -------------------------------------------------------------------------------- /onnx_runner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/onnx_runner/__init__.py -------------------------------------------------------------------------------- /onnx_runner/lightglue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/onnx_runner/lightglue.py -------------------------------------------------------------------------------- /onnx_runner/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/onnx_runner/utils.py -------------------------------------------------------------------------------- /onnx_runner/viz2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/onnx_runner/viz2d.py -------------------------------------------------------------------------------- /requirements-onnx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/requirements-onnx.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/LightGlue-ONNX/HEAD/setup.py -------------------------------------------------------------------------------- /weights/.gitkeep: -------------------------------------------------------------------------------- 1 | Put your ONNX models here 2 | --------------------------------------------------------------------------------