필터 지우기
필터 지우기

Setting Image Contrast Window Auto

조회 수: 10 (최근 30일)
Amjed
Amjed 2011년 3월 8일
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 :)

채택된 답변

Sarah Wait Zaranek
Sarah Wait Zaranek 2011년 3월 8일
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
Amjed
Amjed 2011년 3월 9일
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 2011년 3월 9일
Great. I love that you can edit and improve the answers from feedback. Thanks for your clarification.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Explore and Edit Images with Image Viewer App에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by