The image is unviewable
9 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I have an image in tiff format that have a lot of darkness in it. I wanted to know that how to make it view able so that i can see the information.

I have attached the file, kindly guide me how to achieve the target.
Regards
1 件のコメント
Walter Roberson
2017 年 12 月 26 日
(image did not get attached -- note that you might need to zip it in order to attach it)
採用された回答
Walter Roberson
2017 年 12 月 26 日
If it is a grayscale image then use imagesc() or use imshow() with a second argument of [] as in
YourImage = imread('YourFile.tif');
imshow(YourImage, [])
If it is a color image then try
YourImage = imread('YourFile.tif');
ScaledImage = mat2gray(YourImage);
imshow(ScaledImage);
mat2gray is misleadingly named and does not convert to gray.
3 件のコメント
Walter Roberson
2017 年 12 月 26 日
https://www.mathworks.com/matlabcentral/answers/119461-using-imcontrast-to-adjust-image-then-apply-that-adjustment-to-several-images
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Image Segmentation and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!