File size: 249 Bytes
8ab1249
 
 
 
 
 
 
 
 
8cf11b0
1
2
3
4
5
6
7
8
9
10
import gradio as gr
import cv2

def to_black(image):
  output = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
  print('===========================')
  return output

interface = gr.Interface(fn=to_black, inputs="image", outputs="image")
interface.launch()