]> Creatis software - CreaPhase.git/blobdiff - octave_packages/image-1.0.15/im2uint16.m
Add a useful package (from Source forge) for octave
[CreaPhase.git] / octave_packages / image-1.0.15 / im2uint16.m
diff --git a/octave_packages/image-1.0.15/im2uint16.m b/octave_packages/image-1.0.15/im2uint16.m
new file mode 100644 (file)
index 0000000..26763ea
--- /dev/null
@@ -0,0 +1,47 @@
+## Copyright (C) 2007  Søren Hauberg
+## 
+## 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, 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 file.  If not, see <http://www.gnu.org/licenses/>.
+
+## -*- texinfo -*-
+## @deftypefn {Function File} @var{im2} = im2uint16(@var{im1})
+## Converts the input image to an image of class uint16.
+##
+## If the input image is of class uint16 the output is unchanged.
+## If the input is of class uint8 the result will be converted to uint16
+## and multiplied by 257, and if the input is of class double the image will
+## be multiplied by 65535 and converted to uint16.
+## @seealso{im2bw, im2double, im2uint8}
+## @end deftypefn
+
+function im2 = im2uint16(im1)
+  ## Input checking
+  if (nargin < 1)
+    print_usage();
+  endif
+  if (!isgray(im1) && !isrgb(im1))
+    error("im2uint16: input must be an image");
+  endif
+  
+  ## Take action depending on the class of the data
+  switch (class(im1))
+    case "double"
+      im2 = uint16(65535*im1);
+    case "uint8"
+      im2 = 257*uint16(im1);
+    case "uint16"
+      im2 = im1;
+    otherwise
+      error("im2uint16: unsupported image class");
+  endswitch
+endfunction