diff options
Diffstat (limited to 'macros/convmtx2.sci')
-rw-r--r-- | macros/convmtx2.sci | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/macros/convmtx2.sci b/macros/convmtx2.sci new file mode 100644 index 0000000..5f172d3 --- /dev/null +++ b/macros/convmtx2.sci @@ -0,0 +1,17 @@ +// Function Name = 2-D convolution matrix +// Output = Convolution matrix T +// Input = Input matrix srcMat, Dimensions [m, n] + +function[T] = convmtx2(srcImg, m, n) + + srcMat = mattolist(srcImg) + + out = opencv_convmtx2(srcMat, m, n) + + channels = size(out) + + for i = 1:channels + T(:,:,i) = out(i) + end + +endfunction |