Spaces:
Paused
Paused
Update app.py
Browse files
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
|
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 |
# ์ด๋ฒคํธ ๋ฐ์ธ๋ฉ
|