interface IAwarenessBuffer (Niantic.ARDK.AR.Awareness.IAwarenessBuffer)

Overview

interface IAwarenessBuffer {
    // properties

    UInt32 Height;
    CameraIntrinsics Intrinsics;
    bool IsKeyframe;
    Matrix4x4 ViewMatrix;
    UInt32 Width;

    // methods

    IAwarenessBuffer GetCopy();
};

// direct descendants

template <T>
interface IDataBuffer;

Detailed Documentation

Properties

UInt32 Height

Height of the buffer.

CameraIntrinsics Intrinsics

Intrinsics values of the image this depth buffer was generate from.

bool IsKeyframe

True if this buffer is a keyframe (i.e. not interpolated).

Matrix4x4 ViewMatrix

View matrix of the ARCamera when this buffer was generated.

UInt32 Width

Width of the buffer.

Methods

IAwarenessBuffer GetCopy()

Copies the awareness buffer.

Returns:

A new typed awareness buffer copied.