用法:
skimage.color.rgb2gray(rgb, *, channel_axis=- 1)
计算 RGB 图像的亮度。
- rgb:(..., 3, ...) 数组
RGB 格式的图像。默认情况下,最终维度表示通道。
- out:ndarray
亮度图像 - 一个与输入数组大小相同的数组,但移除了通道维度。
- ValueError
如果 rgb 不是至少 2-D 形状 (..., 3, ...)。
参数:
返回:
抛出:
注意:
此转换中使用的权重针对当代 CRT 荧光粉进行了校准:
Y = 0.2125 R + 0.7154 G + 0.0721 B
如果存在 Alpha 通道,则将其忽略。
参考:
例子:
>>> from skimage.color import rgb2gray >>> from skimage import data >>> img = data.astronaut() >>> img_gray = rgb2gray(img)
相关用法
- Python skimage.color.rgb2rgbcie用法及代码示例
- Python skimage.color.rgb2xyz用法及代码示例
- Python skimage.color.rgb2hsv用法及代码示例
- Python skimage.color.rgb2hed用法及代码示例
- Python skimage.color.rgba2rgb用法及代码示例
- Python skimage.color.rgbcie2rgb用法及代码示例
- Python skimage.color.lab2lch用法及代码示例
- Python skimage.color.convert_colorspace用法及代码示例
- Python skimage.color.combine_stains用法及代码示例
- Python skimage.color.xyz2rgb用法及代码示例
- Python skimage.color.separate_stains用法及代码示例
- Python skimage.color.hsv2rgb用法及代码示例
- Python skimage.color.lch2lab用法及代码示例
- 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.rgb2gray。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。