C# Class Emgu.CV.Octree

Oct-Tree
Inheritance: Emgu.Util.UnmanagedObject
ファイルを表示 Open project: fajoy/RTSPExample Class Usage Examples

Public Methods

Method Description
BuildTree ( MCvPoint3D32f points, int maxLevels, int minPoints ) : void

Build an Oct-Tree from the given points

GetPointsWithinSphere ( MCvPoint3D32f center, float radius ) : MCvPoint3D32f[]

Get the points within the specific sphere

Octree ( ) : System

Create an empty Oct-Tree

Octree ( MCvPoint3D32f points, int maxLevels, int minPoints ) : System

Create an Oct-Tree from the given points

Protected Methods

Method Description
DisposeObject ( ) : void

Release the Oct Tree

ReleaseManagedResources ( ) : void

Release the managed memory associated with this Oct Tree

Method Details

BuildTree() public method

Build an Oct-Tree from the given points
public BuildTree ( MCvPoint3D32f points, int maxLevels, int minPoints ) : void
points MCvPoint3D32f The points to be inserted into the Oct-Tree
maxLevels int The maximum levels of the Oct-Tree
minPoints int The minimum number of points in each level
return void

DisposeObject() protected method

Release the Oct Tree
protected DisposeObject ( ) : void
return void

GetPointsWithinSphere() public method

Get the points within the specific sphere
public GetPointsWithinSphere ( MCvPoint3D32f center, float radius ) : MCvPoint3D32f[]
center MCvPoint3D32f The center of the sphere
radius float The radius of the sphere
return MCvPoint3D32f[]

Octree() public method

Create an empty Oct-Tree
public Octree ( ) : System
return System

Octree() public method

Create an Oct-Tree from the given points
public Octree ( MCvPoint3D32f points, int maxLevels, int minPoints ) : System
points MCvPoint3D32f The points to be inserted into the Oct-Tree
maxLevels int The maximum levels of the Oct-Tree
minPoints int The minimum number of points in each level
return System

ReleaseManagedResources() protected method

Release the managed memory associated with this Oct Tree
protected ReleaseManagedResources ( ) : void
return void