From aef4e8398f2b1848b0e4cdd9580dbbe93e4006f9 Mon Sep 17 00:00:00 2001 From: Jorawar Singh Date: Fri, 30 Jun 2017 11:28:58 +0530 Subject: Help files, modified Raspberry Pi code conversion --- help/en_US/scilab_en_US_help/CV_Blur.html | 96 +++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 help/en_US/scilab_en_US_help/CV_Blur.html (limited to 'help/en_US/scilab_en_US_help/CV_Blur.html') diff --git a/help/en_US/scilab_en_US_help/CV_Blur.html b/help/en_US/scilab_en_US_help/CV_Blur.html new file mode 100644 index 00000000..a9f2008e --- /dev/null +++ b/help/en_US/scilab_en_US_help/CV_Blur.html @@ -0,0 +1,96 @@ + + + CV_Blur + + + +
+ + + + +
+ << CV_AdaptiveThreshold + + + Scilab 2 C Converter + + + CV_Canny >> + +
+
+
+ + + + Scilab 2 C Converter >> Scilab 2 C Converter > CV_Blur + +

+

CV_Blur

+

function to blur image using normalised box filter

+ + +

Calling Sequence

+
dst = CV_Blur(srcimg,ksize_width,ksize_height,anchor_x,anchor_y,border_type)
+ +

Parameters

+
srcimg : +

Source image.

+
ksize_width, ksize_height : +

blurring kernel size.

+
anchor_x, anchor_y : +

x,y coordinates of anchor point

+
border_type : +

border mode used to extrapolate pixels outside of the image.

+ +

Description

+

This function can be used for blurring image using normalised box +filter. Image can be of any depth and have any no of channels.

+

border_type can be : +

+

This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV

+

+ +

Examples

+
img = CV_LoadImage('~/test.jpg',0)
+dst = CV_Blur(img,3,3,-1,-1,"BORDER_CONSTANT")
+ +

See also

+
+ +

Authors

+
+
+ +
+ + + + + + +
Report an issue
+ << CV_AdaptiveThreshold + + + Scilab 2 C Converter + + + CV_Canny >> + +
+
+
+ + -- cgit From a3dfa2a4069740517ca6e83f99dd4e0dbb71c377 Mon Sep 17 00:00:00 2001 From: siddhu8990 Date: Sat, 1 Jul 2017 06:52:51 +0530 Subject: Merged Jorawer's work, Help files, RPi-scilab2c --- help/en_US/scilab_en_US_help/CV_Blur.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'help/en_US/scilab_en_US_help/CV_Blur.html') diff --git a/help/en_US/scilab_en_US_help/CV_Blur.html b/help/en_US/scilab_en_US_help/CV_Blur.html index a9f2008e..a76b723b 100644 --- a/help/en_US/scilab_en_US_help/CV_Blur.html +++ b/help/en_US/scilab_en_US_help/CV_Blur.html @@ -16,7 +16,7 @@ - Scilab 2 C Converter + Scilab 2 C Converter @@ -29,7 +29,7 @@ - Scilab 2 C Converter >> Scilab 2 C Converter > CV_Blur + Scilab 2 C Converter >> Scilab 2 C Converter > CV_Blur

CV_Blur

@@ -82,7 +82,7 @@ for providing support for generating C code for OpenCV

- Scilab 2 C Converter + Scilab 2 C Converter -- cgit