I have this code:
image_list = []
for filename in glob.glob('C:\\Users\\Utilizador\\Desktop\\menu\\*.jpg'):
im=cv2.imread(filename)
image_list.append(im)
This creates me a list of images, but I need it to be in an array form with shape (num_of_images, width, height, 3)
All images have the same shape Any ideas? Thanks