aiqtech commited on
Commit
71036e1
ยท
verified ยท
1 Parent(s): b33ef2d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +26 -19
app.py CHANGED
@@ -38,7 +38,12 @@ from transformers import pipeline
38
  from controlnet_union import ControlNetModel_Union
39
  from pipeline_fill_sd_xl import StableDiffusionXLFillPipeline
40
 
41
-
 
 
 
 
 
42
  def clear_memory():
43
  """๋ฉ”๋ชจ๋ฆฌ ์ •๋ฆฌ ํ•จ์ˆ˜"""
44
  gc.collect()
@@ -936,6 +941,21 @@ def update_position(new_position):
936
  print(f"Position updated to: {new_position}")
937
  return new_position
938
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
939
  def update_controls(bg_prompt):
940
  """๋ฐฐ๊ฒฝ ํ”„๋กฌํ”„ํŠธ ์ž…๋ ฅ ์—ฌ๋ถ€์— ๋”ฐ๋ผ ์ปจํŠธ๋กค ํ‘œ์‹œ ์—…๋ฐ์ดํŠธ"""
941
  is_visible = bool(bg_prompt)
@@ -1155,35 +1175,22 @@ with gr.Blocks(theme=gr.themes.Soft(), css=css) as demo:
1155
  visible=True
1156
  )
1157
 
1158
- # ๋ฒ„ํŠผ ์ด๋ฒคํŠธ ๋ฐ”์ธ๋”ฉ
1159
  for btn, pos in position_mapping.items():
1160
  btn.click(
1161
- fn=lambda p=pos: debug_event("position_update", p),
1162
- inputs=[],
1163
- outputs=[status_message]
1164
- ).then(
1165
- fn=update_position_and_ui,
1166
- inputs=[gr.State(pos)],
1167
  outputs=[position] + list(position_mapping.keys())
1168
  )
1169
 
1170
- # ์ธํŽ˜์ธํŒ… ํ”„๋กœ์„ธ์Šค
1171
  inpaint_btn.click(
1172
- fn=lambda: debug_event("inpainting_start"),
1173
- inputs=[],
1174
- outputs=[status_message]
1175
- ).then(
1176
  fn=process_inpainting_with_feedback,
1177
  inputs=[input_image, mask_input, inpaint_prompt],
1178
  outputs=[input_image, status_message]
1179
  )
1180
 
1181
- # ํ”„๋กœ์„ธ์Šค ๋ฒ„ํŠผ
1182
  process_btn.click(
1183
- fn=lambda: debug_event("process_start"),
1184
- inputs=[],
1185
- outputs=[status_message]
1186
- ).then(
1187
  fn=process_prompt,
1188
  inputs=[
1189
  input_image,
@@ -1193,7 +1200,7 @@ with gr.Blocks(theme=gr.themes.Soft(), css=css) as demo:
1193
  position,
1194
  scale_slider
1195
  ],
1196
- outputs=[combined_image, extracted_image, status_message]
1197
  )
1198
 
1199
 
 
38
  from controlnet_union import ControlNetModel_Union
39
  from pipeline_fill_sd_xl import StableDiffusionXLFillPipeline
40
 
41
+ def debug_event(event_name, *args):
42
+ """์ด๋ฒคํŠธ ๋””๋ฒ„๊น… ์œ ํ‹ธ๋ฆฌํ‹ฐ"""
43
+ print(f"Event '{event_name}' triggered at {time.strftime('%H:%M:%S')}")
44
+ print(f"Arguments: {args}")
45
+ return args
46
+
47
  def clear_memory():
48
  """๋ฉ”๋ชจ๋ฆฌ ์ •๋ฆฌ ํ•จ์ˆ˜"""
49
  gc.collect()
 
941
  print(f"Position updated to: {new_position}")
942
  return new_position
943
 
944
+ def update_position_and_ui(pos):
945
+ """์œ„์น˜ ์—…๋ฐ์ดํŠธ ๋ฐ UI ๋ฐ˜์˜"""
946
+ updates = {btn: gr.update(value="selected" if pos_val == pos else "")
947
+ for btn, pos_val in position_mapping.items()}
948
+ updates['position'] = pos
949
+ return [pos] + [updates[btn] for btn in position_mapping.keys()]
950
+
951
+ def process_inpainting_with_feedback(image, mask, prompt):
952
+ """์ธํŽ˜์ธํŒ… ์ฒ˜๋ฆฌ ๋ฐ ํ”ผ๋“œ๋ฐฑ"""
953
+ try:
954
+ result = process_inpainting(image, mask, prompt)
955
+ return result, update_ui_state("inpainting", "Inpainting completed successfully!")
956
+ except Exception as e:
957
+ return None, update_ui_state("inpainting", f"Error: {str(e)}", is_error=True)
958
+
959
  def update_controls(bg_prompt):
960
  """๋ฐฐ๊ฒฝ ํ”„๋กฌํ”„ํŠธ ์ž…๋ ฅ ์—ฌ๋ถ€์— ๋”ฐ๋ผ ์ปจํŠธ๋กค ํ‘œ์‹œ ์—…๋ฐ์ดํŠธ"""
961
  is_visible = bool(bg_prompt)
 
1175
  visible=True
1176
  )
1177
 
1178
+ # ์œ„์น˜ ๋ฒ„ํŠผ ์ด๋ฒคํŠธ ๋ฐ”์ธ๋”ฉ
1179
  for btn, pos in position_mapping.items():
1180
  btn.click(
1181
+ fn=lambda p=pos: update_position_and_ui(p),
 
 
 
 
 
1182
  outputs=[position] + list(position_mapping.keys())
1183
  )
1184
 
1185
+ # ์ธํŽ˜์ธํŒ… ๋ฒ„ํŠผ ์ด๋ฒคํŠธ
1186
  inpaint_btn.click(
 
 
 
 
1187
  fn=process_inpainting_with_feedback,
1188
  inputs=[input_image, mask_input, inpaint_prompt],
1189
  outputs=[input_image, status_message]
1190
  )
1191
 
1192
+ # ํ”„๋กœ์„ธ์Šค ๋ฒ„ํŠผ ์ด๋ฒคํŠธ
1193
  process_btn.click(
 
 
 
 
1194
  fn=process_prompt,
1195
  inputs=[
1196
  input_image,
 
1200
  position,
1201
  scale_slider
1202
  ],
1203
+ outputs=[combined_image, extracted_image]
1204
  )
1205
 
1206