view scripts/image/ind2gray.m @ 595:a0cc17145462

[project @ 1994-08-09 18:42:23 by jwe]
author jwe
date Tue, 09 Aug 1994 18:42:23 +0000
parents 4e826edfbc56
children 3470f1e25a79
line wrap: on
line source

function Y = ind2gray(X,map)
#Convert an octave indexed image to a gray scale intensity image.
#
#Y = ind2gray(X) converts an indexed image to a gray scale intensity
#image.  The current colormap is used to determine the intensities.
#The intensity values lie between 0 and 1 inclusive.
#
#Y = ind2gray(X,map) uses the specified colormap instead of the current
#one in the conversion process.
#
#SEE ALSO: gray2ind, rgb2ntsc, image, colormap

  if (nargin == 1)
    map = colormap;
  endif

  # Convert colormap to intensity values.
  yiq = rgb2ntsc(map);
  y = yiq(:,1);

  # We need Fortran indexing capability, but be sure to save the user's
  # preference.
  pref = do_fortran_indexing;
  do_fortran_indexing = "true";

  # Replace indices in the input matrix with indexed values in the output
  # matrix.
  [rows, cols] = size(X);
  Y = y(X(:));
  Y = reshape(Y,rows,cols);

  # Restore the user's preference.
  do_fortran_indexing = pref;

endfunction