File size: 1,517 Bytes
688476b
 
 
 
 
 
 
 
 
 
 
 
b62f019
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
688476b
 
 
 
 
b62f019
688476b
b62f019
688476b
 
b62f019
688476b
b62f019
 
688476b
b62f019
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import gradio as gr
from ultralytics import YOLO
import cv2
import numpy as np
# charger le modèle
model = YOLO("yolov8n-seg.pt")

# Fonction pour la détection sur image
def detect_objects_image(img):
    results = model(img)  # Détection
    annotated_frame = results[0].plot()  # Annoter les résultats
    return annotated_frame
  
# Fonction pour la détection sur video
def detect_objects_video(video_path):
    cap = cv2.VideoCapture(video_path)
    fourcc = cv2.VideoWriter_fourcc(*'mp4v')
    out_path = "annotated_video.mp4"
    out = cv2.VideoWriter(out_path, fourcc, 20.0, (int(cap.get(3)), int(cap.get(4))))

    while cap.isOpened():
        ret, frame = cap.read()
        if not ret:
            break
        result = model(frame)
        annotated = result[0].plot()
        out.write(annotated)

    cap.release()
    out.release()
    return out_path


demo = gr.Blocks(theme='earneleh/paris')

#Interface Gradio

image_input = gr.Image(type="numpy", label="Image à analyser")
video_input = gr.Image(label="Video à analyser")

image_output = gr.Image(type="numpy", label="Image annotée")
video_output = gr.Image(label="Video annotée")

interface1 = gr.Interface(fn=detect_objects_image, inputs=image_input, outputs=image_output, title="Détection sur Image")
interface2 = gr.Interface(fn=detect_objects_video, inputs=video_input, outputs=video_output, title="Détection sur Video")

with demo: 
  gr.TabbedInterface(
      [interface1, interface2],
      ['Image', 'Video']
  )
demo.launch()