image-js
Version:
Image processing and manipulation in JavaScript
10 lines • 539 B
TypeScript
import type { OrientedFastKeypoint } from '../getOrientedFastKeypoints.js';
export type DistanceMatrix = Float64Array[];
/**
* Find all keypoints within radius from the current keypoint.
* @param keypoints - Keypoints to process.
* @param radius - Radius in which the surrounding keypoints should be.
* @returns Array of keypoints within radius for each of the keypoints.
*/
export declare function getKeypointsInRadius(keypoints: OrientedFastKeypoint[], radius: number): number[][];
//# sourceMappingURL=getKeypointsInRadius.d.ts.map