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