gtaylor / python-colormath

A python module that abstracts common color math operations. For example, converting from CIE L*a*b to XYZ, or from RGB to CMYK
python-colormath.readthedocs.org
BSD 3-Clause "New" or "Revised" License
456 stars 83 forks source link

About an image reader? #107

Closed ducbluee closed 4 years ago

ducbluee commented 4 years ago

I see your library currently does not have an image reader. Hope you can improve more. And I see the current library only comparing monochromatic images, but for images with more than 1 color, what is the solution? Hope the author will answer soon. Thanks!!!!!

KelSolaar commented 4 years ago

Hi @ducbluee,

python-colormath is great for simple computations involving a single colour but is not really appropriate for image processing, the code is not vectorised and will be extremely slow, please see other packages such as https://scikit-image.org/, https://opencv.org/ or https://colour-science.org/. Disclaimer, I maintain the latter.