Build an Oct-Tree from the given points

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

Syntax

C#
public void BuildTree(
	MCvPoint3D32f[] points,
	int maxLevels,
	int minPoints
)
Visual Basic (Declaration)
Public Sub BuildTree ( _
	points As MCvPoint3D32f(), _
	maxLevels As Integer, _
	minPoints As Integer _
)
Visual C++
public:
void BuildTree(
	array<MCvPoint3D32f>^ points, 
	int maxLevels, 
	int minPoints
)

Parameters

points
Type: array< Emgu.CV.Structure..::.MCvPoint3D32f >[]()[]
The points to be inserted into the Oct-Tree
maxLevels
Type: System..::.Int32
The maximum levels of the Oct-Tree
minPoints
Type: System..::.Int32
The minimum number of points in each level

See Also