DensePointCloudCreateT Method (Int32, Int32)

CVB.Net Documentation
Creates a new dense point cloud with the specified width, height and components of the given type T.

Namespace:  Stemmer.Cvb
Assembly:  Stemmer.Cvb (in Stemmer.Cvb.dll) Version: 14.0.0.0
Syntax

public static DensePointCloud Create<T>(
	int width,
	int height
)
where T : struct, new()

Parameters

width
Type: SystemInt32
Width of the point cloud to create.
height
Type: SystemInt32
Height of the point cloud to create.

Type Parameters

T
One of Stemmer.Cvb.Point3D types.

Return Value

Type: DensePointCloud
Newly created dense point cloud.
Exceptions

ExceptionCondition
ArgumentExceptionWhen T is not double or float.
CvbExceptionWhen creating the dense point cloud failed.
See Also

Reference