You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This seem to be due to a division by zero happening in the inverse compression function, the way it's been dealt with in OCIO was to change the lim < 1.0001 to lim <= 1.0001 in both forward and inverse direction.
For debugging purposes, you should be able to trigger the issue using RGB [0.40898755, 0.0, 0.6531319] with InvOutput.Academy.P3-D65_4000nit_in_P3-D65_ST2084.ctl
This change also seem to significantly improve the HDR roundtrip, eg. on this case.
The text was updated successfully, but these errors were encountered:
scottdyer
added a commit
to scottdyer/aces-dev
that referenced
this issue
Nov 14, 2024
In the image dataset there are a few generated images with NaN, I specifically identified these:
This seem to be due to a division by zero happening in the inverse compression function, the way it's been dealt with in OCIO was to change the
lim < 1.0001
tolim <= 1.0001
in both forward and inverse direction.For debugging purposes, you should be able to trigger the issue using RGB [0.40898755, 0.0, 0.6531319] with InvOutput.Academy.P3-D65_4000nit_in_P3-D65_ST2084.ctl
This change also seem to significantly improve the HDR roundtrip, eg. on this case.
The text was updated successfully, but these errors were encountered: