Enum MLFindClassStrategy
Specifies the strategy used to select a single prediction from ML search results.
Namespace: EyeAuras.OpenCVAuras.Nodes.MLFindClass
Assembly: EyeAuras.OpenCVAuras.Metadata.dll
Syntax
public enum MLFindClassStrategy
Fields
Name | Description |
---|---|
Closest | Selects the prediction closest to a specified reference point. The exact reference point is defined separately in the MLFindClosestPointStrategy enum. |
FirstInList | Selects the first prediction in the list of ML predictions that matches the class criteria. This strategy is the fastest and simplest, but does not consider confidence or position. |
HighestConfidence | Selects the prediction with the highest confidence value among all predictions matching the class criteria. This strategy prioritizes accuracy over position or order. |