Mercurial > hg > octave-lyh
annotate scripts/image/ind2gray.m @ 14138:72c96de7a403 stable
maint: update copyright notices for 2012
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Mon, 02 Jan 2012 14:25:41 -0500 |
parents | fd0a3ac60b0e |
children | 1f911333ed3d |
rev | line source |
---|---|
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
1 ## Copyright (C) 1994-2012 John W. Eaton |
2313 | 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 | |
7016 | 7 ## the Free Software Foundation; either version 3 of the License, or (at |
8 ## your option) any later version. | |
2313 | 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 | |
7016 | 16 ## along with Octave; see the file COPYING. If not, see |
17 ## <http://www.gnu.org/licenses/>. | |
1024 | 18 |
3381 | 19 ## -*- texinfo -*- |
3373 | 20 ## @deftypefn {Function File} {} ind2gray (@var{x}, @var{map}) |
21 ## Convert an Octave indexed image to a gray scale intensity image. | |
22 ## If @var{map} is omitted, the current colormap is used to determine the | |
23 ## intensities. | |
5642 | 24 ## @seealso{gray2ind, rgb2ntsc, image, colormap} |
3373 | 25 ## @end deftypefn |
904 | 26 |
3202 | 27 ## Author: Tony Richardson <arichard@stark.cc.oh.us> |
2312 | 28 ## Created: July 1994 |
29 ## Adapted-By: jwe | |
559 | 30 |
11469
c776f063fefe
Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents:
7017
diff
changeset
|
31 function y = ind2gray (x, map) |
1024 | 32 |
33 if (nargin < 1 || nargin > 2) | |
6046 | 34 print_usage (); |
1024 | 35 elseif (nargin == 1) |
36 map = colormap (); | |
559 | 37 endif |
38 | |
11469
c776f063fefe
Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents:
7017
diff
changeset
|
39 [rows, cols] = size (x); |
917 | 40 |
3486 | 41 ## Convert colormap to intensity values (the first column of the |
42 ## result of the call to rgb2ntsc) and then replace indices in | |
43 ## the input matrix with indexed values in the output matrix (indexed | |
6653 | 44 ## values are the result of indexing the intensity values by the |
11469
c776f063fefe
Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents:
7017
diff
changeset
|
45 ## elements of x(:)). |
559 | 46 |
11469
c776f063fefe
Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents:
7017
diff
changeset
|
47 y = reshape (((rgb2ntsc (map))(:,1))(x(:)), rows, cols); |
559 | 48 |
49 endfunction |