Clear Filters
Clear Filters

How can I get the exact intensity change coordinates from graph automatically?

1 view (last 30 days)
I am working on Eye-tracking thing i have to track the eye for open and close. for which I am using the concept of horizontal average intensity change. i have achieved the graph of average intensity change with following piece of code: I1=imread('open.jpg'); I2=rgb2gray(I1); x=(1:size(I2,1)); y=mean(I2,2); plot(x,y) after this plotting i want the intensity change coordinates which i want automatically retrieving from MATLAb in order to calculate the distance between those intensity changes to declare close or open eyes. In attached figure, red mark shows the intensity change points. I want their coordinates automatically from matlab. anybody have idea how to do it?

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!