Reverse image search is a search for images that are similar to a given reference image.
In the GroupDocs.Search index, reverse image search allows you to search for similar images in ZIP archives, various documents, and individual files.
The image search is performed by comparing the perceptual hash of the reference image with the hashes of the images in the index. The idea of a perceptual hash is that for very similar images it has a value with a minimum number of different bits, and for very different images it gives a large number of different bits.
In the GroupDocs.Search engine, reverse image search, like full-text search, consists of two stages: the indexing stage and the actual search stage.
To search for images in the index, you must enable at least one of the flags in the options at the indexing stage:
setEnabledForSeparateImages is for indexing images in separate files.
setEnabledForEmbeddedImages is for indexing images embedded in various documents.
setEnabledForContainerItemImages is for indexing images that are elements of container documents, such as ZIP archives, OST/PST storages.
For more information, see the Indexing options page.
The following options are available during the search stage:
setHashDifferences method sets the maximum number of different bits in the hashes of found images. This value ranges from 0 to 32.
setMaxResultCount method sets the maximum number of found images.
setSearchDocumentFilter method sets the filter for found documents.
For more information, see the Image search options page.
The following code example demonstrates all stages of the reverse image search:
StringindexFolder="c:\\MyIndex";StringdocumentsFolder="c:\\MyDocuments";// Creating an index
Indexindex=newIndex(indexFolder);// Setting the image indexing options
IndexingOptionsindexingOptions=newIndexingOptions();indexingOptions.getImageIndexingOptions().setEnabledForContainerItemImages(true);indexingOptions.getImageIndexingOptions().setEnabledForEmbeddedImages(true);indexingOptions.getImageIndexingOptions().setEnabledForSeparateImages(true);// Indexing documents in a document folder
index.add(documentsFolder,indexingOptions);// Setting the image search options
ImageSearchOptionsimageSearchOptions=newImageSearchOptions();imageSearchOptions.setHashDifferences(10);imageSearchOptions.setMaxResultCount(10000);imageSearchOptions.setSearchDocumentFilter(SearchDocumentFilter.createFileExtension(".zip",".png",".jpg"));// Creating a reference image for search
SearchImagesearchImage=SearchImage.create("c:\\MyDocuments\\image.png");// Searching in the index
ImageSearchResultresult=index.search(searchImage,imageSearchOptions);System.out.print("Images found: "+result.getImageCount());for(inti=0;i<result.getImageCount();i++){FoundImageFrameimage=result.getFoundImage(i);System.out.print(image.getDocumentInfo().toString());}
More resources
GitHub examples
You may easily run the code from documentation articles and see the features in action in our GitHub examples: