CoolFace
Apppublic

beng-cccat/test

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
app.py10 linesDownload Raw Back to root
1import gradio as gr2import cv23 4def to_black(image):5    output = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)6    return output7 8interface = gr.Interface(fn=to_black, inputs="image", outputs="image")9interface.launch(server_name='127.0.0.1',server_port=7788)10