-
Hi Team, This library is amazing, I was wondering whether can we plot the graph where we show only the points with real colors and rest being blank/white, I tried to do a quick search online, but not sure whether we could do it, apologies if this is asked previously, |
Beta Was this translation helpful? Give feedback.
Answered by
KelSolaar
Jan 4, 2023
Replies: 1 comment 1 reply
-
Hi @vibhoothi, This should be doable yes! RGB = np.random.random([1280, 720, 3])[::10, :]
colour.plotting.plot_RGB_chromaticities_in_chromaticity_diagram_CIE1931(
RGB,
colourspaces=["DCI-P3"],
plot_kwargs={"color": "k"},
scatter_kwargs={"s": 2},
show_diagram_colours=False,
legend=False) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
vibhoothi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @vibhoothi,
This should be doable yes!