view scripts/image/loadimage.m @ 559:4e826edfbc56

[project @ 1994-07-25 22:18:28 by jwe] Initial revision
author jwe
date Mon, 25 Jul 1994 22:19:05 +0000
parents
children 0faebdd7df57
line wrap: on
line source

function [X, map] = loadimage(filename)
#Load an image file.
#
#[X, map] = loadimage(img_file) loads an image and it's associated color
#map from file img_file.  The image must be in stored in octave's image
#format.
#
#SEE ALSO: saveimage, load, save

  eval(['load ', filename]);

endfunction