diff options
Diffstat (limited to 'macros/ind2gray.sci')
-rw-r--r-- | macros/ind2gray.sci | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/macros/ind2gray.sci b/macros/ind2gray.sci new file mode 100644 index 0000000..d2c8eee --- /dev/null +++ b/macros/ind2gray.sci @@ -0,0 +1,8 @@ +function [output] = ind2gray(img,colormap) + image = mattolist(img); + a = opencv_ind2gray(image,colormap) + d = size(a); + for i=1:d + output(:,:,i) = a(i); + end +endfunction |