Hello i'm using python to track objects in a video and i want to show an image on top of the object instead of a text.
The current line that im using to show text on top of the target box :
cv2.putText(img_current_frame ,"object name",(int(bbox[0]), int(bbox[1]-45)),0, 0.75, (0,0,0),2)
You might prefer to composite text with the PIL
.text()
method:Or if you have pixels, then use alpha_composite().
If you stick with cv2, then addWeighted() will help you blend in a logo image with alpha set to taste. Or you can just use the matrix addition operator: