struct Detection (Niantic.ARDK.AR.Awareness.Detection)

Overview

Detection rectangle and confidence. More…

struct Detection {
    // fields

    float Confidence;
    float Height;
    float Width;
    float X;
    float Y;

    // properties

    Rect Rect;
};

Detailed Documentation

Detection rectangle and confidence.

Note

This is an experimental feature. Experimental features should not be used in production products as they are subject to breaking changes, not officially supported, and may be deprecated without notice

Fields

float Confidence

Confidence level between 0 to 1 where 0 is uncertain and 1 is 100% confident it is found.

Note

This is an experimental feature. Experimental features should not be used in production products as they are subject to breaking changes, not officially supported, and may be deprecated without notice

float Height

Height of detection rectangle.

Note

This is an experimental feature. Experimental features should not be used in production products as they are subject to breaking changes, not officially supported, and may be deprecated without notice

float Width

Width of detection rectangle.

Note

This is an experimental feature. Experimental features should not be used in production products as they are subject to breaking changes, not officially supported, and may be deprecated without notice

float X

Position x of detection rectangle.

Note

This is an experimental feature. Experimental features should not be used in production products as they are subject to breaking changes, not officially supported, and may be deprecated without notice

float Y

Position y of detection rectangle.

Note

This is an experimental feature. Experimental features should not be used in production products as they are subject to breaking changes, not officially supported, and may be deprecated without notice

Properties

Rect Rect

Rectangle representing the position of the detection.

Note

This is an experimental feature. Experimental features should not be used in production products as they are subject to breaking changes, not officially supported, and may be deprecated without notice