i am using Amazon Rekognition when i upload an image to my s3 bucket , the api resonse i get is
{
"Labels": [
{
"Confidence": 99.30213165283203,
"Name": "Human"
},
{
"Confidence": 99.30457305908203,
"Name": "People"
},
{
"Confidence": 99.30457305908203,
"Name": "Person"
},
{
"Confidence": 92.39805603027344,
"Name": "Clothing"
},
{
"Confidence": 92.39805603027344,
"Name": "Denim"
},
{
"Confidence": 92.39805603027344,
"Name": "Jeans"
},
{
"Confidence": 92.39805603027344,
"Name": "Pants"
},
{
"Confidence": 51.34967041015625,
"Name": "Accessories"
},
{
"Confidence": 51.27912902832031,
"Name": "Footwear"
},
{
"Confidence": 51.27912902832031,
"Name": "Shoe"
}
],
"OrientationCorrection": "ROTATE_0"
}
is there any api to search for similar product (eg. search: 'striped blue t shirts' when i upload a blue striped tshirt) among images in my bucket.
Rekognition alone would not have that search, but you could create a small RDS database that keeps the above results in relation to the individual images, then when you do a Rekognition search you can also do a quick query for images that have the same tags.