Borrar filtros
Borrar filtros

How to extract point of interest from plotted graph?

1 visualización (últimos 30 días)
Usman
Usman el 19 de Nov. de 2015
Comentada: Usman el 19 de Nov. de 2015
I have plotted the graph by calculating this average horizontal values and then calculate their local minima points. Now I want to extract to two minima points which are my point of interest and then calculate distance between them. These point of interest are marked in graph with outline. these points are 2nd and 5th minima i.e first valley from negative to positive and second valley from positive to negative. can anyone help me out?
I1=imread('open.jpg');
I2=rgb2gray(I1);
figure, title('open');
plot(1:size(I2,1), mean(I2,2));
hold on
horizontalAverages = mean(I2 , 2);
plot(1:size(I2,1) , horizontalAverages)
[Minimas locs] = findpeaks(-horizontalAverages)
plot(locs , -1*Minimas , 'r*')
Minimas =
-86.5647
-80.3647
-81.3588
-106.9882
-77.0765
-77.8235
-92.2353
-106.2235
-115.3118
-98.3706
locs =
30
34
36
50
93
97
110
121
127
136

Respuestas (1)

Walter Roberson
Walter Roberson el 19 de Nov. de 2015
In your code, they are going to be located at locs(2) = 34 and locs(5) = 93, so the distance between them will be 93-34
  1 comentario
Usman
Usman el 19 de Nov. de 2015
yes roberson, i know. but actually i want to extract these points automatically from MATLAB. I mean i dont have to look up at graph. MATLAB do this for me.

Iniciar sesión para comentar.

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by