UNPKG

image-js

Version:

Image processing and manipulation in JavaScript

10 lines 428 B
import type { ModelFunction } from 'ml-ransac'; import type { Point } from '../../geometry/index.js'; /** * Apply a given transform to a set of points. * @param points - Points to process. * @param model - The transformation function. * @returns The transformed points. */ export declare function applyAffineTransfom(points: Point[], model: ModelFunction<Point>): Point[]; //# sourceMappingURL=applyAffineTransform.d.ts.map