I am converting a grayscale signature image to thin image but not getting the desired output
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/149178/image.png)
after applying the im2bw(img,graythresh(img)) function i get the following image
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/149179/image.png)
but the image is not smooth enough after applying thining on the said image i get the following
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/149181/image.png)
so how to get rid of extra roots from the thin image and get smooth signature skeleton
0 commentaires
Réponse acceptée
Anand
le 17 Sep 2015
It looks like you need to clean up the binary image a little before thinning.
This worked for me:
bw = im2bw(img,graythresh(img));
% remove some of the noisy edges in the mask.
bw_clean = imopen(bw, strel('disk',1));
% remove small foreground objects.
bw_clean = bwareaopen(bw_clean, 25);
% invert the image and thin it.
bw_thin = bwmorph(imcomplement(bw_clean), 'thin', Inf);
9 commentaires
Image Analyst
le 18 Sep 2015
imfill() will fill completely surrounded holes and leave exterior boundaries unchanged. imclose() will fill interior holes and will smooth out exterior boundaries.
Image Analyst
le 18 Sep 2015
Plus de réponses (0)
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!