python cv2 lire l'image en niveaux de gris

import cv2
im_gray = cv2.imread('grayscale_image.png', cv2.IMREAD_GRAYSCALE)
Jittery Jellyfish