UNPKG

face-api.js

Version:

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

5 lines 224 B
import * as tf from '@tensorflow/tfjs-core'; export function bgrToRgbTensor(tensor) { return tf.tidy(function () { return tf.stack(tf.unstack(tensor, 3).reverse(), 3); }); } //# sourceMappingURL=bgrToRgbTensor.js.map