フィルターのクリア

How do I calculate the mean, maximum, minimum and std of the detected region of an image?

1 回表示 (過去 30 日間)
vaishali
vaishali 2013 年 9 月 7 日
detected region in binary image
  2 件のコメント
vaishali
vaishali 2013 年 9 月 7 日
編集済み: Walter Roberson 2013 年 9 月 11 日
columnwise processed used function:
[xmax,imax,xmin,imin] = extrema(BW(:,i));
obtain Result:
[],[],[],[]
Randy Souza
Randy Souza 2013 年 9 月 24 日
I have changed the question and description back to the original values.

サインインしてコメントする。

回答 (1 件)

Image Analyst
Image Analyst 2013 年 9 月 7 日
Assuming img is your gray scale image, and BW is a binary image specifying the "detected region":
meanValue = mean(img(BW));
minValue = min(img(BW));
maxValue = max(img(BW));
stdDev = std(img(BW));
Those values refer to the values in your gray scale image, not the binary image.
  3 件のコメント
Image Analyst
Image Analyst 2013 年 9 月 8 日
編集済み: Image Analyst 2013 年 9 月 8 日
My answer is very confusing now because you removed the edited the original subject and body so that it's now a totally different question. I'd recommend not doing that again. It would have been better to just add a followup question here or start a totally new discussion.
You're not using active contours and I don't even know what your loop is now trying to do. Are you trying to find the first and last place on each line where the binary image is true (1)? Or the distance between them?
Image Analyst
Image Analyst 2013 年 9 月 8 日
That didn't answer my questions. I just sort of asked one of me. Do you still need help? If so, please state more clearly what you're after.

サインインしてコメントする。

Community Treasure Hunt

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

Start Hunting!

Translated by