i want a matlab code for segmenting cursive alphabets using horizontal and vertical projection

1 view (last 30 days)
how to use projection for segmenting basically

Answers (1)

Image Analyst
Image Analyst on 2 Mar 2014
To project, you can use this
verticalProjection = sum(theImage, 2);
horizontalProjection = sum(theImage, 1);
You can use mean instead of sum if you want.

Categories

Find more on Statistics and Machine Learning Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!