HOW TO SEGMENT FUSED CHARACTERS ?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
hello everyone!! i am trying to segment touched characters. for example
the above figure shows three characters fused into one. i tried the watershed algorithm and it segmented the above figure into many segments.
which as you can see divides the characters into three parts along with many more segmentation. but the problem is after dilating it it again fuses into one. so can anyone help me with this. or suggest some other method of " SEGMENTING FUSED CHARACTERS "??
btw the code for watersegment which i am using is
j= imread('image 1.png'); d=-bwdist(~j); l=watershed(d); j(l==0)=0; imshow(j);
0 comentarios
Respuestas (1)
Image Analyst
el 4 de Abr. de 2014
The image is very low resolution which makes it hard. Plus I'm not even sure where to split apart the blob even if I were asked to do it manually. It's just not clear. I have no idea how many characters are there and what they might be. Could be anywhere from 3 to 6 but I don't recognize any of them.
2 comentarios
Image Analyst
el 4 de Abr. de 2014
I would not know how to divide up that assortment of blobs into the 3 new assortment of blobs, unless you just want to take the left third, middle third, and right third of the image and see which centroids like in those zones. The horizontal location of the blobs is about the only thing that I see that predictably distinguishes one blob from another.
Ver también
Categorías
Más información sobre Image Segmentation and Analysis en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!