2847
|
1 ## Copyright (C) 1996, 1997 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 |
2312
|
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 |
3486
|
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 |
3486
|
45 ## elements of X(:)). |
559
|
46 |
3486
|
47 Y = reshape (((rgb2ntsc (map))(:,1))(X(:)), rows, cols); |
559
|
48 |
|
49 endfunction |