UNPKG

voluptasquisquam

Version:

Image processing and manipulation in JavaScript

16 lines (13 loc) 284 B
import {SVD} from 'ml-matrix'; /** * TODO would be suprised if this stuff works * @memberof Image * @instance * @return {object} SVD result */ export default function getSvd() { this.checkProcessable('getSvd', { bitDepth: [1] }); return SVD(this.points); }