ImageJS
    Preparing search index...

    Interface ExtremaOptions

    interface ExtremaOptions {
        algorithm?: "cross" | "square" | "star";
        kind?: "minimum" | "maximum";
        mask?: Mask;
        maxEquals?: number;
    }
    Index

    Properties

    algorithm?: "cross" | "square" | "star"

    Chooses what kind of coverage algorithm to use to compute the extremum.

    'star'

    kind?: "minimum" | "maximum"

    Chooses what kind of extremum to compute.

    'maximum'

    mask?: Mask

    Uses mask to check if a point belongs to a ROI or not

    undefined

    maxEquals?: number

    Maximum number of points that can be equal to the extremum

    2