summaryrefslogtreecommitdiff
path: root/macros/graydiffweight.sci
diff options
context:
space:
mode:
Diffstat (limited to 'macros/graydiffweight.sci')
-rw-r--r--macros/graydiffweight.sci9
1 files changed, 9 insertions, 0 deletions
diff --git a/macros/graydiffweight.sci b/macros/graydiffweight.sci
new file mode 100644
index 0000000..443a79f
--- /dev/null
+++ b/macros/graydiffweight.sci
@@ -0,0 +1,9 @@
+function [out]=graydiffweight(image,refgrayval)
+ image1=mattolist(image);
+ a=opencv_graydiffweight(image1,refgrayval);
+ dimension=size(a)
+ for i = 1:dimension
+ out(:,:,i)=a(i);
+ end
+
+endfunction;