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

1 次查看(过去 30 天)
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.

回答(2 个)

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

Image Analyst
Image Analyst 2021-11-15
编辑:Image Analyst 2021-11-15
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 个评论
John Henderson
John Henderson 2021-11-17
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 2021-11-17
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.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by