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/CV_AdaptiveThreshold.xml | 86 +++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 help/en_US/CV_AdaptiveThreshold.xml (limited to 'help/en_US/CV_AdaptiveThreshold.xml') diff --git a/help/en_US/CV_AdaptiveThreshold.xml b/help/en_US/CV_AdaptiveThreshold.xml new file mode 100644 index 0000000..1483442 --- /dev/null +++ b/help/en_US/CV_AdaptiveThreshold.xml @@ -0,0 +1,86 @@ + + + + + + + + CV_AdaptiveThreshold + function to adaptively threshold input image + + + + + Calling Sequence + + dst = CV_AdaptiveThreshold(srcimg,max_value,adaptive_method,thresh_type,blk_size,c) + + + + + + Parameters + + src : + Source 8-bit single-channel image. + max_value : + Non-zero value assigned to the pixels for which the condition is satisfied. See the details below. + adaptive_method : + Adaptive thresholding algorithm to use, ADAPTIVE_THRESH_MEAN_C or ADAPTIVE_THRESH_GAUSSIAN_C . + thresh_type : + Thresholding type that must be either THRESH_BINARY or THRESH_BINARY_INV . + blockSize : + Size of a pixel neighborhood that is used to calculate a threshold value for the pixel: 3, 5, 7, and so on. + C : + Constant subtracted from the mean or weighted mean.Normally, it is positive but may be zero or negative as well. + + + + + Description + +This function can be used for adaptively threshold given image + + +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV + + + + + + + Examples + + + + + See also + + CV_CreateImage + + + + + Authors + + Siddhesh Wani + + + -- cgit