We have used elastic search apis for image recognition purpose. There are a set of images data from AWS Image Recognition and saved in ElasticSearch. The image with frame was in ElasticSearch.
I am using the cropped image (Please crop the original image) to search the image existance in Elastic Search. I am getting the result but the Original Match image was not on top of the list. Some random image from ElasticSearch data is coming on Top. Can some one help me why it is not showing on top?
We have used node js for elastic search api calls Please see my code... const searchResult = await elasticClient.search({ index: "imagesearch", type: "image", body: { size: 3, query: { match: { label: { query: LabellistString, }, }, }, }, }); Note: Based on image labels we searching the images on elastic search
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)