/usr/share/octave/packages/image-2.4.1/rangefilt.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 72 73 74 | ## Copyright (C) 2008 Søren Hauberg <soren@hauberg.org>
##
## 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} {@var{R} =} rangefilt (@var{im})
## @deftypefnx{Function File} {@var{R} =} rangefilt (@var{im}, @var{domain})
## @deftypefnx{Function File} {@var{R} =} rangefilt (@var{im}, @var{domain}, @var{padding}, @dots{})
## Computes the local intensity range in a neighbourhood around each pixel in
## an image.
##
## The intensity range of the pixels of a neighbourhood is computed as
##
## @example
## @var{R} = max (@var{x}) - min (@var{x})
## @end example
##
## where @var{x} is the value of the pixels in the neighbourhood,
##
## The neighbourhood is defined by the @var{domain} binary mask. Elements of the
## mask with a non-zero value are considered part of the neighbourhood. By default
## a 3 by 3 matrix containing only non-zero values is used.
##
## At the border of the image, extrapolation is used. By default symmetric
## extrapolation is used, but any method supported by the @code{padarray} function
## can be used.
##
## @seealso{paddarray, entropyfilt, stdfilt}
## @end deftypefn
function retval = rangefilt (I, domain = true (3), padding = "symmetric", varargin)
## Check input
if (nargin == 0)
error ("rangefilt: not enough input arguments");
endif
if (! isnumeric (I) && ! islogical (I))
error ("rangefilt: I must be a numeric or logical array");
endif
if (! isnumeric (domain) && ! islogical (domain))
error ("rangefilt: DOMAIN must be a logical array");
endif
domain = logical (domain);
## Pad image
pad = floor (size (domain)/2);
I = padarray (I, pad, padding, varargin {:});
even = (round (size (domain)/2) == size (domain)/2);
idx = cell (1, ndims (I));
for k = 1:ndims (I)
idx {k} = (even (k)+1):size (I, k);
endfor
I = I (idx {:});
## Perform filtering
retval = __spatial_filtering__ (I, domain, "range", I, 0);
endfunction
%!test
%! im = rangefilt (ones (5));
%! assert (im, zeros (5));
|