Spaces:
Runtime error
Runtime error
AliceMorgen
commited on
Commit
•
5c638bc
1
Parent(s):
6e6d4dc
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import numpy as np
|
2 |
+
|
3 |
+
def sepia(image):
|
4 |
+
sepia_filter = np.array(
|
5 |
+
[[0.393, 0.769, 0.189],
|
6 |
+
[0.349, 0.686, 0.168],
|
7 |
+
[0.272, 0.534, 0.131]]
|
8 |
+
)
|
9 |
+
sepia_img = image.dot(sepia_filter.T)
|
10 |
+
sepia_img /= sepia_img.max()
|
11 |
+
return sepia_img
|
12 |
+
|
13 |
+
import gradio as gr
|
14 |
+
|
15 |
+
gr.Interface(fn=sepia, inputs="image", outputs="image").launch();
|