Creates an empty Delaunay subdivision, where 2d points can be added further using function cvSubdivDelaunay2DInsert. All the points to be added must be within the specified rectangle, otherwise a runtime error will be raised.

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 static IntPtr cvCreateSubdivDelaunay2D(
	Rectangle rect,
	IntPtr storage
)
Public Shared Function cvCreateSubdivDelaunay2D ( _
	rect As Rectangle, _
	storage As IntPtr _
) As IntPtr
public:
static IntPtr cvCreateSubdivDelaunay2D(
	Rectangle rect, 
	IntPtr storage
)

Parameters

rect
Rectangle
Rectangle that includes all the 2d points that are to be added to subdivision.
storage
IntPtr
Container for subdivision

Return Value

[Missing <returns> documentation for "M:Emgu.CV.CvInvoke.cvCreateSubdivDelaunay2D(System.Drawing.Rectangle,System.IntPtr)"]

See Also