Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hananf11/flask_image_search
This flask plugin allows you to add a simple reverse image search to your flask site.
https://github.com/hananf11/flask_image_search
flask flask-sqlalchemy python
Last synced: 12 days ago
JSON representation
This flask plugin allows you to add a simple reverse image search to your flask site.
- Host: GitHub
- URL: https://github.com/hananf11/flask_image_search
- Owner: hananf11
- License: mit
- Created: 2020-10-11T11:03:29.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-10T10:53:54.000Z (almost 3 years ago)
- Last Synced: 2024-10-06T06:04:26.588Z (about 1 month ago)
- Topics: flask, flask-sqlalchemy, python
- Language: Python
- Homepage: https://flask-image-search.readthedocs.io/
- Size: 76.4 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
==================
Flask Image Search
==================.. image:: https://img.shields.io/pypi/v/flask_image_search.svg
:target: https://pypi.python.org/pypi/flask_image_search.. image:: https://github.com/hananf11/flask_image_search/actions/workflows/action-ci-cd.yml/badge.svg
:target: https://github.com/hananf11/flask_image_search/actions/workflows/action-ci-cd.yml
:alt: CI/CD Build status.. image:: https://readthedocs.org/projects/flask-image-search/badge/?version=latest
:target: https://flask-image-search.readthedocs.io/en/latest/?badge=latest
:alt: Documentation StatusFlask 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.Features
--------* 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-SQLAlchemy: https://flask-sqlalchemy.palletsprojects.com/
How it works
------------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.Credits
-------This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage