how to calculate vertical and horizontal projection histogram for an image

7 Ansichten (letzte 30 Tage)
Hi guys I am doing a project on offline signature recognition and verification. I hove done till thining process of an image. Now i need to calculate vertical and horizontal projection histogram for this image. Can any body suggest me some code for this. Thanks.

Akzeptierte Antwort

Jakob Sørensen
Jakob Sørensen am 17 Apr. 2012
Let me see if I get this right... You want to make a histogram, but instead of having a color intensity as bin numbers, you want to use the different rows/columns for bins?
  3 Kommentare
Rageeni sah
Rageeni sah am 17 Apr. 2014
Hello there, I want to know that when we plot horizontal/vertical histogram of an image, what information can we get from the histogram??
Image Analyst
Image Analyst am 17 Apr. 2014
I don't think he meant histogram. He probably just doesn't know the the proper terminology. If you sum an image across or down you get the profile or projection, not histogram. If you have a binary image of text, then the histogram of the projections doesn't really tell you much of any use . But by looking at the projection you can determine where lines of text start and stop. Start your own thread and post your own image if you want specific help.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (4)

Rujal
Rujal am 20 Jan. 2016
can anyone please help me to create feature vector of vertical and horizontal projection histogram. please give me a matlab code on rujubhandari007@gmail.com . . . Thanks in advance
  1 Kommentar
Image Analyst
Image Analyst am 20 Jan. 2016
Not sure what that means. A projection of data along a dimension, and a histogram (frequency distribution) are different things. Start your own question and attach your data and what you'd like to get from it.

Melden Sie sich an, um zu kommentieren.


Walter Roberson
Walter Roberson am 17 Apr. 2012
sum(YourImage,1) %vertical projection
sum(YourImage,2) %horizontal projection
This assumes YourImage is binary. If it isn't, you need to define what you mean by "projection" of multiple colors.

si sam
si sam am 8 Okt. 2015
to Jyoti : did you get it?

Paramesh
Paramesh am 16 Okt. 2015
I got it.Nice.
  2 Kommentare
si sam
si sam am 21 Okt. 2015
i would be thankful if can you please show me how you drew vertical and horizontal histograms?

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by