用法:
cucim.skimage.color.convert_colorspace(arr, fromspace, tospace)
将图像数组转换为新的色彩空间。
- 有效的色彩空间是:
‘RGB’、‘HSV’、‘RGB CIE’、‘XYZ’、‘YUV’、‘YIQ’、‘YPbPr’、‘YCbCr’、‘YDbDr’
- arr:(…, 3) 数组
要转换的图像。最终维度表示渠道。
- fromspace:str
要转换的颜色空间。可以指定为小写。
- tospace:str
要转换到的色彩空间。可以指定为小写。
- out:(..., 3) ndarray
转换后的图像。与输入相同的尺寸。
- ValueError
如果 fromspace 不是有效的颜色空间
- ValueError
如果 tospace 不是有效的颜色空间
参数:
返回:
抛出:
注意:
转换是通过“central” RGB 颜色空间执行的,即从 XYZ 到 HSV 的转换是作为
XYZ -> RGB -> HSV
而不是直接实现的。例子:
>>> import cupy as cp >>> from cucim.skimage import data >>> img = cp.array(data.astronaut()) >>> img_hsv = convert_colorspace(img, 'RGB', 'HSV')
相关用法
- Python cucim.skimage.color.combine_stains用法及代码示例
- 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.separate_stains用法及代码示例
- Python cucim.skimage.color.rgb2rgbcie用法及代码示例
- Python cucim.skimage.color.hed2rgb用法及代码示例
- Python cucim.skimage.color.rgb2xyz用法及代码示例
- Python cucim.skimage.color.xyz2lab用法及代码示例
- Python cucim.skimage.color.rgb2grey用法及代码示例
- Python cucim.skimage.color.rgba2rgb用法及代码示例
- Python cucim.skimage.color.xyz2luv用法及代码示例
- Python cucim.skimage.color.lab2lch用法及代码示例
- 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.convert_colorspace。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。