Spaces:
Sleeping
Sleeping
File size: 488 Bytes
cba28f7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import gradio as gr
from video_processor import process_video
import os
def analyze_lbw(video):
output_path = process_video(video)
return output_path
app = gr.Interface(
fn=analyze_lbw,
inputs=gr.Video(label="Upload Cricket Clip"),
outputs=gr.Video(label="LBW Analysis Output"),
title="Smart LBW Decision System",
description="Upload a short video to analyze LBW using AI-powered object detection and tracking"
)
if __name__ == "__main__":
app.launch()
|