Property | Type | Description |
---|
Method | Description | |
---|---|---|
StarDetector ( ) : System |
Construct default star detector
|
|
StarDetector ( int maxSize, int responseThreshold, int lineThresholdProjected, int lineThresholdBinarized, int suppressNonmaxSize ) : System |
Create a star detector with the specific parameters
|
Method | Description | |
---|---|---|
DisposeObject ( ) : void |
Release the unmanaged memory associated with this detector.
|
public StarDetector ( int maxSize, int responseThreshold, int lineThresholdProjected, int lineThresholdBinarized, int suppressNonmaxSize ) : System | ||
maxSize | int | /// Use 45 as default. Maximum size of the features. The following /// values of the parameter are supported: /// 4, 6, 8, 11, 12, 16, 22, 23, 32, 45, 46, 64, 90, 128 |
responseThreshold | int | /// Use 30 as default. Threshold for the approximated laplacian, /// used to eliminate weak features. The larger it is, /// the less features will be retrieved /// |
lineThresholdProjected | int | /// Use 10 as default. Another threshold for the laplacian to eliminate edges. /// The larger the threshold, the more points you get. /// |
lineThresholdBinarized | int | /// Use 8 as default. Another threshold for the feature size to eliminate edges. /// The larger the threshold, the more points you get. |
suppressNonmaxSize | int | /// Use 5 as default. /// |
return | System |