用法:
skimage.color.separate_stains(rgb, conv_matrix, *, channel_axis=- 1)
RGB 到染色色彩空间转换。
- rgb:(..., 3, ...) 数组
RGB 格式的图像。默认情况下,最终维度表示通道。
- conv_matrix: ndarray:
G. Landini [1] 说明的污点分离矩阵。
- channel_axis:int 可选
该参数指示数组的哪个轴对应于通道。
- out:(..., 3, ...)
染色颜色空间中的图像。与输入相同的尺寸。
- ValueError
如果 rgb 不是至少 2-D 形状 (..., 3, ...)。
参数:
返回:
抛出:
注意:
color
模块中可用的染色分离矩阵及其各自的色彩空间:hed_from_rgb
:苏木精 + 曙红 + DABhdx_from_rgb
: 苏木精 + DABfgx_from_rgb
: Feulgen + 浅绿色bex_from_rgb
:吉姆萨染色剂:甲基蓝 + 曙红rbd_from_rgb
: FastRed + FastBlue + DABgdx_from_rgb
:甲基绿 + DABhax_from_rgb
:苏木精 + AECbro_from_rgb
:蓝色矩阵苯胺蓝+红色矩阵偶氮胭脂红+橙色矩阵Orange-Gbpx_from_rgb
: 甲基蓝 + 丽春红ahx_from_rgb
: 阿新蓝 + 苏木精hpx_from_rgb
: 苏木精 + PAS
这个实现借鉴了 DIPlib [2] 的一些想法,例如在计算Beer-Lambert 定律时,使用小值进行补偿以避免日志伪影。
参考:
- 1
- 2
- 3
A. C. Ruifrok and D. A. Johnston, “Quantification of histochemical staining by color deconvolution,” Anal. Quant. Cytol. Histol., vol. 23, no. 4, pp. 291-299, Aug. 2001.
例子:
>>> from skimage import data >>> from skimage.color import separate_stains, hdx_from_rgb >>> ihc = data.immunohistochemistry() >>> ihc_hdx = separate_stains(ihc, hdx_from_rgb)
相关用法
- 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.rgb2gray用法及代码示例
- Python skimage.color.rgb2hsv用法及代码示例
- Python skimage.color.rgbcie2rgb用法及代码示例
- Python skimage.color.hsv2rgb用法及代码示例
- Python skimage.color.rgb2hed用法及代码示例
- 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.separate_stains。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。