ImageJS
    Preparing search index...

    Interface CannyEdgeOptions

    interface CannyEdgeOptions {
        gaussianBlurOptions?: GaussianBlurOptions;
        highThreshold?: number;
        hysteresis?: boolean;
        lowThreshold?: number;
        out?: Mask;
    }
    Index

    Properties

    gaussianBlurOptions?: GaussianBlurOptions

    Standard deviation of the gaussian blur (sigma). Value must be between 0 and 1.

    { sigma: 1 }

    highThreshold?: number

    Higher threshold of the gaussian blur (indicates the strong edges to keep). Value must be between 0 and 1.

    0.1

    hysteresis?: boolean

    Enable/ disable hysteresis steps.

    true

    lowThreshold?: number

    Lower threshold of the gaussian blur (indicates the weak edges to discard).

    0.04

    out?: Mask

    Image to which the resulting image has to be put.