Replies: 1 comment 3 replies
-
Hi @mcg222, You will need to load the
|
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
To import images for colour-checker-detection, I use:
COLOUR_CHECKER_IMAGE_PATHS = glob.glob(
os.path.join('/content/', '*.png'))
COLOUR_CHECKER_IMAGES = [
colour.cctf_decoding(colour.io.read_image(path),function="REDLog")
for path in COLOUR_CHECKER_IMAGE_PATHS
]
for image in COLOUR_CHECKER_IMAGES:
colour.plotting.plot_image(colour.cctf_encoding(image));
I'd like to be able to import linear EXR images. How can I do that? I enabled the OpenCV option to allow for EXR images, but when I bring them in they show up as black. Is there some kind of pass through option so that images aren't linearized?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions