Create a spill tree from the specific feature descriptors

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

Syntax

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

Parameters

descriptors
Matrix<(Of <(<'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