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

Respuestas (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.

Categorías

Preguntada:

el 2 de Mzo. de 2014

Respondida:

el 2 de Mzo. de 2014

Community Treasure Hunt

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

Start Hunting!

Translated by