标签: python cv2
这是我的代码:
img = cv2.imread(some_path, 0)
原始图片:
运行代码后:
显然失去了很多透明度。
答案 0 :(得分:3)
你可以使用PILLOW:
from PIL import Image img = Image.open('image_to_grayscale.png').convert('LA') img.save('greyscale.png')
结果: