フィルターのクリア

Setting Image Contrast Window Auto

7 ビュー (過去 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 Center および File ExchangeExplore 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