MSER Constructor OpenCvSharp Class Library
Creates MSER parameters

Namespace:  OpenCvSharp.CPlusPlus
Assembly:  OpenCvSharp.CPlusPlus (in OpenCvSharp.CPlusPlus.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public MSER(
	int delta = 5,
	int minArea = 60,
	int maxArea = 14400,
	double maxVariation = 0.25,
	double minDiversity = 0.2,
	int maxEvolution = 200,
	double areaThreshold = 1.01,
	double minMargin = 0.003,
	int edgeBlurSize = 5
)

Parameters

delta (Optional)
Type: SystemInt32
delta, in the code, it compares (size_{i}-size_{i-delta})/size_{i-delta}
minArea (Optional)
Type: SystemInt32
prune the area which smaller than min_area
maxArea (Optional)
Type: SystemInt32
prune the area which bigger than max_area
maxVariation (Optional)
Type: SystemDouble
prune the area have simliar size to its children
minDiversity (Optional)
Type: SystemDouble
trace back to cut off mser with diversity < min_diversity
maxEvolution (Optional)
Type: SystemInt32
for color image, the evolution steps
areaThreshold (Optional)
Type: SystemDouble
the area threshold to cause re-initialize
minMargin (Optional)
Type: SystemDouble
ignore too small margin
edgeBlurSize (Optional)
Type: SystemInt32
the aperture size for edge blur
See Also

Reference