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 c1c95cd commit 27e2378Copy full SHA for 27e2378
src/Handpose/index.js
@@ -67,7 +67,9 @@ class Handpose extends EventEmitter {
67
}
68
await mediaReady(image, false);
69
const { flipHorizontal } = this.config;
70
- const predictions = await this.model.estimateHands(image, flipHorizontal);
+ const predictions = await this.model.estimateHands(image, {
71
+ flipHorizontal,
72
+ });
73
const result = predictions;
74
75
this.emit("hand", result);
0 commit comments