123456789101112 |
- import gradio as gr
- import cv2
- def to_black(image):
- output = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
- return output
- # GUI http://127.0.0.1:7860/
- interface = gr.Interface(fn=to_black, inputs="image", outputs="image", examples=[["test.png"]])
- if __name__=='__main__':
- app,local_url, share_url= interface.launch(inbrowser=True, server_name='0.0.0.0')
|