Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 379 Bytes

README.md

File metadata and controls

23 lines (19 loc) · 379 Bytes

Vizer

Boxes and masks visualization tools.

Install

pip install Vizer

Usage

img = Image.open(path)
# draw masks
img = draw_masks(img, data['masks'], data['labels'])
# draw boxes
img = draw_boxes(img, boxes=data['boxes'], labels=data['labels'], scores=data['scores'])
# show
plt.imshow(img)
plt.show()

Example

Bear