### Install LightGlueStick Source: https://github.com/aubingazhib/lightgluestick/blob/main/README.md Clone the repository, set up a virtual environment, and install the package using pip. Tested on Ubuntu. ```bash git clone https://github.com/aubingazhib/LightGlueStick.git cd LightGlueStick python -m venv venv source venv/bin/activate pip install . ``` -------------------------------- ### Run LightGlueStick Inference with Depth Adaptivity Source: https://github.com/aubingazhib/lightgluestick/blob/main/README.md Enable depth adaptivity for inference by providing a depth confidence value. The model will perform an early exit based on this threshold and report the exit layer. ```bash python -m lightgluestick.run -img1 assets/img1.jpg -img2 assets/img2.jpg --depth_confidence 0.95 ``` -------------------------------- ### Run LightGlueStick Inference Source: https://github.com/aubingazhib/lightgluestick/blob/main/README.md Perform feature matching between two images using the LightGlueStick model. Specify the paths to the two input images. ```bash python -m lightgluestick.run -img1 assets/img1.jpg -img2 assets/img2.jpg ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.