ImageJS
    Preparing search index...

    Interface GetFastKeypointsOptions

    interface GetFastKeypointsOptions {
        fastRadius?: number;
        harrisScoreOptions?: GetHarrisScoreOptions;
        maxNbFeatures?: number;
        nbContiguousPixels?: number;
        nonMaxSuppression?: boolean;
        scoreAlgorithm?: "HARRIS" | "FAST";
        threshold?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    fastRadius?: number

    Radius of the circle used for the algorithm.

    3

    harrisScoreOptions?: GetHarrisScoreOptions

    Options for the Harris score computation.

    maxNbFeatures?: number

    Maximum number of features to return.

    500

    nbContiguousPixels?: number

    Number of contiguous pixels on the circle that should have an intensity difference with current pixel larger than threshold. This value is recommended to be 3/4 of the circle points.

    3/4*circlePoints.length

    nonMaxSuppression?: boolean

    Whether to apply non-max suppression to the keypoints. This removes all keypoints which don't have the highest value within the adjacent keypoints.

    true

    scoreAlgorithm?: "HARRIS" | "FAST"

    Algorithm to use to compute corners score.

    'FAST'

    threshold?: number

    Threshold for the intensity difference.

    20