I want to thin handwritten characters like shown below:
Code below give my expected result:
BW = imread('s.png');
BWI = imcomplement(BW);
BW2D = im2bw(BWI,0.1);
BWT = bwmorph(BW2D,'thin',Inf),
BWFinal = imcomplement(BWT);
figure, imshow(BWFinal);
Is this the correct approach? Or is there another way to do it in MATLAB?