From a6ef3977dd364f6dbde12f491aa81a6b4f5be305 Mon Sep 17 00:00:00 2001 From: Benjamin Loison <12752145+Benjamin-Loison@users.noreply.github.com> Date: Tue, 16 Apr 2024 16:48:29 +0200 Subject: [PATCH] Add comment concerning `print`ing `{min,max}Color` --- datasets/raise/extract_noise.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/datasets/raise/extract_noise.py b/datasets/raise/extract_noise.py index 34b549a..9f0183d 100755 --- a/datasets/raise/extract_noise.py +++ b/datasets/raise/extract_noise.py @@ -80,6 +80,8 @@ def treatImage(imageFileName, computeExtremes = False): for imageFileName in tqdm(imagesFileNames, 'Computing extremes of images'): treatImage(imageFileName, computeExtremes = True) +# To skip this step next time. +# Maybe thanks to `rawpy.RawPy` fields, possibly stating device maximal value, can avoid doing so to some extent. print(f'{minColor=}') print(f'{maxColor=}')