Skip to content

An image search engine made using python GUI, that extracts and stores features from images in database in the form of color correlogram and compares each against that of the query image, to retrieve similar images from the database.

astrodestroyergithub/Image-Search-Engine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Image-Search-Engine

An image search engine made using python GUI, that extracts and stores features from images in database in the form of color correlogram and compares each against that of the query image, to retrieve similar images from the database.

What are Image Search Engines?

Image search engines that quantify the contents of an image are called Content-Based Image Retrieval (CBIR) systems. The term CBIR is commonly used in the academic literature, but in reality, it’s simply a fancier way of saying “image search engine”, with the added poignancy that the search engine is relying strictly on the contents of the image and not any textual annotations associated with the image.

Motivation:

As we all know, searching for images using “names” and “tags” is highly inefficient. Using language and keywords to describe something that is fundamentally visual is a tremendous hassle, whether you're labelling and categorising your personal photos, looking for stock pictures for your corporate website, or simply attempting to locate the appropriate image for a blog post. Hence, here I will be attempting to make everything easier by creating an image search engine in python (OpenCV).

Steps to follow:

  • Defining our image descriptor
  • Indexing your dataset
  • Defining your similarity metric
  • Searching

Flow Chart:

Oversimplication of how the image search engine works.

Data Flow

Processes

Tools and libraries used:

1. OpenCV 2. Numpy 3. Imutils 4. Glob 5. Argparse

Algorithm

The query image will be segmented into 5 parts as shown below. Each part will define various features of the image. Each of the parts will be extracted for features, after the image is converted to HSV format from RGB format. Although, RGB format images is easier to process than HSV images, the HSV images appeal more to human vision, when it comes to perceiving those images to the fullest. Hence, after the conversion, the parts will be extracted for the features, to form a color correlogram. The color correlogram will be made up on the basis of the probability of the pixel colors, and how many times a particular shade of color appears in each region, in the form of pixels.

Query Image Segmented

How to perform the execution?

Download this repo and change the directory to the main folder containing all the files in this repo, through the command prompt, and type the following commands.

py index.py --dataset ..\images\ --index ..\index\index.csv

py search.py --index\index.csv --query ..\query\qimg1.png --result-path ..\images\

Outputs after execution:

Query Image

result Images

GUI (Graphical User Interface):

GUI Bar

GUI Display

References

[1] Virage image search engine: an open framework for image management Jeffrey R. Bach, Charles Fuller, Amarnath Gupta, Arun Hampapur, Bradley Horowitz, Rich Humphrey,
Ramesh C. Jain, Chiao-Fe Shu

[2] Query by Image : The QBIC System Myron Flickner, Harpreet Sawhney, Wayne Niblack, Jonathan Ashley, Qian Huang, Byron Dom, Monika Gorkani, Jim Hafher, Denis Lee, Dragutin Petkovie, David Steele, and Peter Yanke

[3] https://www.pyimagesearch.com/2014/12/01/complete-guide-building-image-search-engine-python-opencv/

About

An image search engine made using python GUI, that extracts and stores features from images in database in the form of color correlogram and compares each against that of the query image, to retrieve similar images from the database.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages