tinyimg - v1.0.0
    Preparing search index...

    Interface FaceBox

    One detection, in the coordinates of the image that was searched.

    interface FaceBox {
        height: number;
        neighbors: number;
        width: number;
        x: number;
        y: number;
    }

    Hierarchy (View Summary)

    Index
    height: number

    Height.

    neighbors: number

    Overlapping raw detections this box was formed from.

    A usable ranking: a face the cascade is confident about fires at several nearby positions and scales, so the highest is the most likely to be a face.

    width: number

    Width.

    x: number

    Left edge.

    y: number

    Top edge.