Errors reading EXR images with Houdini 19.5 on Windows. #1019
Unanswered
ahemberger
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Hi @ahemberger, Colour will use "Imageio" by default and will prefer "OpenImageIO" if it is available. Having just tried on my MacBook with a fresh 19.5 Apprentice: >>> import imageio
>>> imageio.imread("/Users/kelsolaar/Downloads/CORRECTED.exr")
Array([[[0.83984375, 0.9038086 , 0.93115234],
[0.8417969 , 0.90478516, 0.9321289 ],
[0.8432617 , 0.9057617 , 0.9326172 ],
..., "OpenImageIO" is not shipped that said: >>> import OpenImageIO
Traceback (most recent call last):
File "<console>", line 1, in <module>
File "/Applications/Houdini/Houdini19.5.303/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-pac
kages-forced/shiboken2/files.dir/shibokensupport/__feature__.py", line 142, in _import
return original_import(name, *args, **kwargs)
ModuleNotFoundError: No module named 'OpenImageIO' |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I seem to repeatedly run up against this problem every few times I upgrade Houdini. I'm installing colour into Houdini 19.5 (which ships with Python 3.9), and am trying to use it to read an image:
img_data = colour.read_image('image.exr')
freeimage throws this error:
Any idea how to troubleshoot this? I understand the real issue here is with freeimage and not colour. I run into this type of problem (freeimage not handling exrs well) that I wonder if using a different module to handle i/o might be less of a headache...
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions