ImageJS
    Preparing search index...

    Interface LevelOptions

    interface LevelOptions {
        channels?: number[];
        gamma?: number | number[];
        inputMax?: number | number[];
        inputMin?: number | number[];
        out?: Image;
        outputMax?: number | number[];
        outputMin?: number | number[];
    }
    Index

    Properties

    channels?: number[]

    Specify which channels should be processed. To process the alpha as well, specify the channels as [0,1,2,3] for RGBA images and [0,1] for GREYA.

    All components of the image the image (no alpha).
    
    gamma?: number | number[]

    Specifies the shape of the curve connecting the two points.

    1

    inputMax?: number | number[]

    Input upper bound.

    image.minMax().min

    inputMin?: number | number[]

    Input lower bound.

    image.minMax().min

    out?: Image

    Image to which to output.

    outputMax?: number | number[]

    Output upper bound.

    image.maxValue

    outputMin?: number | number[]

    output lower bound.

    0