I\'m trying to return list of objects that have been found at image with TF Object Detection API.
To do that I\'m using print([category_index.get(i) for
print([category_index.get(i) for
adding print(class_name) after
print(class_name)
else: class_name = 'N/A' display_str = '{}: {}%'.format( class_name, int(100*scores[i]))
in visualization_utils.py file prints the detected object. I wonder where to add print command to print timestamps as well as percentage of accuracy in output.
visualization_utils.py