Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic static ORB Create(
	int nFeatures = 500,
	float scaleFactor = 1.2f,
	int nLevels = 8,
	int edgeThreshold = 31,
	int firstLevel = 0,
	int wtaK = 2,
	ORBScore scoreType = ORBScore.Harris,
	int patchSize = 31
)
Public Shared Function Create ( 
	Optional nFeatures As Integer = 500,
	Optional scaleFactor As Single = 1.2F,
	Optional nLevels As Integer = 8,
	Optional edgeThreshold As Integer = 31,
	Optional firstLevel As Integer = 0,
	Optional wtaK As Integer = 2,
	Optional scoreType As ORBScore = ORBScore.Harris,
	Optional patchSize As Integer = 31
) As ORB
public:
static ORB^ Create(
	int nFeatures = 500, 
	float scaleFactor = 1.2f, 
	int nLevels = 8, 
	int edgeThreshold = 31, 
	int firstLevel = 0, 
	int wtaK = 2, 
	ORBScore scoreType = ORBScore::Harris, 
	int patchSize = 31
)
static member Create : 
        ?nFeatures : int * 
        ?scaleFactor : float32 * 
        ?nLevels : int * 
        ?edgeThreshold : int * 
        ?firstLevel : int * 
        ?wtaK : int * 
        ?scoreType : ORBScore * 
        ?patchSize : int 
(* Defaults:
        let _nFeatures = defaultArg nFeatures 500
        let _scaleFactor = defaultArg scaleFactor 1.2f
        let _nLevels = defaultArg nLevels 8
        let _edgeThreshold = defaultArg edgeThreshold 31
        let _firstLevel = defaultArg firstLevel 0
        let _wtaK = defaultArg wtaK 2
        let _scoreType = defaultArg scoreType ORBScore.Harris
        let _patchSize = defaultArg patchSize 31
*)
-> ORB 
OpenCvSharp.ORB.Create = function(nFeatures, scaleFactor, nLevels, edgeThreshold, firstLevel, wtaK, scoreType, patchSize);
Parameters
- nFeatures (Optional)
- Type: SystemInt32
 
- scaleFactor (Optional)
- Type: SystemSingle
 
- nLevels (Optional)
- Type: SystemInt32
 
- edgeThreshold (Optional)
- Type: SystemInt32
 
- firstLevel (Optional)
- Type: SystemInt32
 
- wtaK (Optional)
- Type: SystemInt32
 
- scoreType (Optional)
- Type: OpenCvSharpORBScore
 
- patchSize (Optional)
- Type: SystemInt32
 
Return Value
Type: 
ORB See Also
See Also