We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93730b2 commit da47933Copy full SHA for da47933
src/BodyPix/index.js
@@ -30,8 +30,14 @@ class BodyPix {
30
/**
31
* Create BodyPix.
32
* @param {HTMLVideoElement} video - An HTMLVideoElement.
33
- * @param {object} options - An object with options.
34
- * @param {function} callback - A callback to be called when the model is ready.
+ * @param {{
+ * multiplier: Number;
35
+ * outputStride: Number;
36
+ * segmentationThreshold: Number;
37
+ * palette: Object;
38
+ * returnTensors: Boolean;
39
+ * }} options - An object with options.
40
+ * @param {Function} callback - A callback to be called when the model is ready.
41
*/
42
constructor(video, options, callback) {
43
this.video = video;
0 commit comments