Python Grepper

import cv2
filename = 'lena.png'
image = cv2.imread(filename, cv2.IMREAD_GRAYSCALE)
plt.imshow(image, cmap='gray')
M Baseer