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 Exchange에서 Language 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