how to plot intensity graph for an image

2 visualizzazioni (ultimi 30 giorni)
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 Commento
Vedpal Singh
Vedpal Singh il 30 Dic 2014
Hello,
To sort out this problem, I think improfile command is the best option.
VP Singh

Accedi per commentare.

Risposta accettata

Dishant Arora
Dishant Arora il 22 Feb 2014
Modificato: Dishant Arora il 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 Commenti
saravanan.R
saravanan.R il 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 il 23 Feb 2014
Modificato: Dishant Arora il 23 Feb 2014
If the eye is closed distance between the two deep valleys would increase. As eyelashes would go down.

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by