Click or drag to resize

Mask Class

Binary mask for filtering point cloud data.
Inheritance Hierarchy
SystemObject
  Zivid.NETMask

Namespace:  Zivid.NET
Assembly:  ZividCoreNET (in ZividCoreNET.dll) Version: 2.18.0.0
Syntax
public class Mask : IDisposable

The Mask type exposes the following members.

Constructors
  NameDescription
Public methodMask(Mask*)
Initializes a new instance of the Mask class
Public methodMask(Resolution)
Create an empty mask with specified resolution.
Public methodMask(Resolution, Byte)
Create a mask from raw data.
Top
Properties
  NameDescription
Public propertyHeight
Get the height of the mask.
Public propertyIsDisposed
Check if the mask is disposed.
Public propertyItem
Public propertyWidth
Get the width of the mask.
Top
Methods
  NameDescription
Public methodDispose
Releases all resources used by the Mask
Public methodGetNativePtr
Public methodGetResolution
Get the resolution of the mask.
Public methodToString
Get a string representation of the mask.
(Overrides ObjectToString.)
Top
Remarks
The Mask class represents a 2D binary mask that can be used to filter point cloud data. Zero values in the mask indicate that the corresponding point should be preserved, while non-zero values indicate that the point should be masked out (set to NaN).
See Also