Indicates whether or not the face is wearing sunglasses, and the confidence level in the determination.

interface Sunglasses {
    Confidence?: number;
    Value?: boolean;
}

Properties

Properties

Confidence?: number

Level of confidence in the determination.

Value?: boolean

Boolean value that indicates whether the face is wearing sunglasses or not.