how to plot intensity graph for an image
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
saravanan.R
il 22 Feb 2014
Commentato: Vedpal Singh
il 30 Dic 2014
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
il 30 Dic 2014
Hello,
To sort out this problem, I think improfile command is the best option.
VP Singh
Risposta accettata
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
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.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Eye Tracking in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
