Clear Filters
Clear Filters

how to plot intensity graph for an image

3 views (last 30 days)
hi, i want to plot a intensity graph of an image like this
for an image
to find out the either closed or opened state of eye. i need this for my project. thank you
  1 Comment
Vedpal Singh
Vedpal Singh on 30 Dec 2014
Hello,
To sort out this problem, I think improfile command is the best option.
VP Singh

Sign in to comment.

Accepted Answer

Dishant Arora
Dishant Arora on 22 Feb 2014
Edited: Dishant Arora on 22 Feb 2014
Convert it to grayscale and take mean along the rows using mean(I,2)
I = rgb2gray('fullfilename')
plot(1:size(I,1) , mean(I,2));
  5 Comments
saravanan.R
saravanan.R on 23 Feb 2014
i got this graph for a above eye image. can i find out the state of the eye whether it is closed or not using this intensity graph. if not means can u tel me any other method to do so. eye state detection is important section in my project. can u help me
Dishant Arora
Dishant Arora on 23 Feb 2014
Edited: Dishant Arora on 23 Feb 2014
If the eye is closed distance between the two deep valleys would increase. As eyelashes would go down.

Sign in to comment.

More Answers (0)

Categories

Find more on Graph and Network Algorithms in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!