@Kike2023 I think it is most likely that you have not created a folder called Image relative to your notebook file path. Try to create one using the option shown and then retry the same with the images in the Image folder.
Also check if you can pass the path of each image to display.
import glob
from IPython.display import display, Image
def display_image(path):
print("File: {}".format(path))
display(Image(path))
for path in glob.iglob('Image/*')
display_image(path)
If this answers your query, do click Accept Answer
and Yes
for was this answer helpful. And, if you have any further query do let us know.