Loading and saving images in OpenCV is quite limited, so... what is the preferred ways to load all images from a given folder? Should I search for files in that folder with .png
you can use glob function to do this. see the example
import cv2 import glob for img in glob.glob("path/to/folder/*.png"): cv_img = cv2.imread(img)