UNPKG

image-js

Version:

Image processing and manipulation in JavaScript

9 lines 413 B
import type { OrientedFastKeypoint } from '../getOrientedFastKeypoints.js'; export type DistanceMatrix = Float64Array[]; /** * Compute the squared distance from each keypoint to the other ones. * @param keypoints - Keypoints to process. * @returns Distance matrix. */ export declare function getDistanceMatrix(keypoints: OrientedFastKeypoint[]): DistanceMatrix; //# sourceMappingURL=getDistanceMatrix.d.ts.map