diff options
Diffstat (limited to 'macros/watershed.sci')
-rw-r--r-- | macros/watershed.sci | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/macros/watershed.sci b/macros/watershed.sci new file mode 100644 index 0000000..6291739 --- /dev/null +++ b/macros/watershed.sci @@ -0,0 +1,11 @@ +function[dstImg] = watershed(srcImg) + + srcMat = mattolist(srcImg) + out = opencv_watershed(srcMat) + + channels = size(out) + + for i = 1 : channels + dstImg(:,:,i) = out(i) + end +endfunction |