Is this possible to convert a thick line or curve into its thinner version

11 views (last 30 days)
Is this possible to convert a thick line or curve into its thinner version in an image using Matlab / Octave? Please view the image. Right side curves (alphabets) are thicker and need to be converted into the left ones. i.e., a single line version is needed.
thanks

Accepted Answer

Ahmet Cecen
Ahmet Cecen on 18 Nov 2014
Take an image with the best exposure possible, having high contrast between the paper white and font black. Use a simple tresholding method like Otsu's and get a BW binary image. Use:
a) erosion (imerode) with a disk structural element (strel)
or
b) use bwulterode
or
c) you can also use bwmorph with 'skel' option.
I am sure there are other ways to do it too. Just a couple simple ones that might help start.
  3 Comments
Ahmet Cecen
Ahmet Cecen on 20 Nov 2014
What's happening there is you are eroding on the white instead of black. You need to invert the image using:
BW=1-BW;
so that the pixels where the letters are have 1's on them (which means your image should have white letters and black background). Now try them again. I think Image Analyst is right the first 2 options would only work in very specific conditions, but give them a try anyways its good learning experience.
Image Analyst
Image Analyst on 20 Nov 2014
Then why did you accept it. If you had used my answer, it would have worked.

Sign in to comment.

More Answers (2)

Image Analyst
Image Analyst on 18 Nov 2014
You can skeletonize it after thresholding.
binaryImage = grayImage < 128; % or whatever.
skeletonImage = bwmorph(binaryImage, 'skel', inf);
You cannot use imerode() because it will break apart your object into multiple objects. You cannot use bwulterode because it will shrink the blob down to a single point.
  2 Comments
Image Analyst
Image Analyst on 20 Nov 2014
Edited: Image Analyst on 20 Nov 2014
It did not work because you did not do what I recommended . Look at the line where I thresholded. It will take everything that is darker than 128 and turn it white. Why did you not do that? You should notice that I even specifically said NOT to use bwulterode() or imerode(). All I can figure is that this reply was really meant for Ahmet, not for me. I know you accepted his answer already, but if you need any more help, feel free to ask.

Sign in to comment.


baby
baby on 24 Nov 2014
Thanks for your reply. This is first time I asked a question on Matlab forum. I tried techniques from both replies and I wanted to accept answers from both. I prepared reply for both. Regarding accepting answers, I did it for the top one first, then the system did not allow me to do this for the next. Please do not take it personal.
The original one is already threshold. This is strictly black and white image. I am sending coding for this all
% code
a1 = imread('Bee.png'); a2 = rgb2gray(a1); a = thresh_my(a2); % high contrast image; my own created function imshow(a), [max(max(a)) min(min(a))]
b1 = bwmorph(a2,'skel'); %% not working b2 = bwulterode(a2,'quasi-euclidean'); %% not working
se = strel('disk',11); b3 = imerode(a2,se);% eroded a
b4 = bwmorph(a2,'skel',inf);
figure, subplot(321),imshow(a); title('original') subplot(322), imshow(b1) , title('bwmorph with skel') subplot(323), imshow(b2) , title('bwulterode') subplot(324), imshow(b3) , title('imerode with strel: disk 11') subplot(325), imshow(b4) , title('bwmorph with skel: inf')
%% code ends
  1 Comment
Image Analyst
Image Analyst on 24 Nov 2014
Again, this is not my code. You took the skeleton of a2, which is not the binary image. The binary image is the badly-named "a". So you're still not doing what I suggested - perhaps the poor variable names confused you, that's why I recommend using descriptive variable names like grayImage, binaryImage, skeletonImage, etc. Please attach your original B image that you used so I can try it.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!