summaryrefslogtreecommitdiff
path: root/macros/imhmin.sci
diff options
context:
space:
mode:
Diffstat (limited to 'macros/imhmin.sci')
-rw-r--r--macros/imhmin.sci15
1 files changed, 15 insertions, 0 deletions
diff --git a/macros/imhmin.sci b/macros/imhmin.sci
new file mode 100644
index 0000000..441efce
--- /dev/null
+++ b/macros/imhmin.sci
@@ -0,0 +1,15 @@
+function[dstMat] = imfill(srcImg, Hmin)
+
+ [lhs, rhs] = argn(0)
+
+ srcMat = mattolist(srcImg)
+
+ out = opencv_imfill(srcMat, Hmin)
+
+ channel = size(out)
+
+ for i = 1: channel
+ dstMat(:,:,i) = out(i)
+ end
+
+endfunction