How to find peaks in 3d mesh?

80 visualizaciones (últimos 30 días)
OldCar
OldCar el 6 de Abr. de 2016
Comentada: Cristian Alistarh el 7 de Jul. de 2020
Hi, I have a mesh made from data ([Y,X] matrix and Z values) and I would like to find the peaks and report their position. How can I do it?

Respuesta aceptada

Mike Garrity
Mike Garrity el 6 de Abr. de 2016
Editada: Mike Garrity el 6 de Abr. de 2016
If your X & Y are monotone, and you have the Image Processing Toolbox, then the imregionalmax function is pretty robust. It handles all of the special cases like flat regions.
[x,y] = meshgrid(linspace(-3,3,10));
z = 10*ones(10,10);
z(2:4,2:4) = 22;
z(6:8,6:8) = 33;
z(2,7) = 44;
z(3,8) = 45;
z(4,9) = 44
surf(x,y,z,'FaceColor','interp')
ix = find(imregionalmax(z));
hold on
plot3(x(ix),y(ix),z(ix),'r*','MarkerSize',24)
  2 comentarios
OldCar
OldCar el 6 de Abr. de 2016
Editada: OldCar el 11 de Abr. de 2016
I have a big set of values and it say that index exceeds matrix dimensions. What can I do?
Chibuzo Nnonyelu
Chibuzo Nnonyelu el 13 de Dic. de 2018
You need to use the meshed X and Y. As in, fetched your ix indices from the meshed X and Y.

Iniciar sesión para comentar.

Más respuestas (2)

donghun lee
donghun lee el 3 de Jul. de 2018
Same Error :)

Cristian Alistarh
Cristian Alistarh el 17 de Jun. de 2020
Editada: Cristian Alistarh el 17 de Jun. de 2020
I think you got this error:
Index exceeds the number of array elements
As stated above, you need to use the meshed X and Y.
Digging further into this, the indicies of the output of the imregionalmax function is given in linear array indicies and not 2D (row, columns) as one would normally expect. I had the same problem and another way to solve this is to use the convert linear indices to subscripts function ind2sub
ix = find(imregionalmax(z));
[a,b] = ind2sub(size(z),ix);
plot3(x_init(a),y_init(b),z(a,b),'r*','MarkerSize',24)
I am not sure if it will give you 100% what you are looking for, but explains the previous behaviour and another way on how to fix it.
  5 comentarios
Memo Remo
Memo Remo el 20 de Jun. de 2020
Cristian Alistarh
Cristian Alistarh el 7 de Jul. de 2020
OK, sounds better than my suggestion.

Iniciar sesión para comentar.

Categorías

Más información sobre Spectral Measurements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by