用法:
cucim.skimage.color.lab2lch(lab)
CIE-LAB 到 CIE-LCH 颜色空间转换。
LCH 是 LAB(笛卡尔)色彩空间的圆柱表示
- lab:(…, 3) 数组
CIE-LAB 格式的 N-D 图像。最后一个(
N+1
-th)维度必须至少有 3 个元素,对应于L
,a
和b
颜色通道。复制后续元素。
- out:(..., 3) ndarray
LCH 格式的图像,在 N-D 数组中,与输入
lab
具有相同的形状。
- ValueError
如果
lch
没有至少 3 个颜色通道(即 l、a、b)。
参数:
返回:
抛出:
注意:
色调表示为
(0, 2*pi)
之间的角度例子:
>>> from skimage import data >>> from cucim.skimage.color import rgb2lab, lab2lch >>> img = cp.array(data.astronaut()) >>> img_lab = rgb2lab(img) >>> img_lch = lab2lch(img_lab)
相关用法
- Python cucim.skimage.color.lch2lab用法及代码示例
- Python cucim.skimage.color.rgb2gray用法及代码示例
- Python cucim.skimage.color.hsv2rgb用法及代码示例
- Python cucim.skimage.color.rgb2hed用法及代码示例
- Python cucim.skimage.color.rgb2hsv用法及代码示例
- Python cucim.skimage.color.combine_stains用法及代码示例
- Python cucim.skimage.color.separate_stains用法及代码示例
- Python cucim.skimage.color.rgb2rgbcie用法及代码示例
- Python cucim.skimage.color.hed2rgb用法及代码示例
- Python cucim.skimage.color.rgb2xyz用法及代码示例
- Python cucim.skimage.color.convert_colorspace用法及代码示例
- Python cucim.skimage.color.xyz2lab用法及代码示例
- Python cucim.skimage.color.rgb2grey用法及代码示例
- Python cucim.skimage.color.rgba2rgb用法及代码示例
- Python cucim.skimage.color.xyz2luv用法及代码示例
- Python cucim.skimage.color.rgbcie2rgb用法及代码示例
- Python cucim.skimage.color.xyz2rgb用法及代码示例
- Python cucim.skimage.feature.shape_index用法及代码示例
- Python cucim.skimage.restoration.richardson_lucy用法及代码示例
- Python cucim.skimage.util.invert用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cucim.skimage.color.lab2lch。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。