XImgprocInvokeNiBlackThreshold Method |
http://www.emgu.com
Niblack threshold
Namespace:
Emgu.CV.XImgproc
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic static void NiBlackThreshold(
IInputArray src,
IOutputArray dst,
double maxValue,
LocalBinarizationMethods type,
int blockSize,
double delta
)
Public Shared Sub NiBlackThreshold (
src As IInputArray,
dst As IOutputArray,
maxValue As Double,
type As LocalBinarizationMethods,
blockSize As Integer,
delta As Double
)
public:
static void NiBlackThreshold(
IInputArray^ src,
IOutputArray^ dst,
double maxValue,
LocalBinarizationMethods type,
int blockSize,
double delta
)
static member NiBlackThreshold :
src : IInputArray *
dst : IOutputArray *
maxValue : float *
type : LocalBinarizationMethods *
blockSize : int *
delta : float -> unit
Parameters
- src
- Type: Emgu.CVIInputArray
The source image - dst
- Type: Emgu.CVIOutputArray
The output result - maxValue
- Type: SystemDouble
Maximum value to use with CV_THRESH_BINARY and CV_THRESH_BINARY_INV thresholding types - type
- Type: Emgu.CV.XImgprocLocalBinarizationMethods
Value that defines which local binarization algorithm should be used. - blockSize
- Type: SystemInt32
Block size - delta
- Type: SystemDouble
delta
See Also