Added bmp images for simulation

This commit is contained in:
Emilio Martinez 2023-06-26 23:51:37 -03:00
parent ed38773569
commit 1e7d5de144
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ from datetime import datetime
def get_images_names_from_folder (folder):
images_list = [image for image in os.listdir(folder) \
if image.endswith('.png') or image.endswith('.jpg') or image.endswith('.jpeg') or \
image.endswith('.tif') or image.endswith('.tiff') or image.endswith('.gif')]
image.endswith('.tif') or image.endswith('.tiff') or image.endswith('.gif') or image.endswith('.bmp')]
return images_list
def get_subfolders_names_from_folder(folder):