From a6df67e8bcd5159cde27556f4f6a315f8dc2215f Mon Sep 17 00:00:00 2001 From: shamikam Date: Mon, 16 Jan 2017 02:56:17 +0530 Subject: First Commit --- macros/xyz2double.sci | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 macros/xyz2double.sci (limited to 'macros/xyz2double.sci') diff --git a/macros/xyz2double.sci b/macros/xyz2double.sci new file mode 100644 index 0000000..d03c1e9 --- /dev/null +++ b/macros/xyz2double.sci @@ -0,0 +1,7 @@ +function [output] = xyz2double(pstData) + a = opencv_xyz2double(pstData); + d = size(a); + for i=1:d + output(:,:,i) = a(i); + end +endfunction -- cgit