Python Forum
rgb to xyz - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: rgb to xyz (/thread-30140.html)



rgb to xyz - Nickd12 - Oct-09-2020

does anyone know of a good interpreter to convert rgb to xyz or even better something where you can input a color like blue and it give to the rbg and xyz?


RE: rgb to xyz - Larz60+ - Oct-09-2020

scikit-image can do the conversion see: https://pypi.org/project/scikit-image/

specifically, look at skimage.color.rgb2xyz, documentation here:
https://scikit-image.org/docs/stable/api/skimage.color.html?highlight=rgb2xyz#skimage.color.rgb2xyz


RE: rgb to xyz - Nickd12 - Oct-09-2020

i think i might be using it wrong its not working for me