用法:
skimage.color.lch2lab(lch, *, channel_axis=- 1)
CIE-LCH 到 CIE-LAB 颜色空间转换。
LCH 是 LAB(笛卡尔)色彩空间的圆柱表示
- lch:(..., 3, ...) 数组
CIE-LCH 格式的 N-D 图像。最后一个(
N+1
-th)维度必须至少有 3 个元素,对应于L
、a
和b
颜色通道。复制后续元素。- channel_axis:int 可选
该参数指示数组的哪个轴对应于通道。
- out:(..., 3, ...)
LAB 格式的图像,与输入 lch 的形状相同。
- ValueError
如果 lch 没有至少 3 个颜色通道(即 l、c、h)。
参数:
返回:
抛出:
例子:
>>> from skimage import data >>> from skimage.color import rgb2lab, lch2lab, lab2lch >>> img = data.astronaut() >>> img_lab = rgb2lab(img) >>> img_lch = lab2lch(img_lab) >>> img_lab2 = lch2lab(img_lch)
相关用法
- Python skimage.color.lab2lch用法及代码示例
- Python skimage.color.convert_colorspace用法及代码示例
- Python skimage.color.rgb2rgbcie用法及代码示例
- Python skimage.color.rgb2xyz用法及代码示例
- Python skimage.color.combine_stains用法及代码示例
- Python skimage.color.xyz2rgb用法及代码示例
- Python skimage.color.rgba2rgb用法及代码示例
- Python skimage.color.separate_stains用法及代码示例
- Python skimage.color.rgb2gray用法及代码示例
- Python skimage.color.rgb2hsv用法及代码示例
- Python skimage.color.rgbcie2rgb用法及代码示例
- Python skimage.color.hsv2rgb用法及代码示例
- Python skimage.color.rgb2hed用法及代码示例
- Python skimage.color.xyz2lab用法及代码示例
- Python skimage.color.hed2rgb用法及代码示例
- Python skimage.feature.graycomatrix用法及代码示例
- Python skimage.draw.random_shapes用法及代码示例
- Python skimage.feature.blob_doh用法及代码示例
- Python skimage.feature.blob_dog用法及代码示例
- Python skimage.filters.unsharp_mask用法及代码示例
注:本文由纯净天空筛选整理自scikit-image.org大神的英文原创作品 skimage.color.lch2lab。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。