Add and use SKY and WALL

This commit is contained in:
Benjamin Loison 2024-04-17 14:26:13 +02:00
parent e080e841f5
commit 83a12f4e0a
No known key found for this signature in database

View File

@ -33,7 +33,10 @@ if raiseNotFlatFields:
files[file] = row
imagesFileNames = [imageFileName for imageFileName in tqdm(imagesFileNames, 'Filtering images') if files[imageFileName]['Device'] == 'Nikon D7000' and Image.open(f'{imagesFolderPath}/png/{imageFileName}').size == (4946, 3278)]
#imagesFileNames = [f'DSC0{imageIndex}.ARW' for imageIndex in range(2807, 2911)]
SKY = range(2_699, 2_807)
WALL = range(2_807, 2_912)
#imagesFileNames = [f'DSC0{imageIndex}.ARW' for imageIndex in SKY]
minColor = None
maxColor = None