Color
    Preparing search index...

    Interface Hsi

    An HSI representation of a color. Commonly used in computer vision applications.

    interface Hsi {
        "0": number;
        "1": number;
        "2": number;
        [key: number]: number;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: number]: number
    Index

    Properties

    0 1 2

    Properties

    "0": number

    The hue channel of this color in the range [0,1]. Multiply this value by 360 to get the hue angle in degrees.

    "1": number

    The saturation channel of this color in the range [0,1].

    "2": number

    The intensity channel of this color in the range [0,1].