Interface GetHarrisScoreOptions

interface GetHarrisScoreOptions {
    harrisConstant?: number;
    windowSize?: number;
}

Properties

harrisConstant?: number

Constant for the score computation. Should be between 0.04 and 0.06 (empirical values). This consant is commonly called k.

Default

0.04

windowSize?: number

Size of the window to compute the Harris score. Should be an odd number so that the window can be centered on the corner.

Default

7