For given set of images (grayscale and color). we can extract the unique features in all images using Harris operator and λ-, generate feature descriptors using scale invariant features (SIFT), and matching the image set features using sum of squared differences (SSD) and normalized cross correlations.
- From the command line create a virtual environment and activate.
# Windows
> python -m venv .venv
> .venv\Scripts\activate
# Linux
> python3 -m venv .venv
> source .venv/bin/activate
- Install the dependencies.
> pip install -r requirements.txt
- Run the application.
> python APP.py