Spaces:
Sleeping
Sleeping
fix cat-vton path
Browse files- user_dress.py +2 -4
user_dress.py
CHANGED
@@ -16,8 +16,6 @@ def user_dress_cat(user_pic, cloth_gen, index):
|
|
16 |
filename_2 = 'cloth_image.jpg'
|
17 |
file_path_1 = os.path.join(UPLOAD_FOLDER, filename_1)
|
18 |
file_path_2 = os.path.join(UPLOAD_FOLDER, filename_2)
|
19 |
-
fal_file_path_1=fal_client.upload_file(file_path_1)
|
20 |
-
fal_file_path_2=fal_client.upload_file(file_path_2)
|
21 |
Image.fromarray(user_pic).save(file_path_1)
|
22 |
Image.fromarray(cloth_gen).save(file_path_2)
|
23 |
time_2 = time.time()
|
@@ -27,8 +25,8 @@ def user_dress_cat(user_pic, cloth_gen, index):
|
|
27 |
handler = fal_client.submit(
|
28 |
"fal-ai/cat-vton",
|
29 |
arguments={
|
30 |
-
"human_image_url":
|
31 |
-
"garment_image_url":
|
32 |
"cloth_type": "overall"
|
33 |
},
|
34 |
)
|
|
|
16 |
filename_2 = 'cloth_image.jpg'
|
17 |
file_path_1 = os.path.join(UPLOAD_FOLDER, filename_1)
|
18 |
file_path_2 = os.path.join(UPLOAD_FOLDER, filename_2)
|
|
|
|
|
19 |
Image.fromarray(user_pic).save(file_path_1)
|
20 |
Image.fromarray(cloth_gen).save(file_path_2)
|
21 |
time_2 = time.time()
|
|
|
25 |
handler = fal_client.submit(
|
26 |
"fal-ai/cat-vton",
|
27 |
arguments={
|
28 |
+
"human_image_url": fal_client.upload_file(file_path_1),
|
29 |
+
"garment_image_url": fal_client.upload_file(file_path_2),
|
30 |
"cloth_type": "overall"
|
31 |
},
|
32 |
)
|