I have to find the local minima and maxima corresponding to the "peaks" and "valleys" of a data file.

1 view (last 30 days)
Given this data file (which contains two vectors for x and y coordinates along with a 2D matrix corresponding to altitude), I have to find the specific local maxima and minima (coordinates and altitude) that correspond to the "peaks" and "valleys" of the data (excluding hills on the borders of the plot). After plotting the altitude matrix using surf, it's easy to see that there are three obvious peaks and three obvious valleys, but I'm not sure how to find specific coordinates or altitude. How should I do this? I'm sure the way to do it is by writing a specific loop that allows you to examine the points to find the largest ones, but I've been messing around with it for a while and haven't gotten anywhere. For reference, I've been told that I can't use add-ons or toolboxes that would simplify this procedure, so that's made it a lot more annoying.

Answers (2)

Sulaymon Eshkabilov
Sulaymon Eshkabilov on 14 Nov 2021
Have you worked with fminsearch() fcn of optimization toolbox:
https://www.mathworks.com/help/matlab/ref/fminsearch.html

Image Analyst
Image Analyst on 15 Nov 2021
Edited: Image Analyst on 15 Nov 2021
You can try imregionalmin() and imregionalmax() to find where the local max and min lie.
Also see Steve's blog on finding peaks in 2-D images:
  2 Comments
John Henderson
John Henderson on 17 Nov 2021
Don't both those functions require the image processing toolbox? I've definitely explored that route, but I'm more interested in doing this without the use of additional toolboxes that I have to install.
Image Analyst
Image Analyst on 17 Nov 2021
Yes. However you can simply do a brute force search. Search every location in the array and see if it's greater than or equal to any other elements in the local window. Shouldn't take too long for a few million pixels.

Sign in to comment.

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!