meeww commited on
Commit
db519fb
·
1 Parent(s): ed573a5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -6
app.py CHANGED
@@ -58,12 +58,8 @@ def gen(seed):
58
  img1 = Image.open("1.png")
59
  img2 = Image.open("2.png")
60
  img3 = Image.open("3.png")
61
- img = []
62
- for i in range(4):
63
- img.append(Image.open(i+".png")
64
- filter = ImageEnhance.Color(img[i])
65
- img[i] = img[i].filter(3)
66
- return img
67
 
68
  iface = gr.Interface(
69
  fn=gen,
 
58
  img1 = Image.open("1.png")
59
  img2 = Image.open("2.png")
60
  img3 = Image.open("3.png")
61
+
62
+ return img0,img1,img2,img3
 
 
 
 
63
 
64
  iface = gr.Interface(
65
  fn=gen,