Generate a random point cloud around the ellipse.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public static PointF[] GeneratePointCloud(
	Ellipse e,
	int numberOfPoints
)
Public Shared Function GeneratePointCloud ( _
	e As Ellipse, _
	numberOfPoints As Integer _
) As PointF()
public:
static array<PointF>^ GeneratePointCloud(
	Ellipse e, 
	int numberOfPoints
)

Parameters

e
Ellipse
The region where the point cloud will be generated. The axes of e corresponds to std of the random point cloud.
numberOfPoints
Int32
The number of points to be generated

Return Value

A random point cloud around the ellipse

See Also