Enum MLFindClosestPointStrategy
Specifies the reference point used by the Closest strategy to determine which ML prediction is nearest.
Namespace: EyeAuras.OpenCVAuras.Nodes.MLFindClass
Assembly: EyeAuras.OpenCVAuras.Metadata.dll
Syntax
public enum MLFindClosestPointStrategy
Fields
Name | Description |
---|---|
ClosestToCenter | Selects the prediction closest to the center of the screen or the center of the analyzed region. Typically used for targeting or centering logic. |
ClosestToCursor | Selects the prediction closest to the current position of the cursor (mouse pointer). Typically used in interactive scenarios where user focus matters. |
ClosestToPoint | Selects the prediction closest to an explicitly specified custom point. This point is defined separately in the node properties, allowing maximum flexibility. |