File size: 244 Bytes
64ea77f 2691f07 64ea77f 2691f07 64ea77f a3ad202 2691f07 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import streamlit as st
from PIL import Image
st.title(" New App")
area = st.text_area("Area",'')
# if len(area) > 5:
# image = pipe(area).images[0]
# im = Image.open(image)
# st.image(im)
# else :
# st.text_input("No","No")
|