PointCollectionGeneratePointCloud Method |
http://www.emgu.com
Generate a random point cloud around the ellipse.
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntaxpublic 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
)
static member GeneratePointCloud :
e : Ellipse *
numberOfPoints : int -> PointF[]
Parameters
- e
- Type: Emgu.CV.StructureEllipse
The region where the point cloud will be generated. The axes of e corresponds to std of the random point cloud. - numberOfPoints
- Type: SystemInt32
The number of points to be generated
Return Value
Type:
PointFA random point cloud around the ellipse
See Also