result image size 변경
Browse files
app.py
CHANGED
@@ -65,7 +65,7 @@ with gr.Blocks() as demo:
|
|
65 |
result_image_input = gr.Image(type="pil", label="결과물 사진", width=300, height=300)
|
66 |
swap_btn = gr.Button("Swap Faces")
|
67 |
with gr.Column():
|
68 |
-
output_image = gr.Image(label="합성 후 사진")
|
69 |
swap_btn.click(fn=faceswapper, inputs=[user_image_input, result_image_input, name], outputs=output_image)
|
70 |
|
71 |
demo.launch(debug=True)
|
|
|
65 |
result_image_input = gr.Image(type="pil", label="결과물 사진", width=300, height=300)
|
66 |
swap_btn = gr.Button("Swap Faces")
|
67 |
with gr.Column():
|
68 |
+
output_image = gr.Image(label="합성 후 사진", width=300, height=300)
|
69 |
swap_btn.click(fn=faceswapper, inputs=[user_image_input, result_image_input, name], outputs=output_image)
|
70 |
|
71 |
demo.launch(debug=True)
|