Daniel Koohmarey
Daniel Koohmarey
Intended to resolve https://github.com/bensonruan/webcam-easy/issues/17
Calling webcam.start with default args of stream = true, the stream call results in two separate prompts to the user to allow access to the webcam in Chrome. Is there...
Why doesn't the demo page use the json2html module? Wouldn't it make more sense to generate the html using the json2html module this should be demoing?
Minor library improvements.
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...