<< imread | Graphics functions | imwrite >> |
imshow(filename) |
imshow(img) |
imshow(RGB) |
imshow(img, [low high]) |
imshow(img, []) |
imshow(img, map) |
imshow(..., propertyName, propertyValue) |
go = imshow(...) |
row vector character: file name of the image to display.
grayscale image: matrix.
truecolor image: m-by-n-by-3 array.
grayscale image display range.
colormap: c-by-3 matrix.
a scalar string or row vector character (for compatibility).
a value (for compatibility).
a graphics object: image type.
imshow(img) displays the image im.
f = figure();
filename = [tempdir, 'apollo_8_earthrise_1968_as08-14-2383.jpg'];
websave(filename, 'https://www.nasa.gov/sites/default/files/thumbnails/image/apollo_8_earthrise_1968_as08-14-2383.jpg');
h = imshow(filename)
imread, image, imagesc, colormap.
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET