GithubHelp home page GithubHelp logo

cnn-image-search-engine's Introduction

CNN Reverse Image Search

This project was inspired by pyimagesearch's tutorial on building an image search engine by using the images' histogram as a feature vector and then measure the chi-squared distance between a given query image and the indexed database.

From my studies on deep learning I knew that a CNN also creates a feature vector, which is then given to classification layers. I imagined I could create a similar algorithm using a CNN's feature vector instead of an histogram, as it will contain more information that just the color. This is the result.

The algorithm

  1. With getFeatures.py, use a ResNet50 model to extract a feature vector for each image and dump them to a file.
  2. With query.py, extract the features of a given picture and send them to tools/Search.py to measure the euclidean distance between the query vector and the vectors on the dataset. Sort them and show the five closest results.

How to use

To run this script first install the dependencies

pip install -r requirements.txt

Then drop your image database on an "images" folder and run getFeatures.py to index all the pictures. You can now send queries to query.py --images [path-to-image].

cnn-image-search-engine's People

Contributors

danngalann avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.