image-js
Version:
Image processing and manipulation in JavaScript
10 lines • 383 B
TypeScript
import { Matrix } from 'ml-matrix';
import type { Point } from '../../geometry/index.js';
/**
* Convert row/column points to a matrix.
* Last row is padded with **ones** (ignore third dimension).
* @param points - Points to process.
* @returns The matrix.
*/
export declare function getMatrixFromPoints(points: Point[]): Matrix;
//# sourceMappingURL=getMatrixFromPoints.d.ts.map