index.js 240 B

123456789
  1. import { Mtcnn } from './Mtcnn';
  2. export * from './Mtcnn';
  3. export * from './MtcnnOptions';
  4. export function createMtcnn(weights) {
  5. var net = new Mtcnn();
  6. net.extractWeights(weights);
  7. return net;
  8. }
  9. //# sourceMappingURL=index.js.map