Generate a random point cloud around the ellipse.
Namespace:
Emgu.CV
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
Visual Basic (Declaration) |
---|
Public Shared Function GeneratePointCloud ( _
e As Ellipse, _
numberOfPoints As Integer _
) As PointF() |
Visual C++ |
---|
public:
static array<PointF>^ GeneratePointCloud(
Ellipse e,
int numberOfPoints
) |
Parameters
- e
- Type: Emgu.CV.Structure..::.Ellipse
The region where the point cloud will be generated. The axes of e corresponds to std of the random point cloud.
- numberOfPoints
- Type: System..::.Int32
The number of points to be generated
Return Value
A random point cloud around the ellipse
See Also