How can I extract the output scores for objects , object class ,object id detected in images , generated by the Tensorflow Model for Object Detection ?
I want to store all these details into individual variables so that later they can be stored in a database .
Using the same code as found in this link https://github.com/tensorflow/models/blob/master/research/object_detection/object_detection_tutorial.ipynb
Please Help me out with the solution to this problem .
I've Tried
print(str(output_dict['detection_classes'][0] ) , ":" , str(output_dict['detection_scores'][0]))
This works and gives the object id and score for the class with the highest probability . But I want to extract the class name too and also the scores , Ids and names for all objects present in the image