From fc83140256e4ea56a933712d360df60615df32be Mon Sep 17 00:00:00 2001 From: Bjarne Johannsen <42101377+bjajoh@users.noreply.github.com> Date: Tue, 21 Sep 2021 22:42:46 +0200 Subject: [PATCH] Fix HDR confidence --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c621fe1..23f4516 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,8 @@ header, (ampl, radial, x, y, z, conf) = cli.getImage(invalidAsNan=True) numUnderExposured = len(conf[conf==NimbusClient.ConfUnderExposured]) numOverExposured = len(conf[conf==NimbusClient.ConfOverExposured]) numAsymmetric = len(conf[conf==NimbusClient.ConfAsymmetric]) -numValid = len(conf[conf==NimbusClient.ConfValid]) +numLong = len(conf[conf==NimbusClient.ConfLong]) +numShot = len(conf[conf==NimbusClient.ConfShort]) ``` Based on this information you probably want to change the illumination time (increase the illumination in case of many underexposured pixels):