imshow(I, [low high]

The help manual shows how to scale a (grayscale) image using low and high
imshow(I, [low high]
It doesn't tell you how to extract the values that have been used. Is this possible to take a current image and obtain the low and high values?
thanks Jason

1 Comment

duplicate is at http://www.mathworks.com/matlabcentral/answers/13292-extract-imadjust-values

Sign in to comment.

Answers (2)

Andreas Goser
Andreas Goser on 11 Aug 2011

0 votes

The choice of the LOW and HIGH parameters is depending on your application. The lowest and highest values of your picture (you could obtain with MIN and MAX commands) may not the most useful parameters.

3 Comments

Jason
Jason on 11 Aug 2011
I actually use this:
J = imadjust(IM,stretchlim(IM),[0 1]);
imshow(J);
Then I have a second image that I want to be scaled to the same values and so want to extract the scaling from the 1st image.
Jason, please do not open multiple questions on the same topic.
Jason
Jason on 17 Aug 2011
Sorry Walter!
Jason

Sign in to comment.

Image Analyst
Image Analyst on 11 Aug 2011
Jason, you don't have to know. Simply do it this way:
imshow(imageArray, []);
and it will do it for you.

Categories

Find more on Environment and Settings in Help Center and File Exchange

Asked:

on 11 Aug 2011

Community Treasure Hunt

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

Start Hunting!