bensonruan / Selfie-Anywhere

Selfie Anywhere
https://bensonruan.com
MIT License
50 stars 22 forks source link

Bug in selfie-anywhere.js drawbody webcam drawing #2

Open DanielKoohmarey opened 3 years ago

DanielKoohmarey commented 3 years ago

In function drawBody(personSegmentation) the context.drawImage(webcamElement, 0, 0); line does not account for various webcam resolutions and the logic fails. This needs the additional arguments: context.drawImage(webcamElement, 0, 0, webcamElement.width, webcamElement.height); to work.