Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
mdanish/percept-image
Spatial-Data-Science-and-GEO-AI-Lab
/
percept-image
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
mdanish
commited on
Dec 4, 2024
Commit
1b2c149
·
1 Parent(s):
ae0ae97
test file uploader
Browse files
Files changed (1)
hide
show
app.py
+4
-2
app.py
CHANGED
Viewed
@@ -1,4 +1,6 @@
1
import streamlit as st
2
3
-
x
= st.
slider
('
Select
a
value
')
4
-
st.write(x, 'squared is', x * x)
1
import streamlit as st
2
+
from PIL import Image
3
4
+
file
= st.
file_uploader
('
Upload
An
Image
')
5
+
6
+
st.write(file)