gradio/demo/flip_image.py

7 lines
133 B
Python
Raw Normal View History

2020-06-11 02:34:53 +08:00
import gradio as gr
import numpy as np
def flip(image):
return np.flipud(image)
2020-06-11 14:04:14 +08:00
gr.Interface(flip, "imagein", "image").launch()