class HumanTrackingData (Niantic.ARDK.AR.Awareness.HumanTrackingData)

Overview

class HumanTrackingData {
public:
    // fields

    readonly IReadOnlyList<Detection> Detections;

    // properties

    IReadOnlyList<Detection> AlignedDetections;

    // methods

    HumanTrackingData(
        IReadOnlyList<Detection> detections,
        Matrix4x4 viewportTransform
    );
};

Detailed Documentation

注釈

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

readonly IReadOnlyList<Detection> Detections

The original raw detections in the AR image's coordinate frame.

注釈

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

IReadOnlyList<Detection> AlignedDetections

Detections aligned with display orientation and viewport.

注釈

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

Methods

HumanTrackingData(
    IReadOnlyList<Detection> detections,
    Matrix4x4 viewportTransform
)

注釈

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