Create a spill tree from the specific feature descriptors

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.1.0.649 (2.1.0.649)

Syntax

         
 C#  Visual Basic  Visual C++ 
public FeatureTree(
	float[][] descriptors,
	int naive,
	double rho,
	double tau
)
Public Sub New ( _
	descriptors As Single()(), _
	naive As Integer, _
	rho As Double, _
	tau As Double _
)
public:
FeatureTree(
	array<array<float>^>^ descriptors, 
	int naive, 
	double rho, 
	double tau
)

Parameters

descriptors
array< array< Single >[]()[] >[]()[]
The array of feature descriptors
naive
Int32
A good value is 50
rho
Double
A good value is .7
tau
Double
A good value is .1

See Also