SSD
SSD copied to clipboard
modify the color of the detection box
What should I do if I want to modify the color of the detection box in the demo.py output image?
The author has disabled the color parameter in the draw_boxes function from their Vizer library if you check here
I'd say create your own function to draw the bounding boxes which should be pretty straightforward or use the _draw_single_box function from the vizer library to iterate through the boxes and use custom colors
The author has disabled the color parameter in the
draw_boxesfunction from theirVizerlibrary if you check here I'd say create your own function to draw the bounding boxes which should be pretty straightforward or use the_draw_single_boxfunction from the vizer library to iterate through the boxes and use custom colors
Thank you very much!