CV_Thresholdfunction to threshold input imageCalling Sequence
dst = CV_Threshold(srcimg,code,threshold,max_value,thresh_type)
Parameterssrcimg: source image to be convertedthreshold: threshold valuemax_value: maximum value to be used with THRESH_BINARY and THRESH_BINARY_INVthresh_type: Type for threshold. It can one of the following: THRESH_BINARY, THRESH_BINARY_INV, THRESH_TRUNC, THRESH_TOZERO, THRESH_TOZERO_INVDescription
This function can be used for converting an image to other colorspace.
Refer OpenCV documentation for list of available conversions
This is curretly dummy function. It provides no functionality but is required
for providing support for generating C code for OpenCV
ExamplesSee alsoCV_CreateImageAuthorsSiddhesh Wani