Skip to content

Instantly share code, notes, and snippets.

@aniruddha27
Created March 20, 2020 20:20
Embed
What would you like to do?
import cv2
import matplotlib.pyplot as plt
# import glob
filepath = r'./Importing files/Delhi'
images = glob.glob(filepath+'\*.jpg')
for i in images[:3]:
im = Image.open(i)
plt.imshow(im)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment