-
Hi, I cannot draw Adobe RGB 1998 gamut using this command:
For other colour spaces, it's normal, but not this one. Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 8 comments 1 reply
-
Definitely seems like a bug on the string, as the following works:
|
Beta Was this translation helpful? Give feedback.
-
Hi @hminle, It is because the mapping is filtered with a Regex pattern: colour/colour/plotting/common.py Line 687 in b9ebce4 So you would need to escape the parenthesis. |
Beta Was this translation helpful? Give feedback.
-
That being said we could improve the docs a bit here! |
Beta Was this translation helpful? Give feedback.
-
Thanks, this way works for me
|
Beta Was this translation helpful? Give feedback.
-
Yeah this is supported so that you can both filter existing RGB Colourspaces while passing a custom one you have just built! I do it here for example with the Venice colourspaces: https://colab.research.google.com/drive/1ZGTij7jT8eZRMPUkyWlv_x5ix5Q5twMB |
Beta Was this translation helpful? Give feedback.
-
Thanks, |
Beta Was this translation helpful? Give feedback.
-
It not that the colourspace is designed to have such primaries in the first place, it is more a direct consequence of fitting the camera data to the CIE 1931 2 Degree Standard Observer: if you compute the by-product primaries from the 3x3 matrix mapping the former to the latter, you might get some that goes way beyond the spectral locus. This is actually quite typical from cameras because they are not really colorimetric. |
Beta Was this translation helpful? Give feedback.
-
Hi, I've encountered the same issue. For other colour spaces, it works normally, but not this one. So, I tried using |
Beta Was this translation helpful? Give feedback.
Hi @hminle,
It is because the mapping is filtered with a Regex pattern:
colour/colour/plotting/common.py
Line 687 in b9ebce4
So you would need to escape the parenthesis.