Real-time object detection with WebRTC and YOLO
This example demonstrates how to architect a serverless real-time streaming application with Modal and WebRTC. The sample application detects objects in webcam video with YOLO. See the clip below from a live demo of this example in a course by [ Kwindla Kramer ] WebRTC OG and co-founder of [ Daily ] <center> <video controls autoplay muted> <source src="https://modal-cdn.com/example-webrtc_yolo.mp4" type="video/mp4"> </video> </center> You can also try our deployment [here](https://modal-labs-examples--example-webrtc-yolo-webcamobjdet-web.modal.run). What is WebRTC? WebRTC (Web Real-Time Communication) is an [ IETF Internet protocol ] and a [ W3C API specification ] for real-time media streaming between peers over internets or the World Wide Web. What makes it so effective and different from other bidirectional web-based communication protocols (e.g. WebSockets) is that it's purpose-built for media streaming in real time. It's pr...