eyad222 commited on
Commit
c4aabb9
·
verified ·
1 Parent(s): 64afa5f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -32,10 +32,10 @@ def recognize_face_from_frame(frame):
32
 
33
  iface = gr.Interface(
34
  fn=recognize_face_from_frame,
35
- inputs=gr.Image(tool="editor", type="numpy"),
36
  outputs="text",
37
  title="🔍 EigenFace Recognition",
38
- description="Upload a face image or take a picture with your webcam."
39
  )
40
 
41
  iface.launch()
 
32
 
33
  iface = gr.Interface(
34
  fn=recognize_face_from_frame,
35
+ inputs=gr.Image(type="numpy"),
36
  outputs="text",
37
  title="🔍 EigenFace Recognition",
38
+ description="Upload a face image (webcam capture available on some devices)."
39
  )
40
 
41
  iface.launch()