blend_modes
blend_modes copied to clipboard
Fix np.NAN error
Fix error in the blending_functions.py file (fixes issue #29)
ratio[ratio == np.NAN] = 0.0
changed to:
ratio[np.isnan(ratio)] = 0.0