Spaces:
Running
Running
selfitcamera
commited on
Commit
·
acaf885
1
Parent(s):
f39f01a
update
Browse files
app.py
CHANGED
@@ -120,8 +120,8 @@ with gr.Blocks(css=css) as demo:
|
|
120 |
gr.Markdown(description)
|
121 |
|
122 |
with gr.Accordion('upload tips', open=False):
|
123 |
-
tip_image1 = gr.Image(value=tip1)
|
124 |
-
tip_image2 = gr.Image(value=tip2)
|
125 |
|
126 |
with gr.Row():
|
127 |
with gr.Column():
|
|
|
120 |
gr.Markdown(description)
|
121 |
|
122 |
with gr.Accordion('upload tips', open=False):
|
123 |
+
tip_image1 = gr.Image(value=tip1, type="filepath")
|
124 |
+
tip_image2 = gr.Image(value=tip2, type="filepath")
|
125 |
|
126 |
with gr.Row():
|
127 |
with gr.Column():
|
utils.py
CHANGED
@@ -50,7 +50,8 @@ def get_result_example(cloth_id, pose_id):
|
|
50 |
def get_tips():
|
51 |
path1 = os.path.join(data_dir, 'tip1.jpg')
|
52 |
path2 = os.path.join(data_dir, 'tip2.jpg')
|
53 |
-
return
|
|
|
54 |
|
55 |
def getAllInfs(apiUrl, openId, apiKey, clientIp):
|
56 |
params = {'openId':openId, 'apiKey':apiKey, 'ipId':clientIp}
|
|
|
50 |
def get_tips():
|
51 |
path1 = os.path.join(data_dir, 'tip1.jpg')
|
52 |
path2 = os.path.join(data_dir, 'tip2.jpg')
|
53 |
+
return 'Datas/tip1.jpg', 'Datas/tip2.jpg'
|
54 |
+
# return path1, path2
|
55 |
|
56 |
def getAllInfs(apiUrl, openId, apiKey, clientIp):
|
57 |
params = {'openId':openId, 'apiKey':apiKey, 'ipId':clientIp}
|