File size: 761 Bytes
9318948
831fb22
9318948
 
831fb22
 
 
 
9318948
831fb22
9318948
831fb22
 
9318948
831fb22
9318948
 
831fb22
 
 
 
 
9318948
831fb22
9318948
 
831fb22
 
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
import gradio as gr
import cv2
import numpy as np

# Function to process uploaded images
def process_image(image):
    # Convert image to grayscale
    gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
    
    # Apply Canny edge detection
    edges = cv2.Canny(gray, 100, 200)
    
    # Convert edges back to 3-channel image for display
    edges_bgr = cv2.cvtColor(edges, cv2.COLOR_GRAY2BGR)
    
    return edges_bgr

# Gradio Interface
interface = gr.Interface(
    fn=process_image,
    inputs=gr.Image(type="numpy", label="Upload an Image"),
    outputs=gr.Image(type="numpy", label="Edges Detected"),
    title="Real-Time Edge Detection",
    description="Upload an image to detect edges using Canny Edge Detection."
)

# Launch the app
interface.launch()