Skip to content

Commit

Permalink
fix(method): turn off low light correction mode for edgps calc properly
Browse files Browse the repository at this point in the history
  • Loading branch information
taoning committed Nov 1, 2024
1 parent b238716 commit 6098220
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frads/methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -1293,7 +1293,7 @@ def calculate_edgps(
if save_hdr is not None:
with open(save_hdr, "wb") as f:
f.write(hdr)
res = pr.evalglare(hdr, fast=1, correction_mode="-l-", ev=ev.item())
res = pr.evalglare(hdr, fast=1, correction_mode="l-", ev=ev.item())
edgps = float(res)
os.remove(octree)
return edgps
Expand Down

0 comments on commit 6098220

Please sign in to comment.