Moibe commited on
Commit
07dec76
·
1 Parent(s): f2c9245

Save images path

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -13,15 +13,17 @@ def greet(input1, input2):
13
  target_path = "target.jpg"
14
 
15
  source_image = Image.fromarray(input1)
 
16
  source_image.save(source_path)
17
  target_image = Image.fromarray(input2)
 
18
  target_image.save(target_path)
19
 
20
  print("source_path: ", source_path)
21
  print("target_path: ", target_path)
22
 
23
 
24
- return input1
25
 
26
  #def carga_consola():
27
  # return "Hola Mundo"
 
13
  target_path = "target.jpg"
14
 
15
  source_image = Image.fromarray(input1)
16
+ print("Esto es source_image: ", source_image)
17
  source_image.save(source_path)
18
  target_image = Image.fromarray(input2)
19
+ print("Esto es target_image: ", target_image)
20
  target_image.save(target_path)
21
 
22
  print("source_path: ", source_path)
23
  print("target_path: ", target_path)
24
 
25
 
26
+ return target_path
27
 
28
  #def carga_consola():
29
  # return "Hola Mundo"