to calculate histogram features

3 views (last 30 days)
to calculate histogram features using the equation in the following link,.....
will it work if i use imhist function..... but how to implement the summation with the values i....... please do reply....

Accepted Answer

Walter Roberson
Walter Roberson on 6 Feb 2013
Yes, you could use imhist(), but remember you need to break the image up into MxM blocks, and imhist() is a more expensive calculation than hist() or histc() is.
  5 Comments
Walter Roberson
Walter Roberson on 6 Feb 2013
"where histo(i) is the value of the histogram with the intensity i"
so you need to be concerned with the output that reflects histogram values, not histogram intensities.
I think that "H = arg i max(histo(i))" is intended to mean that H is the "i" such that histo(i) is the maximum -- that is, the index of the maximum intensity.
And you still need to think more about what bin centers or edges you are going to pass in to the histogram routine you choose.
Elysi Cochin
Elysi Cochin on 6 Feb 2013
sir please could you show me how to write the code for what u explained above for a image as a whole..... please reply sir....

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!