Umair khan commited on
Commit
9318948
·
1 Parent(s): 898d062
Files changed (1) hide show
  1. app.py +33 -0
app.py CHANGED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import cv2
2
+ import gradio as gr
3
+ import numpy as np
4
+
5
+ import cv2
6
+ import gradio as gr
7
+ import numpy as np
8
+
9
+ def process_frame():
10
+ cap = cv2.VideoCapture(0)
11
+ ret, frame = cap.read()
12
+
13
+ if not ret:
14
+ cap.release()
15
+ return np.zeros((512, 512, 3), dtype=np.uint8)
16
+
17
+ gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
18
+ edges = cv2.Canny(gray, 100, 200)
19
+ edges_bgr = cv2.cvtColor(edges, cv2.COLOR_GRAY2BGR)
20
+
21
+ cap.release()
22
+ return edges_bgr
23
+
24
+ iface = gr.Interface(
25
+ fn=process_frame,
26
+ inputs=[],
27
+ outputs="image",
28
+ live=True,
29
+ title="Real-Time Edge Detection",
30
+ description="This application captures frames from the webcam and applies edge detection."
31
+ )
32
+
33
+ iface.launch()