mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-03 01:50:59 +08:00
23 lines
597 B
Python
23 lines
597 B
Python
import gradio as gr
|
|
from time import time
|
|
from PIL import Image, ImageFilter
|
|
|
|
|
|
def image_mod(image):
|
|
return image.rotate(45), image.filter(ImageFilter.FIND_EDGES)
|
|
|
|
|
|
gr.Interface(image_mod,
|
|
gr.inputs.Image(type="pil", tool="select"),
|
|
[
|
|
gr.outputs.Image(type="pil"),
|
|
gr.outputs.Image(type="pil"),
|
|
],
|
|
examples=[
|
|
["images/cheetah1.jpg"],
|
|
["images/cheetah2.jpg"],
|
|
["images/lion.jpg"],
|
|
],
|
|
live=True,
|
|
).launch(share=True)
|