home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / scripts / image / image.m < prev    next >
Text File  |  1996-09-28  |  2KB  |  62 lines

  1. # Copyright (C) 1995 John W. Eaton
  2. # This file is part of Octave.
  3. # Octave is free software; you can redistribute it and/or modify it
  4. # under the terms of the GNU General Public License as published by the
  5. # Free Software Foundation; either version 2, or (at your option) any
  6. # later version.
  7. # Octave is distributed in the hope that it will be useful, but WITHOUT
  8. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  9. # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  10. # for more details.
  11. # You should have received a copy of the GNU General Public License
  12. # along with Octave; see the file COPYING.  If not, write to the Free
  13. # Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  14.  
  15. function image (x, zoom)
  16.  
  17. # Display an octave image matrix.
  18. #
  19. # image (x) displays a matrix as a color image. The elements of x are
  20. # indices into the current colormap and should have values between 1
  21. # and the length of the colormap.
  22. #
  23. # image (x, zoom) changes the zoom factor.  The default value is 4.
  24. #
  25. # SEE ALSO: imshow, imagesc, colormap.
  26.  
  27. # Written by Tony Richardson (amr@mpl.ucsd.edu) July 1994.
  28.  
  29.   if (nargin == 0)
  30. # Load Bobbie Jo Richardson (Born 3/16/94)
  31.     x = loadimage ("default.img");
  32.     zoom = 2;
  33.   elseif (nargin == 1)
  34.     zoom = 4;
  35.   elseif (nargin > 2)
  36.     usage ("image (matrix, [zoom])");
  37.   endif
  38.  
  39. # XXX FIXME XXX -- we should use octave_tmp_file_name.
  40.  
  41.   rnd_str = num2str (fix (rand * 10000));
  42.   ppm_name = ["image.", rnd_str, ".ppm" ];
  43.  
  44.   saveimage (ppm_name, x, "ppm");
  45.  
  46. # Start the viewer.  Try xv, then xloadimage.
  47.  
  48.   xv = sprintf ("xv -expand %f %s", zoom, ppm_name);
  49.   xloadimage = sprintf ("xloadimage -zoom %f %s", zoom*100, ppm_name);
  50.   rm = sprintf ("rm -f %s", ppm_name);
  51.  
  52.   command = sprintf ("( %s || %s && %s ) > /dev/null 2>&1 &", ...
  53.                      xv, xloadimage, rm);
  54.  
  55.   system (command);
  56.  
  57. endfunction
  58.