how to find a local minima for a continuous waveform ?

조회 수: 11 (최근 30일)
v gnanaprakash
v gnanaprakash 2012년 8월 8일
I am working on image processing. I want to find the local minima of a particular area in an image.
Thank you in advance.

답변 (2개)

John Petersen
John Petersen 2012년 8월 8일
min(min(X))
  댓글 수: 2
Image Analyst
Image Analyst 2012년 8월 8일
That's a global min value, not a local min.
John Petersen
John Petersen 2012년 11월 2일
not if X is limited to the area of interest. but it does have to be rectangular-ish.

댓글을 달려면 로그인하십시오.


Image Analyst
Image Analyst 2012년 8월 8일
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);

Community Treasure Hunt

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

Start Hunting!

Translated by