Spaces:
Sleeping
Sleeping
added note
Browse files
app.py
CHANGED
@@ -71,7 +71,10 @@ with tab1:
|
|
71 |
gif_path = interpolate_image(FRAME1, FRAME2)
|
72 |
st.image(gif_path, caption="Interpolated GIF")
|
73 |
#st.text(f"Output path: {gif_path}")
|
74 |
-
|
|
|
|
|
|
|
75 |
with tab2:
|
76 |
st.subheader("Upload any two images")
|
77 |
uploaded_a = st.file_uploader("Upload Image A", type=["png", "jpg", "jpeg"])
|
|
|
71 |
gif_path = interpolate_image(FRAME1, FRAME2)
|
72 |
st.image(gif_path, caption="Interpolated GIF")
|
73 |
#st.text(f"Output path: {gif_path}")
|
74 |
+
st.markdown(
|
75 |
+
"**Note:** The visual noise is not present when you save the image. "
|
76 |
+
"This occurs in Streamlit's display, not in the Gradio demo app."
|
77 |
+
)
|
78 |
with tab2:
|
79 |
st.subheader("Upload any two images")
|
80 |
uploaded_a = st.file_uploader("Upload Image A", type=["png", "jpg", "jpeg"])
|