freinold commited on
Commit
0a514d8
1 Parent(s): 2f4f227

Changes for gradio 4.0 image component

Browse files
Files changed (1) hide show
  1. app.py +5 -20
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
- demo_upload = 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,24 +92,9 @@ demo_upload = gr.Interface(
92
  allow_flagging="never",
93
  examples="examples",
94
  description=description,
95
- article=article
 
 
96
  )
97
 
98
- demo_webcam = gr.Interface(
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()