Method | Description | |
---|---|---|
GetMSERParameters ( ) : |
Get the MSER parameters
|
|
MSERDetector ( ) : System |
Create the default MSER detector
|
|
MSERDetector ( int delta, int maxArea, int minArea, float maxVariation, float minDiversity, int maxEvolution, double areaThreshold, double minMargin, int edgeBlurSize ) : System |
Create a MSER detector using the specific parameters
|
Method | Description | |
---|---|---|
DisposeObject ( ) : void |
Release the unmanaged memory associated with this detector.
|
public GetMSERParameters ( ) : |
||
return |
public MSERDetector ( int delta, int maxArea, int minArea, float maxVariation, float minDiversity, int maxEvolution, double areaThreshold, double minMargin, int edgeBlurSize ) : System | ||
delta | int | Use 5 as defalut. In the code, it compares (size_{i}-size_{i-delta})/size_{i-delta} |
maxArea | int | Use 60 as default. Prune the area which bigger than max_area |
minArea | int | Use 14400 as default. Prune the area which smaller than min_area |
maxVariation | float | Use .25f as default. Prune the area have simliar size to its children |
minDiversity | float | Use .2f as default. Trace back to cut off mser with diversity < min_diversity |
maxEvolution | int | Use 200 as default. For color image, the evolution steps |
areaThreshold | double | Use 1.01 as default. The area threshold to cause re-initialize |
minMargin | double | Use 0.003 as default. Ignore too small margin |
edgeBlurSize | int | Use 5 as default. The aperture size for edge blur |
return | System |