Build an Oct-Tree from the given points

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 void BuildTree(
	MCvPoint3D32f[] points,
	int maxLevels,
	int minPoints
)
Public Sub BuildTree ( _
	points As MCvPoint3D32f(), _
	maxLevels As Integer, _
	minPoints As Integer _
)
public:
void BuildTree(
	array<MCvPoint3D32f>^ points, 
	int maxLevels, 
	int minPoints
)

Parameters

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

See Also