File size: 1,081 Bytes
006bb51
 
 
6e2e266
006bb51
 
 
f521c10
006bb51
b3f30d9
f1910ed
006bb51
f1910ed
006bb51
 
041ba6d
006bb51
 
 
 
 
f1910ed
f2f1f65
006bb51
 
 
f521c10
006bb51
 
 
 
 
 
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
import numpy as np
import cv2
import gradio as gr
from PIL import Image

# Load Haar Cascade classifier
face_cascade = cv2.CascadeClassifier(cv2.data.haarcascades + "haarcascade_frontalface_default.xml")
# slider=gr.Slider(minimum=1,maximum=2,step=.1,label="Adjust the scale factor.")
# Face Detection Function
def detect_faces(image_np,slider):
    img=np.array(gray_image)
    # Convert image to grayscale
    gray_image = cv2.cvtColor(img, cv2.COLOR_RGB2GRAY)

    # Detect faces
    faces = face_cascade.detectMultiScale(gray_image, scaleFactor=slider, minNeighbors=5, minSize=(30, 30))

    # Draw rectangles around faces
    for (x, y, w, h) in faces:
        cv2.rectangle(image_np, (x, y), (x + w, y + h), (0, 255, 0), 2)

    return img

# Create Gradio Interface
iface = gr.Interface(
    fn=detect_faces,
    inputs=["image",gr.Slider(minimum=1,maximum=2,step=.1,label="Adjust the scale factor.")],
    outputs="image",
    title="Face Detection",
    description="Upload an image, and the model will detect faces and draw bounding boxes around them."
)

iface.launch()