Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FrancescoSaverioZuppichini/bc79da19dea7198dce2c3015451e2ff9 to your computer and use it in GitHub Desktop.
Save FrancescoSaverioZuppichini/bc79da19dea7198dce2c3015451e2ff9 to your computer and use it in GitHub Desktop.
Test
from torchvision.ops.boxes import nms as torch_nms
nms_indices = torch_nms(bboxes + labels[..., None], 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