Spaces:
Running
Running
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import cv2
|
3 |
+
import numpy as np
|
4 |
+
|
5 |
+
# ์ด๋ฏธ์ง ์
์ค์ผ์ผ ํจ์
|
6 |
+
def upscale_image(input_image, radio_input):
|
7 |
+
upscale_factor = int(radio_input) # ์
์ค์ผ์ผ ๋น์จ์ ์ ์ํ์ผ๋ก ๋ณํ
|
8 |
+
# ์
๋ ฅ ์ด๋ฏธ์ง๋ฅผ ์ฃผ์ด์ง ์
์ค์ผ์ผ ๋น์จ๋ก ํฌ๊ธฐ ๋ณ๊ฒฝ (๋ณด๊ฐ๋ฒ: INTER_CUBIC)
|
9 |
+
output_image = cv2.resize(input_image, None, fx=upscale_factor, fy=upscale_factor, interpolation=cv2.INTER_CUBIC)
|
10 |
+
return output_image
|
11 |
+
|
12 |
+
# ์ธํฐํ์ด์ค ์ค๋ช
|
13 |
+
DESCRIPTION = """
|
14 |
+
์ด ๊ณต๊ฐ์์๋ ์ด๋ฏธ์ง์ ํฌ๊ธฐ์ ํ์ง์ ํฅ์์ํฌ ์ ์์ต๋๋ค.
|
15 |
+
โ ๏ธ ์ด๋ฏธ์ง๋ฅผ ํ๋ํ๋ ๊ฒ์ด ํญ์ ํ์ง์ ํฅ์์ํค๋ ๊ฒ์ ์๋๋๋ค!
|
16 |
+
"""
|
17 |
+
|
18 |
+
# ์
์ค์ผ์ผ ๋ ๋ฒจ ์ ํ ๋ผ๋์ค ๋ฒํผ
|
19 |
+
radio_input = gr.Radio(label="์
์ค์ผ์ผ ๋ ๋ฒจ ์ ํ", choices=[2, 4, 6, 8, 10], value=2)
|
20 |
+
|
21 |
+
# Gradio ์ธํฐํ์ด์ค ์ ์
|
22 |
+
demo = gr.Interface(
|
23 |
+
fn=upscale_image,
|
24 |
+
inputs=[gr.Image(label="์
๋ ฅ ์ด๋ฏธ์ง", type="numpy", tool="editor"), radio_input],
|
25 |
+
outputs=gr.Image(label="์
์ค์ผ์ผ๋ ์ด๋ฏธ์ง"),
|
26 |
+
title="์ด๋ฏธ์ง ์
์ค์ผ์ผ๋ฌ",
|
27 |
+
description=DESCRIPTION
|
28 |
+
)
|
29 |
+
|
30 |
+
# ์ธํฐํ์ด์ค ์คํ
|
31 |
+
demo.launch(show_api=False)
|