编程语言
首页 > 编程语言> > 在Python中将RGB转换为实验室的快速方法

在Python中将RGB转换为实验室的快速方法

作者:互联网

是否有使用D50 sRGB在Python3中将RGB转换为LAB的快速方法?

Python-Colormath太慢

skimage使用D65

解决方法:

目前,无法将skimage中的白色参考作为参数传递(欢迎拉动请求),但这是一种解决方法:

from skimage import color
color.colorconv.lab_ref_white = np.array([0.96422, 1.0, 0.82521])
lab = color.rgb2lab(image)

标签:scikit-image,colors,python
来源: https://codeday.me/bug/20191029/1961822.html