i want a matlab code for segmenting cursive alphabets using horizontal and vertical projection
古いコメントを表示
how to use projection for segmenting basically
回答 (1 件)
Image Analyst
2014 年 3 月 2 日
There is no OCR toolbox. You can find OCR algorithms here: http://iris.usc.edu/Vision-Notes/bibliography/contentschar.html#OCR,%20Document%20Analysis%20and%20Character%20Recognition%20Systems Pick one and code it up.
To project, you can use this
verticalProjection = sum(theImage, 2);
horizontalProjection = sum(theImage, 1);
You can use mean instead of sum if you want.
カテゴリ
ヘルプ センター および File Exchange で Language Support についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!