Class AssumedObjectData
The assumed object's data. Includes object's type and area.
public class AssumedObjectData
- Inheritance
-
AssumedObjectData
- Inherited Members
Constructors
AssumedObjectData()
Initializes a new instance of the AssumedObjectData class.
public AssumedObjectData()
AssumedObjectData(DetectedObjectType, Rectangle)
Initializes a new instance of the AssumedObjectData class.
public AssumedObjectData(DetectedObjectType type, Rectangle bounds)
Parameters
type
DetectedObjectTypeThe object's type.
bounds
RectangleThe object's bounds.
AssumedObjectData(string, Rectangle)
Initializes a new instance of the AssumedObjectData class.
public AssumedObjectData(string type, Rectangle bounds)
Parameters
Properties
Bounds
Gets or sets the object's bounds.
public Rectangle Bounds { get; set; }
Property Value
Type
Gets or sets the object's type.
public DetectedObjectType Type { get; set; }