美文网首页
02 基于显微图像的自动细胞计数

02 基于显微图像的自动细胞计数

作者: Takkum | 来源:发表于2017-11-13 00:09 被阅读0次

Introduction:
对于varied细胞图片,很难有一个适用性广的细胞计数算法。有很多人在研究自动聚类和细胞计数。本文用直方图信息来分离物体与背景,用flood fill(泛洪填充) 算法来填充目标,然后通过blob analysis(团块,连通域分析)来识别细胞。如果连通域面积比阈值大,这个连通域就用K-means clustering算法分割。(这里算是启发的地方吧!怎么用K均值聚类有待考虑)通过计算每个连通域里包含的细胞数,可以获得整个图片的细胞数目。

Segmentation of the cell image:
A 、 flood fill algorithm
一种区域填充算法,本质是种子生长算法。用来标记或者分割一些区域,为后续的图像处理分析做准备。它需要确定种子点,然后根据种子点和周围(8邻域或者4邻域)像素是否联通来决定要不要填充___(填充什么东西)。

It needs to determine seed points, then determines whether to be filled by judging neighbor pixel whether communicating with the seed or not, until all pixels in the region are found or the boundary of the region is reached.

B、Segmentation of image
这个系统用了region segmentation来分割细胞图像。分割结果are got by 直方图双阈值。。。

. The segmentation results are got by using histogram dual-threshold which has adjustable upper threshold and lower threshold.

直方图信息还可以快速准确地定位到合适的初始种子生长点。然后使用flood fill 算法填充目标区域。这个方法能够在完成每一步分割和填充以后,real-time展示图片。

(a) a blood cell image (b) the result of segmentation and filling of the blood cell image (a)a Rod-shaped(杆状) cell image in low intensity lighting (b) the result of segmentation and filling of the rod-shaped cell image (a) a colonies cell image (b) the result of segmentation and filling of the colonies cell image
(colonies 意思是群落,聚群,可能不是粘连细胞的意思!)
从以上这些结果图可以看出,本文的segmentation and filling方法能够被应用到不同形状的细胞中去。

Cell Detection:
A、 Blob Analysis
Blob Analysis 就是分析具有相似性质的连通区域。在图片处理中,就是指一个像素块有相似的影响特征(颜色,结构)并且是由空间中的联通区域构成的。
Blob是指图像中的具有相似颜色、纹理等特征所组成的一块连通区域

it refers to a pixel block which has similar image characteristics (color, texture, etc.) and is constituted by the connected domain in space.

由于联通区域分析是对于封闭的目标形状的处理方法,所以在进行blob analysis之前,把图片分割成联通域像素的集合和背景像素的集合是有必要的。

Because blob analysis is a processing method for closed objective shape, it is necessary to segment image into collection of pixels about and local background before doing blob analysis.

blob analysis 由灰度图片而来(要先进行灰度处理),图片需要被划分成目标像素和背景像素。这一步骤通过直方图分割来实现。

B、 Cell detection using blob analysis
每个object被blob analysis method 有很多属性,比如centroid(质心), roundness(圆的程度)。一个container保存一张细胞图片里blobs的总数,第二个和第三个container保存各个blobs的面积和centroid。

下面是通过blob analysis来识别细胞的算法步骤:
1、遍历整张图片找到所有的blobs,计算他们的面积。定义三个containers,第一个存找到的连通区域,第二个存连通区域的面积,第三个存连通区域的centroids。
2、如果找到的blob的面积比最小的面积阈值还小,那么这个blob是noise,不处理它。
3、如果找到的blob的面积比最大的面积阈值还大,那么这个blob是粘连细胞(adherent cell),需要被分割成subblob。
4、把subblob插入到第一个container里,把subblob的centroid存到第三个container里,更新containers的信息。
5、subblob的数量就是在blob(面积大的)中包含的细胞数量。没有被分割的blob看做一个细胞。

Blob Segmentation:
A、 K-means clustering
K均值聚类在模式识别中被广泛运用。它指定一个K作为样本集合的初始聚类中心,聚类结果是由K个聚类中心所反应的。基于一个给定的聚类目标函数或是聚类准则,这个算法采用迭代更新方法。每一步迭代都向着目标函数值减小的方向靠近。最后的聚类结果是使得目标函数的值最小,把它得到的结果作为聚类结果。

目标函数
其中,K代表初始的聚类中心(数目),nj代表第j类里面样本的数目,xi代表第i个样本,mj代表第j类的聚类中心。
下面是K均值聚类的算法步骤:
1、随机从样本集中选择K个样本作为初始的聚类中心点。
2、分别计算每个样本到K个聚类中心点的距离,然后根据最小距离重新分配对应目标的聚类范围。(不是这个意思,具体再百度一下)
3、重新计算聚类中心点。
4、循环step2和step3知道每个聚类中心点都不在变化。
(具体实现ML那门课上有,也可以百度)
B、 Blob segmentation using K-means clustering
K means clustering的结果取决于初始聚类中心的好坏。把面积大的blob拿过来聚类。 the result of identification of the blood cell image
the result of
identification of the rod-shaped cell imagthe result of identification of the rod-shaped cell imag
the result of identification of the colonies
cell imagethe result of identification of the colonies cell image

整个流程:

It initially segments the cell image by combining histogram information with Floodfill method, then using blob analysis detects blobs in the whole image, and using K-means clustering segments the blobs which have size beyond the upper threshold of area , finally, the number of cells in the image is obtained accurately.

相关文章

  • 02 基于显微图像的自动细胞计数

    Introduction:对于varied细胞图片,很难有一个适用性广的细胞计数算法。有很多人在研究自动聚类和细胞...

  • 05用于细胞计数的Automatic adaptation of

    Introduction:对不同种类的细胞图像进行计数。目前有很多自动计数的工具,但是主要存在以下两个问题:1、自...

  • 01用Distance Mapping对Clustered细胞计

    Introduction:血球计数。如果血球细胞数量异常,可能说明你患有疾病。人工计数是通过显微镜观察血细胞切片,...

  • MINI TALK:InCellis智能成像系统轻松进行细胞计数

    细胞计数通常用显微镜和血细胞计数仪手工进行。然而,人工方法的准确性和可靠性是有限的,更是一个耗时的过程。 你是否正...

  • 2022-05-19

    Nat Mac Int | 弱监督机器学习用于显微图像的检测、计数和分割 原创苏安图灵基因2022-05-19 1...

  • 【王兴国营养特训班】第5期第10课5组迎霞

    细胞 搜集人体典型细胞的高清图片,了解并学习生理功能。驱动蛋白驱动蛋白的显微图像,即中央黄色的物体,它被喻为分子马...

  • ARC自动管理引用计数

    ARC自动管理引用计数 ARC介绍 ARC其实也是基于引用计数,只是编译器在编译时期自动在已有代码中插入合适的内存...

  • 细胞凋亡检测方法

    细胞凋亡检测方法 一、细胞凋亡的形态学检测 1光学显微镜和倒置显微镜 (1)未染色细胞:凋亡细胞的体积变小、变形,...

  • Automatic Brain Tumor Detection

    基于区域生长和水平集演化的多模态MRI图像自动检测和分割 摘要   神经胶质瘤是一种起源于神经胶质细胞的脑肿瘤。大...

  • CytoTRACE 原理及代码解释

    CytoTRACE是一款基于单细胞计数矩阵推测细胞间活性和细胞间相对分化状态的一款软件,这里我们结合实际代码例子,...

网友评论

      本文标题:02 基于显微图像的自动细胞计数

      本文链接:https://www.haomeiwen.com/subject/mabgmxtx.html