Spaces:
Sleeping
Sleeping
File size: 486 Bytes
8b04a03 10cb35a 2aa7829 8b04a03 2aa7829 10cb35a 2aa7829 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import streamlit as st
from PIL import Image
from transformers import pipeline
semantic_segmentation = pipeline("image-segmentation", "nvidia/segformer-b1-finetuned-cityscapes-1024-1024")
uploaded_file = st.file_uploader("Choose an image...", type=["jpg", "png"])
if uploaded_file is not None:
image = Image.open(uploaded_file)
st.image(image, caption='Uploaded Image.', use_column_width=True)
st.write("")
results = semantic_segmentation(image)
st.json(results)
|