Struct YoloMask
Represents a binary mask used in Segmentation tasks within the Yolo model. Contains an image of the mask and the bounds of the mask.
Inherited Members
Namespace: EyeAuras.OpenCVAuras.ML.Yolo
Assembly: EyeAuras.OpenCVAuras.Shared.dll
Syntax
public readonly struct YoloMask : IDisposable, IEquatable<YoloMask>
Properties
Name | Description |
---|---|
MaskBounds | The bounding rectangle of the mask, specifying the area covered by the mask in the original image. |
MaskImage | The binary mask image, where each pixel value indicates the presence or absence of the object in that pixel. |
Methods
Name | Description |
---|---|
Dispose() | Disposes the MaskImage resource. It's important to call this method to release the memory resources when the mask is no longer needed. |
Equals(YoloMask) | |
Equals(object) | |
GetHashCode() | |
ToString() |
Operators
Name | Description |
---|---|
operator ==(YoloMask, YoloMask) | |
operator !=(YoloMask, YoloMask) |