Struct YoloClassification
Represents a classification result from a YOLO (You Only Look Once) object detection model. This struct provides details about the detected object, including its classification score, associated label, and class index.
Implements
Inherited Members
Namespace: EyeAuras.OpenCVAuras.ML.Yolo
Assembly: EyeAuras.OpenCVAuras.Shared.dll
Syntax
public readonly struct YoloClassification : IEquatable<YoloClassification>
Properties
Name | Description |
---|---|
ClassIdx | Gets the class index of the detected object. This index corresponds to the position of the object's class in the predefined list of classes that the model is trained to detect. It serves as a numeric identifier for the object's class. |
Label | Gets the label associated with the detected object. The label provides detailed information about the class or category of the object as recognized by the model. |
Score | Gets the classification score for the detected object. The score, typically ranging from 0 to 1, indicates the confidence level of the model in classifying the object. A higher score represents greater confidence. |
Methods
Name | Description |
---|---|
Equals(YoloClassification) | |
Equals(object) | |
GetHashCode() | |
ToString() |
Operators
Name | Description |
---|---|
operator ==(YoloClassification, YoloClassification) | |
operator !=(YoloClassification, YoloClassification) |