save image grayscale python imageio code example
Example 1: python image to grayscale
from PIL import Image
img = Image.open("image.jpg")
img.convert("L").save("result.jpg")
Example 2: save an image in python as grayscale cv2
cv2.imwrite('data/dst/lena_opencv_red.jpg', im)