Created
October 26, 2022 07:56
-
-
Save FrancescoSaverioZuppichini/e6e6092c39d69b7efa5b1e094b3326b0 to your computer and use it in GitHub Desktop.
Test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nms_indices = nms(bboxes, scores, .45) | |
plot_bboxes(img, | |
bboxes[nms_indices], | |
colors=["yellow" if el.item() == 0 else "blue" for el in labels[nms_indices]], | |
labels=["head" if el.item() == 0 else "mic" for el in labels[nms_indices]] | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment