face-api.js
Version:
JavaScript API for face detection and face recognition in the browser with tensorflow.js
11 lines • 365 B
JavaScript
import { Point } from '../classes';
export var IOU_THRESHOLD = 0.4;
export var BOX_ANCHORS = [
new Point(1.603231, 2.094468),
new Point(6.041143, 7.080126),
new Point(2.882459, 3.518061),
new Point(4.266906, 5.178857),
new Point(9.041765, 10.66308)
];
export var MEAN_RGB = [117.001, 114.697, 97.404];
//# sourceMappingURL=const.js.map