create an image from intensity value per pixel.

2 次查看(过去 30 天)
if i have intensity values per pixel 512*512 .then how to create an image using that values?

回答(1 个)

KSSV
KSSV 2019-4-16
A = rand(512,512);
imwrite(A,'myimage.png') ;
figure
imshow(A)
figure
imshow(imread('myimage.png'))

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

标签

尚未输入任何标签。

Community Treasure Hunt

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

Start Hunting!

Translated by