Class ERFilterNM1
Extremal Region Filter for the 1st stage classifier of N&M algorithm
public class ERFilterNM1 : ERFilter, IDisposable
- Inheritance
-
ERFilterNM1
- Implements
- Inherited Members
Constructors
ERFilterNM1(string, int, float, float, float, bool, float)
Create an Extremal Region Filter for the 1st stage classifier of N&M algorithm
public ERFilterNM1(string classifierFileName, int thresholdDelta = 1, float minArea = 0.00025, float maxArea = 0.13, float minProbability = 0.4, bool nonMaxSuppression = true, float minProbabilityDiff = 0.1)
Parameters
classifierFileName
stringThe file name of the classifier
thresholdDelta
intThreshold step in subsequent thresholds when extracting the component tree.
minArea
floatThe minimum area (% of image size) allowed for retreived ER’s.
maxArea
floatThe maximum area (% of image size) allowed for retreived ER’s.
minProbability
floatThe minimum probability P(er|character) allowed for retreived ER’s.
nonMaxSuppression
boolWhenever non-maximum suppression is done over the branch probabilities.
minProbabilityDiff
floatThe minimum probability difference between local maxima and local minima ERs.