http://www.emgu.com
Create a fast detector with the specific parameters
Namespace: Emgu.CV.Features2DAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic FastDetector(
int threshold = 10,
bool nonmaxSupression = true,
FastDetectorDetectorType type = FastDetectorDetectorType.Type9_16
)
Public Sub New (
Optional threshold As Integer = 10,
Optional nonmaxSupression As Boolean = true,
Optional type As FastDetectorDetectorType = FastDetectorDetectorType.Type9_16
)
public:
FastDetector(
int threshold = 10,
bool nonmaxSupression = true,
FastDetectorDetectorType type = FastDetectorDetectorType::Type9_16
)
new :
?threshold : int *
?nonmaxSupression : bool *
?type : FastDetectorDetectorType
(* Defaults:
let _threshold = defaultArg threshold 10
let _nonmaxSupression = defaultArg nonmaxSupression true
let _type = defaultArg type FastDetectorDetectorType.Type9_16
*)
-> FastDetectorParameters
- threshold (Optional)
- Type: SystemInt32
Threshold on difference between intensity of center pixel and pixels on circle around
this pixel. - nonmaxSupression (Optional)
- Type: SystemBoolean
Specify if non-maximum suppression should be used. - type (Optional)
- Type: Emgu.CV.Features2DFastDetectorDetectorType
One of the three neighborhoods as defined in the paper
See Also