/usr/share/octave/packages/image-2.4.1/im2single.m is in octave-image 2.4.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | ## Copyright (C) 2012-2014 Carnë Draug <carandraug+dev@gmail.com>
##
## This program 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.
##
## This program 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
## this program; if not, see <http://www.gnu.org/licenses/>.
## -*- texinfo -*-
## @deftypefn {Function File} {} im2single (@var{img})
## @deftypefnx {Function File} {} im2single (@var{img}, "indexed")
## Convert image to single precision.
##
## The conversion of @var{img} to single precision, is dependent
## on the type of input image. The following input classes are supported:
##
## @table @samp
## @item uint8, uint16, and int16
## The whole range of values from the class (see @code{getrangefromclass})
## are scaled for the interval [0 1], e.g., if input image was uint8,
## intensity values of 0, 127, and 255, are converted to intensity of
## 0, 0.498, and 1.
##
## @item logical
## True and false values are assigned a value of 0 and 1 respectively.
##
## @item double
## Values are cast to double precision.
##
## @item single
## Returns the same image.
##
## @end table
##
## If the second argument is the string @qcode{"indexed"}, then values are
## cast to single precision, and a +1 offset is applied if input is
## an integer class.
##
## @seealso{im2bw, imcast, im2uint8, im2double, im2int16, im2uint16}
## @end deftypefn
function imout = im2single (img, varargin)
if (nargin < 1 || nargin > 2)
print_usage ();
elseif (nargin == 2 && ! strcmpi (varargin{1}, "indexed"))
error ("im2single: second input argument must be the string \"indexed\"");
endif
imout = imcast (img, "single", varargin{:});
endfunction
%!assert (im2single (single ([1 2 3])), single ([1 2 3]));
%!assert (im2single ([1 2 3]), single ([1 2 3]));
%!assert (im2single (uint8 ([0 127 128 255])), single ([0 127/255 128/255 1]));
%!assert (im2single (uint16 ([0 127 128 65535])), single ([0 127/65535 128/65535 1]));
%!assert (im2single (int16 ([-32768 -32767 -32766 32767])), single ([0 1/65535 2/65535 1]));
%!assert (im2single (uint8 ([0 1 255]), "indexed"), single ([1 2 256]));
%!assert (im2single (uint16 ([0 1 2557]), "indexed"), single ([1 2 2558]));
%!assert (im2single ([3 25], "indexed"), single ([3 25]));
%!error <indexed> im2single ([0 1 2], "indexed");
%!error <indexed> im2single (int16 ([17 8]), "indexed");
%!error <indexed> im2single (int16 ([-7 8]), "indexed");
%!error <indexed> im2single ([false true], "indexed");
|