code for horizontal projection profile of an image

7 Ansichten (letzte 30 Tage)
saleem
saleem am 6 Aug. 2012
Kommentiert: Walter Roberson am 23 Jan. 2016
hello friends, to perform skew detection and correction, iam using horizontal projection profile. so i need the code for horizontal projection profile to segment lines and i need the code for horizontal projection profile of each word, for image containing handwritten characters.

Antworten (4)

Image Analyst
Image Analyst am 6 Aug. 2012
First pick an algorithm from section 23 of the Vision Bibliography: http://iris.usc.edu/Vision-Notes/bibliography/contents.html. Then come back here with your MATLAB coding questions.

Walter Roberson
Walter Roberson am 6 Aug. 2012

luong v
luong v am 2 Dez. 2015
Bearbeitet: luong v am 2 Dez. 2015
Hi every one, I have a license plate, now I want to use horizontal projection to segment the license plate into two lines. Please help me, Thanks you
  1 Kommentar
Image Analyst
Image Analyst am 2 Dez. 2015
verticalProjection = mean(grayImage, 2);
horizontalProjection = mean(grayImage, 1);

Melden Sie sich an, um zu kommentieren.


Rujal
Rujal am 22 Jan. 2016
how to plot horizontal projection horizontally ? I didn't get idea.
  5 Kommentare
Image Analyst
Image Analyst am 23 Jan. 2016
But what if, in handwriting, descenders in one row dip below some risers in the row below? Those two rows would not be detected as two rows with any(). And with sum() and mean(), the descenders would get clipped. So to be really robust, you'd need something more sophisticated than these simple functions. But I can't spend the time to develop a robust OCR program for anyone.
Walter Roberson
Walter Roberson am 23 Jan. 2016
You need the ascenders and descenders for proper classification of the characters. Horizontal projection is simply not sufficient for the case where you do not have clean separation between the lines.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Startup and Shutdown finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by