find maximum and minimum value from a segmented portion...

1 次查看(过去 30 天)
i have segmented image... the unwanted portions are replaced by zero...
now i wanted to find the maximum and minimum value of the segmented regions...
but as i have assigned unwanted portions as zero, everytime minimum value comes as zero... but for some images the segmented portion contains value zero, so how to take the minimum and maximum value from the segmented portion only...

采纳的回答

Walter Roberson
Walter Roberson 2015-5-20
roi = repmat(binaryImage, [1,1, size(origImage,3)]);
origImage(~roi) = 0;
max(origImage(roi))
min(origImage(roi))

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by