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:
EnabledForSeparateImages is for indexing images in separate files.
EnabledForEmbeddedImages is for indexing images embedded in various documents.
EnabledForContainerItemImages 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:
HashDifferences sets the maximum number of different bits in the hashes of found images. This value ranges from 0 to 32.
MaxResultCount sets the maximum number of found images.
SearchDocumentFilter 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:
C#
stringindexFolder=@"c:\MyIndex";stringdocumentFolder=@"c:\MyDocuments";// Creating an indexIndexindex=newIndex(indexFolder);// Setting the image indexing optionsIndexingOptionsindexingOptions=newIndexingOptions();indexingOptions.ImageIndexingOptions.EnabledForContainerItemImages=true;indexingOptions.ImageIndexingOptions.EnabledForEmbeddedImages=true;indexingOptions.ImageIndexingOptions.EnabledForSeparateImages=true;// Indexing documents in a document folderindex.Add(documentFolder,indexingOptions);// Setting the image search optionsImageSearchOptionsimageSearchOptions=newImageSearchOptions();imageSearchOptions.HashDifferences=10;imageSearchOptions.MaxResultCount=100;imageSearchOptions.SearchDocumentFilter=SearchDocumentFilter.CreateFileExtension(".zip",".png",".jpg");// Creating a reference image for searchSearchImagesearchImage=SearchImage.Create(@"c:\MyDocuments\image.png");// Searching in the indexImageSearchResultresult=index.Search(searchImage,imageSearchOptions);Console.WriteLine("Images found: "+result.ImageCount);for(inti=0;i<result.ImageCount;i++){FoundImageFrameimage=result.GetFoundImage(i);Console.WriteLine(image.DocumentInfo.ToString());}
More resources
GitHub examples
You may easily run the code from documentation articles and see the features in action in our GitHub examples: