Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,7 @@ def sepia(input_img):
|
|
9 |
])
|
10 |
sepia_img = input_img.dot(sepia_filter.T)
|
11 |
sepia_img /= sepia_img.max()
|
12 |
-
return sepia_img
|
13 |
|
14 |
demo = gr.Interface(sepia, gr.Image(), outputs=["image", "image"])
|
15 |
demo.launch()
|
|
|
9 |
])
|
10 |
sepia_img = input_img.dot(sepia_filter.T)
|
11 |
sepia_img /= sepia_img.max()
|
12 |
+
return sepia_img,sepia_img
|
13 |
|
14 |
demo = gr.Interface(sepia, gr.Image(), outputs=["image", "image"])
|
15 |
demo.launch()
|