I want to read multiple images on a same folder using opencv (python). To do that do I need to use for loop or while loop with imread func
for
while
imread
import glob import cv2 as cv path = glob.glob("/path/to/folder/*.jpg") cv_img = [] for img in path: n = cv.imread(img) cv_img.append(n)