| OrbFeaturesFinder Constructor |
http://www.emgu.com
Creates an ORB features finder
Namespace: Emgu.CV.StitchingAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic OrbFeaturesFinder(
Size gridSize,
int nFeature = 1500,
float scaleFactor = 1.3f,
int nLevels = 5
)
Public Sub New (
gridSize As Size,
Optional nFeature As Integer = 1500,
Optional scaleFactor As Single = 1.3F,
Optional nLevels As Integer = 5
)
public:
OrbFeaturesFinder(
Size gridSize,
int nFeature = 1500,
float scaleFactor = 1.3f,
int nLevels = 5
)
new :
gridSize : Size *
?nFeature : int *
?scaleFactor : float32 *
?nLevels : int
(* Defaults:
let _nFeature = defaultArg nFeature 1500
let _scaleFactor = defaultArg scaleFactor 1.3f
let _nLevels = defaultArg nLevels 5
*)
-> OrbFeaturesFinderParameters
- gridSize
- Type: System.DrawingSize
Use (3, 1) for default grid size - nFeature (Optional)
- Type: SystemInt32
The number of desired features. - scaleFactor (Optional)
- Type: SystemSingle
Coefficient by which we divide the dimensions from one scale pyramid level to the next. - nLevels (Optional)
- Type: SystemInt32
The number of levels in the scale pyramid.
See Also