Creates MSER parameters
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static CvMSERParams MSERParams( int delta, int minArea, int maxArea, float maxVariation, float minDiversity, int maxEvolution, double areaThreshold, double minMargin, int edgeBlurSize )
Parameters
- delta
- Type: SystemInt32
delta, in the code, it compares (size_{i}-size_{i-delta})/size_{i-delta} - minArea
- Type: SystemInt32
prune the area which smaller than min_area - maxArea
- Type: SystemInt32
prune the area which bigger than max_area - maxVariation
- Type: SystemSingle
prune the area have simliar size to its children - minDiversity
- Type: SystemSingle
trace back to cut off mser with diversity < min_diversity - maxEvolution
- Type: SystemInt32
for color image, the evolution steps - areaThreshold
- Type: SystemDouble
the area threshold to cause re-initialize - minMargin
- Type: SystemDouble
ignore too small margin - edgeBlurSize
- Type: SystemInt32
the aperture size for edge blur
Return Value
Type: CvMSERParams[Missing <returns> documentation for "M:OpenCvSharp.Cv.MSERParams(System.Int32,System.Int32,System.Int32,System.Single,System.Single,System.Int32,System.Double,System.Double,System.Int32)"]
See Also