image-js / image-js-typescript

Temporary repository to work on the migration of image-js to TypeScript
https://image-js.github.io/image-js-typescript/
MIT License
5 stars 5 forks source link

Implement `getHarrisKeypoints` #392

Open opatiny opened 11 months ago

opatiny commented 11 months ago

We already have a function to compute the Harris score (response) of a given point in an image, but we want to implement the function returning all the Harris keypoints for a given image. This feature was requested in https://github.com/image-js/image-js/issues/628.

const keypoints = getHarrisKeypoints(image, options);

Wikipedia article for Harris corner detector: https://en.wikipedia.org/wiki/Harris_corner_detector

TaihuLight commented 4 months ago

@opatiny #https://github.com/image-js/image-js/issues/628 Has this function been implemented in image-js-typescript?