X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=octave_packages%2Fimage-1.0.15%2Fgrayslice.m;fp=octave_packages%2Fimage-1.0.15%2Fgrayslice.m;h=4a6f6eb7096cd063c01f3d9392c9c35b43dada2e;hb=c880e8788dfc484bf23ce13fa2787f2c6bca4863;hp=0000000000000000000000000000000000000000;hpb=1705066eceaaea976f010f669ce8e972f3734b05;p=CreaPhase.git diff --git a/octave_packages/image-1.0.15/grayslice.m b/octave_packages/image-1.0.15/grayslice.m new file mode 100644 index 0000000..4a6f6eb --- /dev/null +++ b/octave_packages/image-1.0.15/grayslice.m @@ -0,0 +1,77 @@ +## Copyright (C) 2000 Kai Habel +## +## 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 2 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 . + +## -*- texinfo -*- +## @deftypefn {Function File} {@var{X} =} grayslice (@var{I},@var{n}) +## @deftypefnx {Function File} {@var{X} =} grayslice (@var{I},@var{v}) +## creates an indexed image @var{X} from an intensitiy image @var{I} +## using multiple threshold levels. +## A scalar integer value @var{n} sets the levels to +## @example +## +## @group +## 1 2 n-1 +## -, -, ..., --- +## n n n +## @end group +## @end example +## +## X = grayslice(I,5); +## +## For irregular threshold values a real vector @var{v} can be used. +## The values must be in the range [0,1]. +## +## @group +## X = grayslice(I,[0.1,0.33,0.75,0.9]) +## @end group +## +## @seealso{im2bw} +## @end deftypefn + +## Author: Kai Habel +## Date: 03. August 2000 + +function X = grayslice (I, v) + + if (nargin != 2) + usage ("grayslice(...) number of arguments must be 1 or 2"); + endif + + if (is_scalar(v) && (fix(v) == v)) + + v = (1:v - 1) / v; + + elseif (isvector(v)) + + if (any (v < 0) || (any (v > 1))) + error ("slice vector must be in range [0,1]") + endif + v = [0,v,1]; + else + + usage("second argument"); + + endif + + [r, c] = size (I); + [m, n] = sort ([v(:); I(:)]); + lx = length (v); + o = cumsum (n <= lx); + idx = o (find(n>lx)); + [m, n] = sort (I(:)); + [m, n] = sort (n); + X = reshape (idx(n), r, c); + +endfunction