UNPKG

face-api.js

Version:

JavaScript API for face detection and face recognition in the browser with tensorflow.js

15 lines 489 B
import { CELL_SIZE } from './config'; export function pyramidDown(minFaceSize, scaleFactor, dims) { var height = dims[0], width = dims[1]; var m = CELL_SIZE / minFaceSize; var scales = []; var minLayer = Math.min(height, width) * m; var exp = 0; while (minLayer >= 12) { scales.push(m * Math.pow(scaleFactor, exp)); minLayer = minLayer * scaleFactor; exp += 1; } return scales; } //# sourceMappingURL=pyramidDown.js.map