Bacterial Cell Segmentation - Ignoring touching bacterial cells

3 次查看(过去 30 天)
I’m creating a program that will take in cell images (160810_rpoEdel_13.jpg) and segment the image to identify individual cells’ centroid location and pixel intensity values. So far, by using sobel edge detection and regionprops to filter out things that are too big, my program can remove most clusters and returns an image that is pretty decent. However, there some touching cells that pass through the filters (segmentedImage.jpg).
Is there another / better way to ignore or filter out the touching cells? Or a better way to segment them?

采纳的回答

Image Analyst
Image Analyst 2017-7-20
编辑:Image Analyst 2017-7-20
The binary image doesn't even look like it came from the same image. You can check solidity to find out which blobs are touching, assuming one of them is at an angle to the other.
By the way, I don't think I'd use Sobel filter - it already looks kind of like a Sobel filtered image. Anyway, you can get a decent binary image just by taking the red channel and thresholding it at 110.
  1 个评论
Matthieu
Matthieu 2017-7-20
Yes, you're right, the binary image is from a different image and I forgot to update it. The solidity region prop works well enough to remove most touching cells.
Thanks!

请先登录,再进行评论。

更多回答(1 个)

MathWorks Medical Imaging Team
编辑:MathWorks Medical Imaging Team 2023-6-20
As IA mentioned, we cant locate the failing cases.
You could try the Cellpose plugin (23b Prerelease) which appears to do well with this image.
(You can tweak the cell diameter to get better results, potentially running it twice - once for small cells and once for large cells and then doing a non-max supression)

类别

Help CenterFile Exchange 中查找有关 Convert Image Type 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by