image-js
Version:
Image processing and manipulation in JavaScript
9 lines • 476 B
TypeScript
import type { OrientedFastKeypoint } from './getOrientedFastKeypoints.js';
/**
* Return the best keypoints within the given radius in pixels.
* @param keypoints - Keypoints to process.
* @param radius - Minimum distance in pixels between two keypoints.
* @returns The filtered keypoints.
*/
export declare function getBestKeypointsInRadius(keypoints: OrientedFastKeypoint[], radius?: number): OrientedFastKeypoint[];
//# sourceMappingURL=getBestKeypointsInRadius.d.ts.map