Class ObservableObject
Represents any object Vector can see in the world.
Implements
Inherited Members
Namespace: Anki.Vector.Objects
Assembly: Anki.Vector.dll
Syntax
public abstract class ObservableObject : RobotObject, INotifyPropertyChanged
Properties
| Improve this Doc View SourceIsVisible
Gets a value indicating whether the element has been observed recently.
public bool IsVisible { get; protected set; }
Property Type
Boolean |
LastEventTime
Gets or sets the time of the last event
public DateTime LastEventTime { get; protected set; }
Property Type
DateTime |
LastImageRect
Gets the location in 2d camera space where this object was last seen.
public ImageRect LastImageRect { get; protected set; }
Property Type
ImageRect |
LastObservedTime
Gets the time this object was last seen
public DateTime LastObservedTime { get; protected set; }
Property Type
DateTime |
LastObservedTimestamp
Gets the time this object was last seen according to Vector’s time.
public uint LastObservedTimestamp { get; protected set; }
Property Type
UInt32 |
ObjectTypeName
Gets the name of the object type.
public abstract string ObjectTypeName { get; }
Property Type
String |
Pose
Gets the pose of this object in the world.
public Pose Pose { get; protected set; }
Property Type
Pose |