I remove background but instead of having a transparent background I would like to have green for example but I don't understand how to do it.
I want to change the background of my image for that I do:
from rembg import remove
import cv2
image = cv2.imread(imgPath)
removeim = remove(im)
But no idea for complete background with a color...
Thanks