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
How do I connect my RTSP IP camera instead of using the webcam, I tried using everything on the code below, help me if you've got the answer.
// Convenience function to setup a webcam
const flip = true; // whether to flip the webcam
webcam = new tmPose.Webcam(200, 200, flip); // width, height, flip
await webcam.setup(); // request access to the webcam
webcam.play();
window.requestAnimationFrame(loop);
// append/get elements to the DOM
const canvas = document.getElementById('canvas');
canvas.width = 200; canvas.height = 200;
ctx = canvas.getContext('2d');
The text was updated successfully, but these errors were encountered:
Ahmad1Jaber
changed the title
[FEATURE REQUEST]: Title
Using RTSP Camera instead of the WebCam
Jan 3, 2021
How do I connect my RTSP IP camera instead of using the webcam, I tried using everything on the code below, help me if you've got the answer.
// Convenience function to setup a webcam
const flip = true; // whether to flip the webcam
webcam = new tmPose.Webcam(200, 200, flip); // width, height, flip
await webcam.setup(); // request access to the webcam
webcam.play();
window.requestAnimationFrame(loop);
The text was updated successfully, but these errors were encountered: