ginipick commited on
Commit
48e9718
ยท
verified ยท
1 Parent(s): 11b615e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -383,10 +383,14 @@ def process_prompt(img: Image.Image, prompt: str, bg_prompt: str | None = None,
383
  position=position,
384
  scale_percent=scale_percent
385
  )
 
386
  return combined, results[2]
387
  except Exception as e:
388
  print(f"Combination error: {str(e)}")
389
  return results[1], results[2]
 
 
 
390
 
391
 
392
  def process_bbox(img: Image.Image, box_input: str) -> tuple[Image.Image, Image.Image]:
@@ -698,9 +702,6 @@ with gr.Blocks(theme=gr.themes.Soft(), css=css) as demo:
698
  </div>
699
  """)
700
 
701
- # ์ „์—ญ position ์ƒํƒœ ์ถ”๊ฐ€
702
- current_position = gr.State("bottom-center")
703
-
704
  with gr.Row(equal_height=True):
705
  # ์™ผ์ชฝ ํŒจ๋„ (์ž…๋ ฅ)
706
  with gr.Column(scale=1):
@@ -871,10 +872,9 @@ with gr.Blocks(theme=gr.themes.Soft(), css=css) as demo:
871
 
872
  for btn, pos in position_mapping.items():
873
  btn.click(
874
- fn=lambda p=pos: update_position(p),
875
  outputs=position
876
  )
877
-
878
 
879
 
880
  # ์ด๋ฒคํŠธ ๋ฐ”์ธ๋”ฉ
 
383
  position=position,
384
  scale_percent=scale_percent
385
  )
386
+
387
  return combined, results[2]
388
  except Exception as e:
389
  print(f"Combination error: {str(e)}")
390
  return results[1], results[2]
391
+
392
+ # ์ด ๋ถ€๋ถ„์ด ๋ˆ„๋ฝ๋˜์—ˆ์Šต๋‹ˆ๋‹ค
393
+ return results[1], results[2] # ๊ธฐ๋ณธ ๋ฐ˜ํ™˜ ์ถ”๊ฐ€
394
 
395
 
396
  def process_bbox(img: Image.Image, box_input: str) -> tuple[Image.Image, Image.Image]:
 
702
  </div>
703
  """)
704
 
 
 
 
705
  with gr.Row(equal_height=True):
706
  # ์™ผ์ชฝ ํŒจ๋„ (์ž…๋ ฅ)
707
  with gr.Column(scale=1):
 
872
 
873
  for btn, pos in position_mapping.items():
874
  btn.click(
875
+ fn=lambda pos=pos: update_position(pos), # ํด๋กœ์ € ๋ฌธ์ œ ํ•ด๊ฒฐ์„ ์œ„ํ•ด ์ˆ˜์ •
876
  outputs=position
877
  )
 
878
 
879
 
880
  # ์ด๋ฒคํŠธ ๋ฐ”์ธ๋”ฉ