You can use the os and cv2 modules in python
import os
import cv2
path = 'path/to/folder/with 100 images'
arr = os.listdir(path)
for i in range(len(arr)):
img = cv2.imread(path+arr[i])
cv2.imshow(arr[i], img)
k = cv2.waitKey(0)
if(k == 113):
cv2.destroyAllWindows()
break
cv2.destroyAllWindows()
This will open a window to view your image, all you have to do is press any key to move forward and load another image.
Press 'q' to exit.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…