Skip to content

Commit

Permalink
Fix - Single pose mode should run if "single" is specified as "type". (
Browse files Browse the repository at this point in the history
  • Loading branch information
champierre authored and joeyklee committed Jul 5, 2019
1 parent 0546e37 commit 196afc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/PoseNet/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ class PoseNet extends EventEmitter {
}
if (this.detectionType === 'single') {
this.singlePose();
} else {
this.multiPose();
}

this.multiPose();
}
return this;
}
Expand Down

0 comments on commit 196afc5

Please sign in to comment.