-
Beta Was this translation helpful? Give feedback.
Replies: 9 comments
-
Hi @hminle, This is a pure side effect of the illuminants of the two RGB colourspaces being different, i.e. D65 vs D50. What you can do is something like that: PPRGB_D65 = colour.models.RGB_COLOURSPACES['ProPhoto RGB'].chromatically_adapt(
colour.ILLUMINANTS['CIE 1931 2 Degree Standard Observer']['D65'])
colour.plotting.plot_RGB_colourspaces_gamuts(
colourspaces=[PPRGB_D65, 'sRGB'], reference_colourspace='CIE XYZ') If you have a doubt like that, try CIE xyY and you will see that ProPhoto RGB encompasses almost entirely sRGB but they diverge at the top of the volume because of their different whitepoint. You can also verify that here: https://www.colour-science.org:8020/ |
Beta Was this translation helpful? Give feedback.
-
Hi @KelSolaar , prophotorgb_colourspace = colour.models.PROPHOTO_RGB_COLOURSPACE In fact, I need to specify D65 clearly, right? Like what you did with |
Beta Was this translation helpful? Give feedback.
-
@KelSolaar |
Beta Was this translation helpful? Give feedback.
-
Yes, if you really want to compare them apple to apple, they ideally all need to be chromatically adapted to the same whitepoint. Likewise for |
Beta Was this translation helpful? Give feedback.
-
Yeah, I want to compare them like what you show me in the web: https://www.colour-science.org:8020/ |
Beta Was this translation helpful? Give feedback.
-
I think if the parameter |
Beta Was this translation helpful? Give feedback.
-
Yes and no because often we also want to compare, the colourspaces as they are defined by their primaries: I will certainly add an option to chromatically adapt them though! |
Beta Was this translation helpful? Give feedback.
-
@hminle : I have added support in the develop branch to chromatically adapt the RGB colourspaces in the various plotting definitions: |
Beta Was this translation helpful? Give feedback.
-
Oh thank you a lot @KelSolaar |
Beta Was this translation helpful? Give feedback.
Hi @hminle,
This is a pure side effect of the illuminants of the two RGB colourspaces being different, i.e. D65 vs D50. What you can do is something like that:
If you have a doubt like that, try CIE xyY and you will see that ProPhoto RGB encompasses almost entirely sRGB but they diverge at the top of the volume because of their different whitepoint.
You can also verify that here: https://www.colour-science.org:8020/