├── .flake8 ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── DSC_0410.JPG ├── DSC_0411.JPG ├── architecture.svg ├── benchmark.png ├── benchmark_cpu.png ├── easy_hard.jpg ├── sacre_coeur1.jpg ├── sacre_coeur2.jpg └── teaser.svg ├── benchmark.py ├── demo.ipynb ├── demo2image.py ├── demo_bak.py ├── demo_camera.py ├── lightglue.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── requires.txt └── top_level.txt ├── lightglue ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── aliked.cpython-310.pyc │ ├── disk.cpython-310.pyc │ ├── lightglue.cpython-310.pyc │ ├── sift.cpython-310.pyc │ ├── superpoint.cpython-310.pyc │ ├── utils.cpython-310.pyc │ └── viz2d.cpython-310.pyc ├── aliked.py ├── disk.py ├── lightglue.py ├── sift.py ├── superpoint.py ├── utils.py ├── viz2d.py └── viz2d_bak.py ├── plt.py ├── pyproject.toml └── requirements.txt /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/README.md -------------------------------------------------------------------------------- /assets/DSC_0410.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/assets/DSC_0410.JPG -------------------------------------------------------------------------------- /assets/DSC_0411.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/assets/DSC_0411.JPG -------------------------------------------------------------------------------- /assets/architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/assets/architecture.svg -------------------------------------------------------------------------------- /assets/benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/assets/benchmark.png -------------------------------------------------------------------------------- /assets/benchmark_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/assets/benchmark_cpu.png -------------------------------------------------------------------------------- /assets/easy_hard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/assets/easy_hard.jpg -------------------------------------------------------------------------------- /assets/sacre_coeur1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/assets/sacre_coeur1.jpg -------------------------------------------------------------------------------- /assets/sacre_coeur2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/assets/sacre_coeur2.jpg -------------------------------------------------------------------------------- /assets/teaser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/assets/teaser.svg -------------------------------------------------------------------------------- /benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/benchmark.py -------------------------------------------------------------------------------- /demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/demo.ipynb -------------------------------------------------------------------------------- /demo2image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/demo2image.py -------------------------------------------------------------------------------- /demo_bak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/demo_bak.py -------------------------------------------------------------------------------- /demo_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/demo_camera.py -------------------------------------------------------------------------------- /lightglue.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/lightglue.egg-info/PKG-INFO -------------------------------------------------------------------------------- /lightglue.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/lightglue.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /lightglue.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lightglue.egg-info/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/lightglue.egg-info/requires.txt -------------------------------------------------------------------------------- /lightglue.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | lightglue 2 | -------------------------------------------------------------------------------- /lightglue/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/lightglue/__init__.py -------------------------------------------------------------------------------- /lightglue/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/lightglue/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /lightglue/__pycache__/aliked.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/lightglue/__pycache__/aliked.cpython-310.pyc -------------------------------------------------------------------------------- /lightglue/__pycache__/disk.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/lightglue/__pycache__/disk.cpython-310.pyc -------------------------------------------------------------------------------- /lightglue/__pycache__/lightglue.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/lightglue/__pycache__/lightglue.cpython-310.pyc -------------------------------------------------------------------------------- /lightglue/__pycache__/sift.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/lightglue/__pycache__/sift.cpython-310.pyc -------------------------------------------------------------------------------- /lightglue/__pycache__/superpoint.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/lightglue/__pycache__/superpoint.cpython-310.pyc -------------------------------------------------------------------------------- /lightglue/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/lightglue/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /lightglue/__pycache__/viz2d.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/lightglue/__pycache__/viz2d.cpython-310.pyc -------------------------------------------------------------------------------- /lightglue/aliked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/lightglue/aliked.py -------------------------------------------------------------------------------- /lightglue/disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/lightglue/disk.py -------------------------------------------------------------------------------- /lightglue/lightglue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/lightglue/lightglue.py -------------------------------------------------------------------------------- /lightglue/sift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/lightglue/sift.py -------------------------------------------------------------------------------- /lightglue/superpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/lightglue/superpoint.py -------------------------------------------------------------------------------- /lightglue/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/lightglue/utils.py -------------------------------------------------------------------------------- /lightglue/viz2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/lightglue/viz2d.py -------------------------------------------------------------------------------- /lightglue/viz2d_bak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/lightglue/viz2d_bak.py -------------------------------------------------------------------------------- /plt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/plt.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarknight999/LightGlue-OpenCV/HEAD/requirements.txt --------------------------------------------------------------------------------