Spaces:
Running
Running
Changes for gradio 4.0 image component
Browse files
app.py
CHANGED
@@ -84,7 +84,7 @@ Code: https://huggingface.co/spaces/it-at-m/image-anonymizer/tree/main
|
|
84 |
Ein Prototyp des it@M InnovationLab (itm.innolab@muenchen.de)
|
85 |
"""
|
86 |
|
87 |
-
|
88 |
fn=test_comb,
|
89 |
inputs=gr.Image(type="pil", label="Zu anonymisierendes Bild"),
|
90 |
outputs=[gr.Image(label="Anonymisiertes Bild"), gr.AnnotatedImage(label="Erkannte Regionen")],
|
@@ -92,24 +92,9 @@ demo_upload = gr.Interface(
|
|
92 |
allow_flagging="never",
|
93 |
examples="examples",
|
94 |
description=description,
|
95 |
-
article=article
|
|
|
|
|
96 |
)
|
97 |
|
98 |
-
|
99 |
-
fn=test_comb,
|
100 |
-
inputs=gr.Image(source="webcam", type="pil", label="Zu anonymisierendes Bild"),
|
101 |
-
outputs=[gr.Image(label="Anonymisiertes Bild"), gr.AnnotatedImage(label="Erkannte Regionen")],
|
102 |
-
title="Bild mit der Webcam aufnehmen",
|
103 |
-
allow_flagging="never",
|
104 |
-
description=description,
|
105 |
-
article=article
|
106 |
-
)
|
107 |
-
|
108 |
-
demo_tabbed = gr.TabbedInterface(
|
109 |
-
interface_list=[demo_upload, demo_webcam],
|
110 |
-
tab_names=["Bild auswählen / hochladen", "Bild mit der Webcam aufnehmen"],
|
111 |
-
title="Image Anonymizer / Bildanonymisierung",
|
112 |
-
css=css
|
113 |
-
)
|
114 |
-
|
115 |
-
demo_tabbed.launch()
|
|
|
84 |
Ein Prototyp des it@M InnovationLab (itm.innolab@muenchen.de)
|
85 |
"""
|
86 |
|
87 |
+
demo = gr.Interface(
|
88 |
fn=test_comb,
|
89 |
inputs=gr.Image(type="pil", label="Zu anonymisierendes Bild"),
|
90 |
outputs=[gr.Image(label="Anonymisiertes Bild"), gr.AnnotatedImage(label="Erkannte Regionen")],
|
|
|
92 |
allow_flagging="never",
|
93 |
examples="examples",
|
94 |
description=description,
|
95 |
+
article=article,
|
96 |
+
css=css,
|
97 |
+
theme=gr.Themes.Soft()
|
98 |
)
|
99 |
|
100 |
+
demo.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|