find local maxima and local minima
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Input=my image
how to find all the points od 2D local maxima and all points of 2D local minima of input(i,j)
please help
0 comentarios
Respuestas (2)
Mohamed Nedal
el 22 de Nov. de 2017
For Max, you can use findpeaks() function. And for Min, it's the same function but with negative data (i.e. -x).
2 comentarios
Image Analyst
el 22 de Nov. de 2017
findpeaks() works only with vectors (see the help), not with 2-D arrays.
Image Analyst
el 22 de Nov. de 2017
You can use the functions imregionalmax() and imregionalmin() in the Image Processing Toolbox.
1 comentario
Image Analyst
el 22 de Nov. de 2017
Input is the name of a built-in function so don't use that for your variable name. Try this:
localMaxImage = imregionalmax(grayImage);
localMinImage = imregionalmin(grayImage);
Ver también
Categorías
Más información sobre Computer Vision with Simulink en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!