Update app.py
#1
by
Beehzod
- opened
app.py
CHANGED
@@ -224,33 +224,33 @@ with col1:
|
|
224 |
uploaded_file = st.file_uploader(
|
225 |
"Choose an image...", type=["jpg", "jpeg", "png"])
|
226 |
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
# Streamlit footer
|
246 |
-
st.markdown(
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
)
|
254 |
|
255 |
# Function to initialize the analysis UI
|
256 |
# This function sets up the placeholders and UI elements in the analysis section.
|
|
|
224 |
uploaded_file = st.file_uploader(
|
225 |
"Choose an image...", type=["jpg", "jpeg", "png"])
|
226 |
|
227 |
+
# # Text input for image URL
|
228 |
+
# st.subheader("Or Enter Image URL")
|
229 |
+
# image_url = st.text_input("Image URL")
|
230 |
+
|
231 |
+
# # Text input for YouTube URL
|
232 |
+
# st.subheader("Enter a YouTube URL")
|
233 |
+
# youtube_url = st.text_input("YouTube URL")
|
234 |
+
|
235 |
+
# # File uploader for videos
|
236 |
+
# st.subheader("Upload a Video")
|
237 |
+
# uploaded_video = st.file_uploader(
|
238 |
+
# "Choose a video...", type=["mp4", "avi", "mov", "mkv"]
|
239 |
+
# )
|
240 |
+
|
241 |
+
# # Text input for video URL
|
242 |
+
# st.subheader("Or Enter Video Download URL")
|
243 |
+
# video_url = st.text_input("Video URL")
|
244 |
+
|
245 |
+
# # Streamlit footer
|
246 |
+
# st.markdown(
|
247 |
+
# """
|
248 |
+
# <div style="text-align: center; margin-top: 2rem;">
|
249 |
+
# <p>If you want to set up your own computer vision playground see <a href="https://huggingface.co/spaces/eusholli/computer-vision-playground/blob/main/README.md" target="_blank">here</a>.</p>
|
250 |
+
# </div>
|
251 |
+
# """,
|
252 |
+
# unsafe_allow_html=True
|
253 |
+
# )
|
254 |
|
255 |
# Function to initialize the analysis UI
|
256 |
# This function sets up the placeholders and UI elements in the analysis section.
|