Thedatababbler commited on
Commit
adde5a6
·
1 Parent(s): 7fc5847
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,8 +1,9 @@
1
  import gradio as gr
2
  import cv2
3
 
4
- def to_black(image):
5
  output = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
 
6
  return output
7
 
8
  interface = gr.Interface(fn=to_black, inputs=["image", "text"], outputs=["image", "text"])
 
1
  import gradio as gr
2
  import cv2
3
 
4
+ def to_black(image, text):
5
  output = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
6
+ outputs = [output, text]
7
  return output
8
 
9
  interface = gr.Interface(fn=to_black, inputs=["image", "text"], outputs=["image", "text"])