diff options
Diffstat (limited to 'macros/regionfill.sci')
-rw-r--r-- | macros/regionfill.sci | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/macros/regionfill.sci b/macros/regionfill.sci new file mode 100644 index 0000000..74c4779 --- /dev/null +++ b/macros/regionfill.sci @@ -0,0 +1,18 @@ +function[dstImg] = regionfill(srcImg, varargin) + + [lhs, rhs] = argn(0) + + srcMat = mattolist(srcImg) + + if rhs == 2 then + out = opencv_regionfill(srcMat, varargin(1)) + elseif rhs == 2 then + out = opencv_regionfill(srcMat, varargin(1), varargin(2)) + end + + channels = size(out) + + for i = 1:channels + dstImg(:,:,i) = out(i) + end +endfunction |