diff options
Diffstat (limited to 'macros/bwulterode.sci')
-rw-r--r-- | macros/bwulterode.sci | 13 |
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 |