Add a missing parameter

This commit is contained in:
Benjamin Loison 2024-04-18 00:18:20 +02:00
parent fb58d78fed
commit eac2cf2174
No known key found for this signature in database

View File

@ -123,8 +123,8 @@ for color in Color:
mean = None
numberOfImagesInMean = 0
for imageFileName in tqdm(imagesFileNames, 'Denoising images'):
treatImage(imageFileName)
for imageFileName in tqdm(imagesFileNames, f'Denoising images for color {color}'):
treatImage(imageFileName, color = color)
npArrayFilePath = f'mean_{imagesFolderPathFileName}_{denoiser}_{color}.npy'
with open(npArrayFilePath, 'wb') as f: