Video Streaming

Server is running at http://localhost:8082

Source video: 640x480 at 20.0 FPS

Live Stream Processing at 0.00 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.

Live Stream

Detection Data

Loading...

Server Statistics

Loading...

Available Endpoints:

Client Connection Example

socket = io('/ws/detections', {
    reconnection: true,
    reconnectionAttempts: 5
});

socket.on('detection_update', function(data) {
    console.log('Detection data:', data);
});