For similar images I am getting list of image objects. How to display and visualise these images in python
similar_images=app.inputs.search_by_image(fileobj=fio)"[, ]"
Hi Ravi - try the following:
response = app.inputs.search_by_image(fileobj=fio) counter=0 for item in response: print str(counter) + ") URL: " + item.url + ", SCORE: " + str(item.score) + ", Metadata: " + str(item.metadata) counter+=1