File size: 1,206 Bytes
107e598
58540b4
 
55d8422
58540b4
 
55d8422
a495125
58540b4
 
107e598
58540b4
 
 
 
322b363
 
 
 
 
 
58540b4
 
 
 
 
 
 
 
 
 
 
 
107e598
 
58540b4
a495125
58540b4
107e598
58540b4
a495125
58540b4
a495125
107e598
 
6082c89
 
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
import gradio as gr
from huggingface_hub import hf_hub_download
from ultralytics import YOLO
from PIL import Image
import cv2
import numpy as np

# Download model from Hugging Face Hub
model_path = hf_hub_download(repo_id="arnabdhar/YOLOv8-Face-Detection", filename="model.pt")
model = YOLO(model_path)

def process_video(video_path):
    # Open the video file
    cap = cv2.VideoCapture(video_path)
    unique_faces = set()

    while cap.isOpened():
        ret, frame = cap.read()
        if not ret:
            break

        # Convert the frame to PIL Image
        frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
        pil_image = Image.fromarray(frame)

        # Detect faces in the frame
        output = model(pil_image)
        faces = output.pred[0]

        # Iterate over detected faces and add them to the set
        for face in faces:
            face_data = tuple(face.numpy())
            unique_faces.add(face_data)

    cap.release()
    return len(unique_faces)

# Gradio interface
iface = gr.Interface(
    fn=process_video,
    inputs=gr.Video(label="Upload a Video"),
    outputs="number",
    title="Unique Face Counter in Video"
)

if __name__ == "__main__":
    iface.launch()