Setting Image Contrast Window Auto

8 views (last 30 days)
Hello every one,
i am trying to edit the intensity or you could say the Viewing Window of a image, i am aiming to have it be done automatically rather than opening the IMTOOLS then pressing on the contrast and setting the window numbers manually. is that possible ??
thanks every one :)

Accepted Answer

Sarah Wait Zaranek
Sarah Wait Zaranek on 8 Mar 2011
imshow will let you specify high and low when you view the image. Syntax here:
imshow(I,[low high])
If you would like to convert a matrix to a grayscale image, you can use the following.
I = mat2gray(A, [amin amax])
If you want to determine an appropriate range of that grayscale image, one of the following may be used.
  • contrast will create a new gray colormap, cmap, that has an approximately equal intensity distribution. See code below.
load clown;
cmap = contrast(X);
image(X);
colormap(cmap);
  • stretchlim will find the limits to adjust (stretch) your contrast. Then you can use imadjust to adjust your image. See code below.
I = imread('pout.tif');
J = imadjust(I,stretchlim(I),[]);
imshow(I), figure, imshow(J)
  • histeq will enhance contrast using histogram equalization. See code below.
I = imread('tire.tif');
J = histeq(I);
imshow(I)
figure, imshow(J)
  6 Comments
Amjed
Amjed on 9 Mar 2011
SARAH.. your new answer is perfect i used the mat2gray code.. and it worked perfectly thaaaaaaaaaaaaaanks alot :) and yes imshow is a bad move since i couldnt extract it to the workspace also
Sarah Wait Zaranek
Sarah Wait Zaranek on 9 Mar 2011
Great. I love that you can edit and improve the answers from feedback. Thanks for your clarification.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!