Почему при наложении weather на background размываются пиксели weather?
Кот:
from PIL import Image
image = Image.open('background.jpg')
front = Image.open('weather.png')
image.paste(front)
image.save('test.png')
Та же самая проблема повторяется в библиотеке cv2
А вот и ответ:
from PIL import Image
front = Image.open('weather.png')
back = Image.open('background1.png')
front.load()
back.paste(front, mask=front.split()[3])
back.save('result.png')