Struct XRTrackedImage
Contains low-level data for a tracked image in the environment.
Syntax
public struct XRTrackedImage : ITrackable, IEquatable<XRTrackedImage>
Constructors
XRTrackedImage(TrackableId, Guid, Pose, Vector2, TrackingState, IntPtr)
Declaration
public XRTrackedImage(TrackableId trackableId, Guid sourceImageId, Pose pose, Vector2 size, TrackingState trackingState, IntPtr nativePtr)
Parameters
Type |
Name |
Description |
TrackableId |
trackableId |
The TrackableId associated with this tracked image.
|
Guid |
sourceImageId |
A GUID associated with the source image.
|
Pose |
pose |
The Pose associated with the detected image.
|
Vector2 |
size |
The size (i.e., dimensions) of the detected image.
|
TrackingState |
trackingState |
The TrackingState of the detected image.
|
IntPtr |
nativePtr |
A native pointer associated with the detected image.
|
Properties
defaultValue
Declaration
public static XRTrackedImage defaultValue { get; }
Property Value
nativePtr
A native pointer associated with this tracked image.
The data pointed to by this pointer is implementation-defined.
While its lifetime is also implementation-defined, it should be
valid at least until the next call to
GetChanges(Allocator).
Declaration
public IntPtr nativePtr { get; }
Property Value
Implements
pose
The Pose
associated with this tracked image.
Declaration
public Pose pose { get; }
Property Value
Implements
size
The size (i.e., dimensions) of this tracked image.
Declaration
public Vector2 size { get; }
Property Value
sourceImageId
The GUID
associated with the source image.
Declaration
public Guid sourceImageId { get; }
Property Value
trackableId
Declaration
public TrackableId trackableId { get; }
Property Value
Implements
trackingState
Declaration
public TrackingState trackingState { get; }
Property Value
Implements
Methods
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
Type |
Name |
Description |
Object |
obj |
|
Returns
Overrides
Equals(XRTrackedImage)
Declaration
public bool Equals(XRTrackedImage other)
Parameters
Returns
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
Operators
Equality(XRTrackedImage, XRTrackedImage)
Declaration
public static bool operator ==(XRTrackedImage lhs, XRTrackedImage rhs)
Parameters
Returns
Inequality(XRTrackedImage, XRTrackedImage)
Declaration
public static bool operator !=(XRTrackedImage lhs, XRTrackedImage rhs)
Parameters
Returns