フィルターのクリア

imshow a 55*55*2 matrix

1 回表示 (過去 30 日間)
talayeh ghodsi
talayeh ghodsi 2020 年 12 月 6 日
編集済み: Image Analyst 2020 年 12 月 6 日
hi everyone
I have a 55*55*2 matrix which appears as the photo attached. hao can i imshow it? i need to save the result as an image

回答 (1 件)

Image Analyst
Image Analyst 2020 年 12 月 6 日
編集済み: Image Analyst 2020 年 12 月 6 日
Try this:
[rows, columns, slices] = size(m);
m8 = uint8(255 * mat2gray(m)); % Convert to 0-255;
blackImage = zeros(rows, columns, 'uint8'); % Create an invisible image for the blue channel.
% Create an RGB image with slice 1 in red, slice 2 in green, and blue as invisible.
rgbImage = cat(3, m8(:, :, 1), m8(:, :, 2), blackImage);
imshow(rgbImage, 'InitialMagnification', 1000);
axis('on', 'image')
impixelinfo; % Let user mouse around and see values.
Also see attached demo.

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by