Segmenatation for an image.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
how can i segment and count the number of non overlapping blood cells in this image :
i need a code for doing this...
0 comentarios
Respuestas (2)
Image Analyst
el 22 de Jul. de 2013
First of all, look over my image segmentation demo. http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862 Then look at how I filter out coins based on size. You need to do the same thing. If they overlap the size will be a lot bigger than if they don't overlap. So you just need to tweak the area value in my code and it should work for you.
9 comentarios
Matt Kindig
el 23 de Jul. de 2013
See my comment immediately above. In general, I think it will be easier to count all cells (overlapped and non-overlapped alike), and remove the overlapping ones.
To identify the overlapping ones, you can (as Image Analyst stated) use an area criterion, removing all identified cells that exceed some threshold area. In my code above, I showed you how to visualize the areas of the various regions. I'll let you implement the logic about how to identify the overlapping cells.
Elad
el 23 de Jul. de 2013
Detecting and counting objects with circular features: http://imageprocessingblog.com/detecting-and-counting-objects-with-circular-features/
0 comentarios
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!