EOIObjectDescription
Encapsulates object description details that are provided as input to EyesOnIt as well as detection status that is provided as output by EyesOnIt.
Namespace: EyesOnItSDK.Data.Elements
Properties
Name | Type | Description |
---|---|---|
Text | string | the text of the object description |
Threshold | int? | the alerting threshold for the object description |
Confidence | float? | the reported confidence level for this object description |
OverThreshold | bool? | true if the alerting conditions have been met for this object description, false otherwise |
BackgroundDescription | bool | true if this is the background description for the stream, false otherwise |
Constructor
Supports simple construction of an EOIObjectDescription object.
Signature 1
public EOIObjectDescription(string text, bool backgroundDescription)
Creates an EOIObjectDescription object from the provided parameters
Parameters
Name | Type | Description |
---|---|---|
text | string | the text of the object description |
backgroundDescription | bool | true if this is the background description for the stream, false otherwise |
Signature 2
public EOIObjectDescription()
Creates an EOIObjectDescription object with default values
Parameters
This method has no parameters