File size: 197 Bytes
a3cde9f
4801698
a3cde9f
c170487
 
 
a3cde9f
c170487
a3cde9f
1
2
3
4
5
6
7
8
9
10
import gradio as gr
import cv2

def greet(image):
    gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
    return gray

iface = gr.Interface(fn=greet, inputs="image", outputs="image")
iface.launch()