Login using Social Account
     Continue with GoogleLogin using your credentials
In this section, we will read the coco labels file. This file contains the labels of the object the model was trained against. We will also create a COLORS array which will give a different color for each label.
Set label_file
to the file path /cxldata/dlcourse/mask_rcnn_model_data/object_detection_classes_coco.txt
where the labels are stored. Remember to put quotes (" ") around the path.
label_file=<< your code comes here >>
Get the labels LABELS
from the file:
LABELS = open(label_file).read().strip().split("\n")
Randomly generate the colors(the R value, G value and B value) using np.random.randint
for each label(thus the size (len(LABELS), 3). These colors will be used to highlight the detected object of that class later.
COLORS = np.random.<< your code comes here >>(0, 255, size=(len(LABELS), 3), dtype="uint8")
Let us have a look at the first 5 classes in the file:
LABELS[:5]
Taking you to the next exercise in seconds...
Want to create exercises like this yourself? Click here.
Loading comments...