You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
In
function drawBody(personSegmentation)
thecontext.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.The text was updated successfully, but these errors were encountered: