Skip to content
Snippets Groups Projects
Commit 5bd9d13f authored by Paul McCarthy's avatar Paul McCarthy
Browse files

ImageTexture was crashing on images with zero data range.

parent d427298e
No related branches found
No related tags found
No related merge requests found
...@@ -544,8 +544,11 @@ class ImageTexture(texture.Texture, notifier.Notifier): ...@@ -544,8 +544,11 @@ class ImageTexture(texture.Texture, notifier.Notifier):
elif dtype == np.uint16: scale = 65535 elif dtype == np.uint16: scale = 65535
elif dtype == np.int16: scale = 65535 elif dtype == np.int16: scale = 65535
voxValXform = transform.scaleOffsetXform(scale, offset) # If the data range is 0 (min == max)
# we just set an identity xform
if scale == 0: voxValXform = np.eye(4)
else: voxValXform = transform.scaleOffsetXform(scale, offset)
# This is all just for logging purposes # This is all just for logging purposes
if log.getEffectiveLevel() == logging.DEBUG: if log.getEffectiveLevel() == logging.DEBUG:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment