Update app.py
Browse files
app.py
CHANGED
@@ -51,16 +51,16 @@ if uploaded_file is not None:
|
|
51 |
col1, col2, col3, col4 = st.columns(4)
|
52 |
with col1:
|
53 |
st.caption("Black and White")
|
54 |
-
st.image("filter_bw.jpg")
|
55 |
with col2:
|
56 |
st.caption("Sepia / Vintage")
|
57 |
-
st.image("filter_sepia.jpg")
|
58 |
with col3:
|
59 |
st.caption("Vignette Effect")
|
60 |
-
st.image("filter_vignette.jpg")
|
61 |
with col4:
|
62 |
st.caption("Pencil Sketch")
|
63 |
-
st.image("filter_pencil_sketch.jpg")
|
64 |
|
65 |
# Flag for showing output image.
|
66 |
output_flag = 1
|
|
|
51 |
col1, col2, col3, col4 = st.columns(4)
|
52 |
with col1:
|
53 |
st.caption("Black and White")
|
54 |
+
st.image("./filters/filter_bw.jpg")
|
55 |
with col2:
|
56 |
st.caption("Sepia / Vintage")
|
57 |
+
st.image("./filters/filter_sepia.jpg")
|
58 |
with col3:
|
59 |
st.caption("Vignette Effect")
|
60 |
+
st.image("./filters/filter_vignette.jpg")
|
61 |
with col4:
|
62 |
st.caption("Pencil Sketch")
|
63 |
+
st.image("./filters/filter_pencil_sketch.jpg")
|
64 |
|
65 |
# Flag for showing output image.
|
66 |
output_flag = 1
|