Flask Image Search is an extension for flask that makes it easy to add image searching to your flask site.
- Free software: MIT license
- Documentation: https://flask-image-search.readthedocs.io.
- Works with Flask-SQLAlchemy to make searching your database easy.
- Searching is fast
- The indexed images take up very little storage
- Database changes automatically update the image indexes
Flask-Image-Search uses a CNN (Convolutional neural network), the CNN is used to extract the features from the images in a dataset. The features are stored so they can be searched later with a query image. When an image is searched it's features are extracted and compared with all the other images to get the distance from the search image, the distances are then used to sort the images.
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.