diff options
author | shamikam | 2017-01-16 02:56:17 +0530 |
---|---|---|
committer | shamikam | 2017-01-16 02:56:17 +0530 |
commit | a6df67e8bcd5159cde27556f4f6a315f8dc2215f (patch) | |
tree | e806e966b06a53388fb300d89534354b222c2cad /macros/imboxfilt3.sci | |
download | FOSSEE_Image_Processing_Toolbox-master.tar.gz FOSSEE_Image_Processing_Toolbox-master.tar.bz2 FOSSEE_Image_Processing_Toolbox-master.zip |
Diffstat (limited to 'macros/imboxfilt3.sci')
-rw-r--r-- | macros/imboxfilt3.sci | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/macros/imboxfilt3.sci b/macros/imboxfilt3.sci new file mode 100644 index 0000000..cf27438 --- /dev/null +++ b/macros/imboxfilt3.sci @@ -0,0 +1,28 @@ +//1) box_filtered_image = imboxfilt3(input_img); + //In this usage, the default filter size of 3x3 is used. + +// 2) box_filtered_image = imboxfilt3(input_img, filter_height, filter_width); + +function[dstMat] = imboxfilt3(srcImg, varargin) + + [lhs, rhs] = argn(0) + + srcMat = mattolist(srcImg) + + select rhs + case 1 then + out = opencv_imboxfilt3(srcMat) + + case 2 then + out = opencv_imboxfilt3(srcMat, varargin(1)) + + case 3 then + out = opencv_imboxfilt3(srcMat, varargin(1), varargin(2)) + end + channel = size(out) + + for i = 1: channel + dstMat(:,:,i) = out(i) + end + +endfunction |