how to dispaly the 2D matrix image?
1 回表示 (過去 30 日間)
古いコメントを表示
I have the final decrypted matrix with size of 256x257 .I want to display the image with that size.how to display it?can you give me the code to display the 2D matrix?
0 件のコメント
回答 (2 件)
KSSV
2018 年 2 月 19 日
Read about imagesc, pcolor, imshow
1 件のコメント
Frank Uhlig
2021 年 4 月 10 日
Where can I find the answer?h ow can I see the code for this?
I am unable to use it otherwise
Image Analyst
2021 年 4 月 10 日
You can use truesize as long as your image is not larger than your screen:
img = uint8(randi(255, 256, 256));
imshow(img);
axis('on', 'image');
truesize;
impixelinfo;
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!