Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
mdanish/percept-image
Spatial-Data-Science-and-GEO-AI-Lab
/
percept-image
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d1d57b8
percept-image
/
app.py
mdanish
try loading image
d1d57b8
8 months ago
raw
Copy download link
history
blame
Safe
161 Bytes
import
streamlit
as
st
from
PIL
import
Image
file = st.file_uploader(
'Upload An Image'
)
with
Image.
open
(file)
as
img:
st.write(file)
st.write(img.size)