Mercurial > hg > octave-avbm
view scripts/image/imshow.m @ 7017:a1dbe9d80eee
[project @ 2007-10-12 21:27:11 by jwe]
author | jwe |
---|---|
date | Fri, 12 Oct 2007 21:27:37 +0000 |
parents | 93c65f2a5668 |
children | 87151f298e6a |
line wrap: on
line source
## Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2004, 2005, ## 2006, 2007 Soren Hauberg ## ## This file is part of Octave. ## ## Octave is free software; you can redistribute it and/or modify it ## under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 3 of the License, or (at ## your option) any later version. ## ## Octave is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. ## -*- texinfo -*- ## @deftypefn {Function File} {} imshow (@var{im}) ## @deftypefnx {Function File} {} imshow (@var{im}, @var{limits}) ## @deftypefnx {Function File} {} imshow (@var{im}, @var{map}) ## @deftypefnx {Function File} {} imshow (@var{R}, @var{G}, @var{B}, @dots{}) ## @deftypefnx {Function File} {} imshow (@var{filename}) ## @deftypefnx {Function File} {} imshow (@dots{}, @var{string_param1}, @var{value1}, @dots{}) ## Display the image @var{im}, where @var{im} can be a 2-dimensional ## (gray-scale image) or a 3-dimensional (RGB image) matrix. If three matrices ## of the same size are given as arguments, they will be concatenated into ## a 3-dimensional (RGB image) matrix. ## ## If @var{limits} is a 2-element vector @code{[@var{low}, @var{high}]}, ## the image is shown using a display range between @var{low} and ## @var{high}. If an empty matrix is passed for @var{limits}, the ## display range is computed as the range between the minimal and the ## maximal value in the image. ## ## If @var{map} is a valid color map, the image will be shown as an indexed ## image using the supplied color map. ## ## If a file name is given instead of an image, the file will be read and ## shown. ## ## If given, the parameter @var{string_param1} has value ## @var{value1}. @var{string_param1} can be any of the following: ## @table @samp ## @item "displayrange" ## @var{value1} is the display range as described above. ## @end table ## @seealso{image, imagesc, colormap, gray2ind, rgb2ind} ## @end deftypefn ## Author: Soren Hauberg <hauberg at gmail dot com> ## Adapted-By: jwe function imshow (im, varargin) if (nargin == 0) print_usage (); endif ## Get the image. if (ischar (im)) im = loadimage (im); # It would be better to use imread from octave-forge elseif (! ismatrix (im)) error ("imshow: first argument must be an image or the filename of an image"); endif ## Is the function called with 3 matrices (i.e., imshow (R, G, B))? if (nargin >= 3 && ndims (im) == 2 && ndims (varargin{1}) == 2 && ndims (varargin{2}) == 2 && size_equal (im, varargin{1}) && size_equal (im, varargin{2})) im(:,:,3) = varargin{2}; im(:,:,2) = varargin{1}; varargin(1:2) = []; endif ## Set default display range. switch class (im) case {"uint8"} display_range = [0, 255]; case {"uint16"} display_range = [0, 65535]; case {"double", "single", "logical"} display_range = [0, 1]; otherwise error ("imshow: currently only images whos class is uint8, uint16, logical, or double are supported"); endswitch ## Set other default parameters. isindexed = false; initial_magnification = 100; color_map = colormap (); ## Handle the rest of the arguments. narg = 1; while (narg <= length (varargin)) arg = varargin{narg}; if (ismatrix (arg) && size (arg, 2) == 3) color_map = arg; isindexed = true; elseif (ismatrix (arg) && numel (arg) == 2) display_range = arg; elseif (isempty (arg)) display_range = [min(im(:)), max(im(:))]; elseif (ischar (arg) && strcmpi (arg, "displayrange")) narg++; display_range = varargin{narg}; elseif (ischar (arg) && (strcmpi (arg, "truesize") || strcmpi (arg, "initialmagnification"))) narg++; warning ("image: zoom argument ignored -- use GUI features"); else warning ("imshow: input argument number %d is unsupported", narg) endif narg++; endwhile ## Check for complex images. if (iscomplex (im)) warning ("imshow: only showing real part of complex image"); im = real (im); endif nans = isnan (im(:)); if (any (nans)) warning ("Octave:imshow-NaN", "imshow: pixel with NaN or NA values are set to zero"); im(nans) = display_range(1); endif ## Scale the image to the interval [0, 1] according to display_range. if (! isindexed) low = display_range(1); high = display_range(2); im = (double (im) - low)/(high-low); im(im < 0) = 0; im(im > 1) = 1; endif dim = ndims (im); if (dim == 2) im = round ((size (color_map, 1) - 1) * im); image (im); colormap (color_map); elseif (dim == 3 && size (im, 3) == 3) __img__ ([] , [], im); ## FIXME -- needed anymore for a special case? ## Convert to indexed image. ## [im, color_map] = rgb2ind (im); else error ("imshow: input image must be a 2D or 3D matrix"); endif endfunction %!error imshow () # no arguments %!error imshow ({"cell"}) # No image or filename given %!error imshow (int8(1)) # Unsupported image class %!error imshow (ones(4,4,4)) # Too many dimensions in image %!demo %! imshow (loadimage ("default.img")); %!demo %! [I, M] = loadimage ("default.img"); %! imshow (I, M); %!demo %! [I, M] = loadimage ("default.img"); %! imshow (cat(3, I, I*0.5, I*0.8)); %!demo %! I = loadimage("default.img"); %! imshow(I, I, I);