ginipick commited on
Commit
fa5316d
Β·
verified Β·
1 Parent(s): 7248a92

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +25 -11
app.py CHANGED
@@ -255,20 +255,27 @@ with gr.Blocks(theme=gr.themes.Soft(), css=css) as demo:
255
  "πŸ’Ύ Download Result",
256
  interactive=False
257
  )
258
-
259
  with gr.Accordion("πŸ“š Examples", open=False):
260
- examples = [
261
- ["examples/text.jpg", "text", "white background"],
262
- ["examples/black-lamp.jpg", "black lamp", "minimalist interior"]
 
 
 
 
 
 
263
  ]
264
- ex = gr.Examples(
265
- examples=examples,
266
- inputs=[iimg, prompt, bg_prompt],
267
- outputs=[oimg, dlbt],
268
- fn=process_prompt,
269
  cache_examples=True
270
  )
271
 
 
272
  with gr.Tab("πŸ“ Extract by Box", id="tab_bb"):
273
  with gr.Row(equal_height=True):
274
  with gr.Column(scale=1, min_width=400):
@@ -300,8 +307,14 @@ with gr.Blocks(theme=gr.themes.Soft(), css=css) as demo:
300
 
301
  with gr.Accordion("πŸ“š Examples", open=False):
302
  examples_bb = [
303
- ["examples/text.jpg", [{"xmin": 51, "ymin": 511, "xmax": 639, "ymax": 1255}]],
304
- ["examples/black-lamp.jpg", [{"xmin": 88, "ymin": 148, "xmax": 700, "ymax": 1414}]]
 
 
 
 
 
 
305
  ]
306
  ex_bb = gr.Examples(
307
  examples=examples_bb,
@@ -311,6 +324,7 @@ with gr.Blocks(theme=gr.themes.Soft(), css=css) as demo:
311
  cache_examples=True
312
  )
313
 
 
314
  # Event handlers
315
  btn.add(oimg)
316
  for inp in [iimg, prompt]:
 
255
  "πŸ’Ύ Download Result",
256
  interactive=False
257
  )
258
+ # Bounding Box νƒ­μ˜ Examples λΆ€λΆ„ μˆ˜μ •
259
  with gr.Accordion("πŸ“š Examples", open=False):
260
+ examples_bb = [
261
+ {
262
+ "image": "examples/text.jpg",
263
+ "boxes": [{"xmin": 51, "ymin": 511, "xmax": 639, "ymax": 1255}]
264
+ },
265
+ {
266
+ "image": "examples/black-lamp.jpg",
267
+ "boxes": [{"xmin": 88, "ymin": 148, "xmax": 700, "ymax": 1414}]
268
+ }
269
  ]
270
+ ex_bb = gr.Examples(
271
+ examples=examples_bb,
272
+ inputs=[annotator],
273
+ outputs=[oimg_bb, dlbt_bb],
274
+ fn=process_bbox,
275
  cache_examples=True
276
  )
277
 
278
+
279
  with gr.Tab("πŸ“ Extract by Box", id="tab_bb"):
280
  with gr.Row(equal_height=True):
281
  with gr.Column(scale=1, min_width=400):
 
307
 
308
  with gr.Accordion("πŸ“š Examples", open=False):
309
  examples_bb = [
310
+ {
311
+ "image": "examples/text.jpg",
312
+ "boxes": [{"xmin": 51, "ymin": 511, "xmax": 639, "ymax": 1255}]
313
+ },
314
+ {
315
+ "image": "examples/black-lamp.jpg",
316
+ "boxes": [{"xmin": 88, "ymin": 148, "xmax": 700, "ymax": 1414}]
317
+ }
318
  ]
319
  ex_bb = gr.Examples(
320
  examples=examples_bb,
 
324
  cache_examples=True
325
  )
326
 
327
+
328
  # Event handlers
329
  btn.add(oimg)
330
  for inp in [iimg, prompt]: