- imageViewer
imageViewer;
imageViewer('forest.tif');
imageViewer;
imageViewer('forest.tif');
[A1,map1]=imread('forest.tif');
[A2,map2]=imread('trees.tif');
figure;
subplot(1,2,1);
imshow(A1,map1);
subplot(1,2,2);
imshow(A2,map2);
imshow("board.tif",Border="loose")
imshow("board.tif",Border="tight")
A=imread('filename.tif');
imshow(A);
imshow('filename.jpg');
imshow(A,'InitialMagnification',150);
imshow(A,'InitialMagnification',50);
A=imread('filename.jpg'); imwrite(A,'filename.tif'); [B,map]=imread('filename.tif'); imwrite(B,map,'filename.png');
X=dicomread('filename1.dcm');
info=dicominfo('filename1.dcm');
dicomwrite(X,'filename2.dcm',info);
A=imread('filename.jpg');
[B,map]=imread('filename.tif');
X=dicomread('filename.dcm');