how can i get the value that is displayed when printing a np.float32 value as float? (or int)
I am loading an openEXR files that I have rendered int values into.
Of course they are stored as float32 internally, which can/will cause issues.
Does equality check for floats in python check against machine epsilon tolerances?
I’m a bit confused about the precision on floats in python and equality checks.