image-js
Version:
Image processing and manipulation in JavaScript
9 lines • 428 B
TypeScript
import type { FastKeypoint } from '../keypoints/getFastKeypoints.js';
/**
* Scales the coordinates of the keypoints.
* @param keypoints - Keypoints to scale.
* @param scale - Scalar by which to multiply the coordinates.
* @returns Scaled keypoints (copy of the original array).
*/
export declare function scaleKeypoints(keypoints: FastKeypoint[], scale: number): FastKeypoint[];
//# sourceMappingURL=scaleKeypoints.d.ts.map