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

回答 (1 件)

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 ExchangeLanguage Support についてさらに検索

質問済み:

2014 年 3 月 2 日

回答済み:

2014 年 3 月 2 日

Community Treasure Hunt

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

Start Hunting!

Translated by