Unexpected chromaticities plot while using Chromaticity Diagram. #732
-
Dear developers, thank you very much for developing the colorscience library for python. plot_RGB_chromaticities_in_chromaticity_diagram_CIE1931 Are you so polite to tell me, which commands I have to use to plot xy-chromaticity values into the chromaticity diagram? best regards |
Beta Was this translation helpful? Give feedback.
Replies: 8 comments
-
Hi @matthiasbirkich, I'm not sure to understand this part:
Would you mind clarifying please? |
Beta Was this translation helpful? Give feedback.
-
Dear KelSolar, thank you for your fast response. |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
Dear nick-shaw, Does there is a command, which is plotting xy-chromaticity values directly into the chromaticity diagram with colorspace triangle? I want to choose the dotsize, dotcolor and the diemsions of the x-axis and y-axis as well. Thank you for your help! best regards, Matthias |
Beta Was this translation helpful? Give feedback.
-
What I also not understand: |
Beta Was this translation helpful? Give feedback.
-
Thanks for your support, I will go on learning Python language ;-) |
Beta Was this translation helpful? Give feedback.
-
Hey @matthiasbirkich, The Chromaticity Diagram(s) is(are) top-down view(s) along the Luminance/Lightness axis of a particular colour model/space. The CIE 1931 Chromaticity Diagram uses CIE xyY colour model/space, CIE 1976 UCS uses CIE Luv. I see that you closed the issue, was your issue resolved then? Cheers, Thomas |
Beta Was this translation helpful? Give feedback.
-
Dear Troy,
thank you for your answer.
I haven’t recognized your comment.
Now the issue is solved.
Stay healthy and happy!
best regards
Matthias
Troy James Sobotka <[email protected]> schrieb am Sa. 11. Jan. 2020
um 02:06:
Should be rather simple. The xy chromaticity diagram is given via several
plotting functions. For your case, I think you are looking for the three
primaries as expressed in xy coordinates.
You can use the built in primaries, or optionally, make your own array. It
should be something like this for example, using the perceptually uniform
1976 plot:
colour.plotting.plot_RGB_colourspaces_in_chromaticity_diagram_CIE1976UCS('ITU-R BT.709', diagram_clipping_path=colour.xy_to_Luv_uv(colour.models.RGB_COLOURSPACES['ITU-R BT.709'].primaries), bounding_box=(-.1, .7, -.05, .7), spectral_locus_colours="RGB")
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#545?email_source=notifications&email_token=AOH3QCAZB3RDJLZJ3FQ2KALQ5ELRVA5CNFSM4KFOLQX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEIVUWIQ#issuecomment-573262626>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AOH3QCAXFHESOBCIQTGN6S3Q5ELRVANCNFSM4KFOLQXQ>
.
--
--
Matthias Birkicht
Georg-Seebeck-Straße 47
27570 Bremerhaven
mobile: 01609 48 68 28 7
phone: +49 471 306608
work: +49 421 23 800 34
skype: matthias.birkicht
www.oberton.info
|
Beta Was this translation helpful? Give feedback.
plot_RGB_chromaticities_in_chromaticity_diagram_CIE1931
expects linear RGB values in the specified colour space, and converts them to CIExy for plotting. What is your input?