File size: 185 Bytes
7f59ad6
e27eeb9
7f59ad6
 
 
2d5f0c1
 
e27eeb9
7f59ad6
1
2
3
4
5
6
7
8
9
import PIL as image

def gray(image):
    image_gray = image.convert('L')
    return image_gray
    
import gradio as gr

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