I have sign (signs with arbitrary shape) images with white background and I want to get an image of the sign with transparent background.
I have managed to create a mask and apply it to the image and thought making the mask transparent would be doable. I searched a lot here and elsewhere, but nothing really helped me.
import cv2
import numpy as np
file_name = "/path/to/input/img/Unbenannt.jpg" # can be also .png
img = cv2.imread(file_name)
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
th, threshed = cv2.threshold(gray, 240, 255, cv2.THRESH_BINARY_INV)
kernel = cv2.getStructuringElement(cv2.MORPH_ELLIPSE, (11,11))
morphed = cv2.morphologyEx(threshed, cv2.MORPH_CLOSE, kernel)
_, roi, _ = cv2.findContours(morphed, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
mask = np.zeros(img.shape, img.dtype)
cv2.fillPoly(mask, roi, (255,)*img.shape[2], )
masked_image = cv2.bitwise_and(img, mask)
cv2.imwrite("/path/to/output/mask_test.png", masked_image)
Input:
Current Output:
As already mentioned I want to make the background transparent.
Help is highly appreciated.