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
From the function signature visualize_boxes_and_labels_on_image_array, you have to set the arguments max_boxes_to_draw
, min_score_thresh
,
visualize_boxes_and_labels_on_image_array(image,
boxes,
classes,
scores,
category_index,
instance_masks=None,
keypoints=None,
use_normalized_coordinates=False,
max_boxes_to_draw=20,
min_score_thresh=.5,
agnostic_mode=False,
line_thickness=4)