enum PlaneClassificationStatus (Niantic.ARDK.AR.Anchors.PlaneClassificationStatus)

Overview

The status values of “NotAvailable”, “Undetermined”, and “Unknown” are possible reasons why the plane’s classification is “None.” If the plane’s classification is NOT None, status will be “Known” More…

enum PlaneClassificationStatus {
    NotAvailable = 0,
    Undetermined = 1,
    Unknown      = 2,
    Known        = 3,
};

Detailed Documentation

The status values of “NotAvailable”, “Undetermined”, and “Unknown” are possible reasons why the plane’s classification is “None.” If the plane’s classification is NOT None, status will be “Known”

Enum Values

NotAvailable

ARKit cannot currently provide plane classification information because this device is not an iPhone XS/XR or higher.

Undetermined

ARKit has not yet produced a classification for the plane anchor. ARKit is still in the process of plane classification.

Unknown

ARKit has completed its classification process for the plane anchor, but the result is inconclusive.

Known

ARKit has completed its classfication process for the plane anchor. Use getClassification() to retrieve the plane’s classification.