home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21eb.zip / octave / SCRIPTS.ZIP / scripts / image / imshow.m < prev    next >
Text File  |  1996-07-11  |  2KB  |  53 lines

  1. ## Copyright (C) 1996 John W. Eaton
  2. ##
  3. ## This file is part of Octave.
  4. ##
  5. ## Octave is free software; you can redistribute it and/or modify it
  6. ## under the terms of the GNU General Public License as published by
  7. ## the Free Software Foundation; either version 2, or (at your option)
  8. ## any later version.
  9. ##
  10. ## Octave is distributed in the hope that it will be useful, but
  11. ## WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13. ## General Public License for more details.
  14. ##
  15. ## You should have received a copy of the GNU General Public License
  16. ## along with Octave; see the file COPYING.  If not, write to the Free
  17. ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA
  18. ## 02111-1307, USA.
  19.  
  20. ## Display images.
  21. ##
  22. ## imshow (X) displays an indexed image using the current colormap.
  23. ##
  24. ## imshow (X, map) displays an indexed image using the specified colormap.
  25. ##
  26. ## imshow (I, n) displays a gray scale intensity image.
  27. ##
  28. ## imshow (R, G, B) displays an RGB image.
  29. ##
  30. ## SEE ALSO: image, imagesc, colormap, gray2ind, rgb2ind.
  31.  
  32. ## Author: Tony Richardson <amr@mpl.ucsd.edu>
  33. ## Created: July 1994
  34. ## Adapted-By: jwe
  35.  
  36. function imshow (a1, a2, a3)
  37.  
  38.   if (nargin < 0 || nargin > 3)
  39.     usage ("imshow (args)");
  40.   elseif (nargin == 2)
  41.     if (length (a2) == 1)
  42.       [a1, a2] = gray2ind (a1, a2);
  43.     endif
  44.     colormap (a2);
  45.   elseif (nargin == 3)
  46.     [a1, a2] = rgb2ind (a1, a2, a3);
  47.     colormap (a2);
  48.   endif
  49.  
  50.   image (a1);
  51.  
  52. endfunction
  53.