Returns a shallow copy of the frame. The copy will share the point cloud data with the original frame.
This means that modifications to the point cloud data in the copy will also affect the original frame.
Namespace:
Zivid.NET
Assembly:
ZividCoreNET (in ZividCoreNET.dll) Version: 2.15.0.0
Syntaxpublic Frame ShallowCopy()
Public Function ShallowCopy As Frame
public:
Frame^ ShallowCopy()
Return Value
Type:
Frame
Remarks
To create a deep copy of the frame, use the
Clone method instead.
The copy will not be disposed when the original frame is disposed. Both the original and the copy will
need to be disposed separately.
See Also