image-js
Version:
Image processing and manipulation in JavaScript
9 lines • 318 B
TypeScript
import type { Matrix } from 'ml-matrix';
import type { Point } from '../../geometry/index.js';
/**
* Convert matrix to points.
* @param matrix - Matrix to process.
* @returns Array of points.
*/
export declare function getPointsFromMatrix(matrix: Matrix): Point[];
//# sourceMappingURL=getPointsFromMatrix.d.ts.map