Plannar Subdivision, can be use to compute Delaunnay's triangulation or Voroni diagram.

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 class PlanarSubdivision : UnmanagedObject, 
	IEnumerable<MCvQuadEdge2D>, IEnumerable
Public Class PlanarSubdivision _
	Inherits UnmanagedObject _
	Implements IEnumerable(Of MCvQuadEdge2D), IEnumerable
public ref class PlanarSubdivision : public UnmanagedObject, 
	IEnumerable<MCvQuadEdge2D>, IEnumerable

Members

               
 All Members  Constructors   Fields   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
PlanarSubdivision(array<PointF>[]()[][])
Create a planar subdivision from the given points. The ROI is computed as the minimun bounding Rectangle for the input points
PlanarSubdivision(Rectangle%)
Start the Delaunay's triangulation in the specific region of interest.
PlanarSubdivision(array<PointF>[]()[][], Boolean)
Create a planar subdivision from the given points. The ROI is computed as the minimun bounding Rectangle for the input points
_ptr
A pointer to the unmanaged object
(Inherited from UnmanagedObject.)
Dispose()()()()
The dispose function that implements IDisposable interface
(Inherited from DisposableObject.)
DisposeObject()()()()
Release unmanaged resources
(Overrides DisposableObject..::..DisposeObject()()()().)
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Finalize()()()()
Destructor
(Inherited from DisposableObject.)
FindNearestPoint2D(PointF%)
Finds subdivision vertex that is the closest to the input point. It is not necessarily one of vertices of the facet containing the input point, though the facet (located using cvSubdiv2DLocate) is used as a starting point.
GetDelaunayTriangles()()()()
Returns the triangles of the Delaunay's triangulation
GetDelaunayTriangles(Boolean)
Retruns the triangles subdivision of the current planar subdivision.
GetEnumerator()()()()
Get an enumerator of the QuadEdges in this plannar subdivision
GetHashCode()()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()()
Gets the Type of the current instance.
(Inherited from Object.)
GetVoronoiFacets()()()()
Obtains the list of Voronoi Facets
Insert(PointF)
Insert a point to the triangulation. If the point is already inserted, no changes will be made.
Insert(array<PointF>[]()[][], Boolean)
Insert a collection of points to this planar subdivision
Locate(PointF%, Nullable<(Of <<'(MCvSubdiv2DEdge>)>>)%, Nullable<(Of <<'(MCvSubdiv2DPoint>)>>)%)
Locates input point within subdivision
MCvSubdiv2D
Get the MCvSubdiv2D structure of this Delaunay's triangulation
MemberwiseClone()()()()
Creates a shallow copy of the current Object.
(Inherited from Object.)
Ptr
Pointer to the unmanaged object
(Inherited from UnmanagedObject.)
ReleaseManagedResources()()()()
Release the storage related to this triangulation
(Overrides DisposableObject..::..ReleaseManagedResources()()()().)
ToString()()()()
Returns a String that represents the current Object.
(Inherited from Object.)

Inheritance Hierarchy

System..::..Object
  Emgu.Util..::..DisposableObject
    Emgu.Util..::..UnmanagedObject
      Emgu.CV..::..PlanarSubdivision

See Also