how to find a local minima for a continuous waveform ?
8 views (last 30 days)
Show older comments
I am working on image processing. I want to find the local minima of a particular area in an image.
Thank you in advance.
0 Comments
Answers (2)
John Petersen
on 8 Aug 2012
min(min(X))
2 Comments
John Petersen
on 2 Nov 2012
not if X is limited to the area of interest. but it does have to be rectangular-ish.
Image Analyst
on 8 Aug 2012
You can find local min using the imregionalmin() function to produce a binary image of where the local mins are.
binaryImage = imregionalmin(grayImage);
Use find() or regionprops() if you want the row and column coordinates.
[rows columns] = find(binaryImage);
Use indexing if you want to know what the values at those min locations are.
localMinGrayValues = grayImage(binaryImage);
0 Comments
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!