Update app.py
Browse files
app.py
CHANGED
@@ -61,8 +61,9 @@ def pref_inpainting(image,
|
|
61 |
print('Running inference runway')
|
62 |
|
63 |
# res.save(os.path.join('./', 'test.png'))
|
64 |
-
res_ours = merge_images_horizontally(color, res_ours)
|
65 |
-
res_runway = merge_images_horizontally(color, res_runway)
|
|
|
66 |
|
67 |
return res_ours, res_runway
|
68 |
|
|
|
61 |
print('Running inference runway')
|
62 |
|
63 |
# res.save(os.path.join('./', 'test.png'))
|
64 |
+
res_ours = merge_images_horizontally(color, res_ours, logo_path='./logo/pref_logo.png')
|
65 |
+
res_runway = merge_images_horizontally(color, res_runway, logo_path='./logo/runway_logo.png')
|
66 |
+
|
67 |
|
68 |
return res_ours, res_runway
|
69 |
|