У меня есть 105 изображений со всеми разными именами файлов. 105 изображений находятся в папке, как показано
The folder contains 105 images
import glob
import matplotlib.pyplot as plt
import os
import cv2
path = 'C:/Users/User/Desktop/GF_BSIF/Square Cropped for testing and bsif/*.jpg'
for img in glob.glob(path):
IMG_SIZE = 80
img_array = cv2.imread(img, cv2.IMREAD_GRAYSCALE)
new_array = cv2.resize(img_array, (IMG_SIZE, IMG_SIZE))
plt.imshow(new_array, cmap = 'gray')
plt.show()
I know how to show the images.
But How to add the image's name aside?
How to display all 105 images with its name aside in python as shown in figure below
Thank you!
введите описание изображения здесь сильный текст