Server is running at http://localhost:8082
Source video: 640x480 at 20.0 FPS
Note: The video is being processed in real-time by the YOLO model, which is computationally intensive. The actual streaming speed matches the processing rate.
Loading...
ws://localhost:8082/ws/detections
socket = io('/ws/detections', {
reconnection: true,
reconnectionAttempts: 5
});
socket.on('detection_update', function(data) {
console.log('Detection data:', data);
});