Class VuMarkTargetResult
Result for a VuMarkTarget. The same VuMarkTarget can have multiple physical instances on screen simultaneously. In this case each appearance has its own VuMarkTargetResult, pointing to the same VuMarkTarget with the same instance ID.
Inherited Members
Namespace: Evergine.Vuforia
Assembly: Evergine.Vuforia.dll
Syntax
public class VuMarkTargetResult : TrackableResult<VuMarkTarget>
Properties
DataType
Gets the type of data the VuMarkResult contains.
Declaration
public VuMarkDataTypes DataType { get; }
Property Value
Type | Description |
---|---|
VuMarkDataTypes |
Id
Gets a unique id for a particular VuMark result, which is consistent frame-to-frame, while being tracked. Note that this id is separate from the trackable id.
Declaration
public int Id { get; }
Property Value
Type | Description |
---|---|
int |
NumericValue
Gets the byte buffer as a 64bit unsigned long if the data type is marked as a Numeric. 0 is returned otherwise.
Declaration
public ulong NumericValue { get; }
Property Value
Type | Description |
---|---|
ulong |
RawValue
Gets the raw byte data.
Declaration
public byte[] RawValue { get; }
Property Value
Type | Description |
---|---|
byte[] |
StringValue
Gets the byte buffer as a 64bit unsigned long if the data type is marked as a String. 0 is returned otherwise.
Declaration
public string StringValue { get; }
Property Value
Type | Description |
---|---|
string |