Click or drag to resize

PointCloudClone Method

Returns a clone of the point cloud. The clone will include a copy of all of the point cloud data on the compute device memory. This means that the returned point cloud will not be affected by subsequent modifications (such as transform or downsample) on the original point cloud.

Namespace:  Zivid.NET
Assembly:  ZividCoreNET (in ZividCoreNET.dll) Version: 2.15.0.0
Syntax
public PointCloud Clone()

Return Value

Type: PointCloud
Remarks
To create a shallow copy of the point cloud, use the ShallowCopy method instead. This function incurs a performance cost due to the copying of the compute device memory. When performance is important we recommend to avoid using this method, and instead modify the existing point cloud.
See Also