summaryrefslogtreecommitdiff
path: root/macros/bwulterode.sci
diff options
context:
space:
mode:
Diffstat (limited to 'macros/bwulterode.sci')
-rw-r--r--macros/bwulterode.sci13
1 files changed, 13 insertions, 0 deletions
diff --git a/macros/bwulterode.sci b/macros/bwulterode.sci
new file mode 100644
index 0000000..501c50d
--- /dev/null
+++ b/macros/bwulterode.sci
@@ -0,0 +1,13 @@
+function[dstImg] = bwulterode(srcImg)
+
+ srcMat = mattolist(srcImg)
+
+ out = opencv_bwulterode(srcMat)
+
+ channels = size(out)
+
+ for i = 1:channels
+ dstImg(:,:,i) = out(i)
+ end
+
+endfunction