mirror of
https://github.com/gradio-app/gradio.git
synced 2025-02-05 11:10:03 +08:00
* changes * changes * more fix * more fix * add changeset * fix initial crop * fix format * fix format * fix formats * faster? * race condition * fixes + test * fix type? * notebooks * fix type * change demo * add changeset * fix type * fix type * fix type again * fix type again again * lint * lint again * fix test * tests * fix * tests * address comments * fix notebooks * fix tests * fix stories * fix webcam ui * cleanup * add changeset * fix input event * add format param + fix input event * fix test --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com> Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
32 lines
892 B
Python
32 lines
892 B
Python
import gradio as gr
|
|
import time
|
|
|
|
|
|
def sleep(im):
|
|
time.sleep(5)
|
|
return [im["background"], im["layers"][0], im["layers"][1], im["composite"]]
|
|
|
|
|
|
def predict(im):
|
|
return im["composite"]
|
|
|
|
|
|
with gr.Blocks() as demo:
|
|
with gr.Row():
|
|
im = gr.ImageEditor(
|
|
type="numpy",
|
|
crop_size="1:1",
|
|
)
|
|
im_preview = gr.Image()
|
|
n_upload = gr.Number(0, label="Number of upload events", step=1)
|
|
n_change = gr.Number(0, label="Number of change events", step=1)
|
|
n_input = gr.Number(0, label="Number of input events", step=1)
|
|
|
|
im.upload(lambda x: x + 1, outputs=n_upload, inputs=n_upload)
|
|
im.change(lambda x: x + 1, outputs=n_change, inputs=n_change)
|
|
im.input(lambda x: x + 1, outputs=n_input, inputs=n_input)
|
|
im.change(predict, outputs=im_preview, inputs=im, show_progress="hidden")
|
|
|
|
if __name__ == "__main__":
|
|
demo.launch()
|