Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
import streamlit as st
|
2 |
-
import cv2 as cv
|
3 |
|
4 |
st.write("""
|
5 |
# New App
|
@@ -8,12 +7,6 @@ Trying
|
|
8 |
|
9 |
""")
|
10 |
|
11 |
-
Prompt = st.text_input("prompt","")
|
12 |
-
|
13 |
-
st.write(f"'Description' == {Prompt}")
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
area = st.text_area("Area",'')
|
18 |
|
19 |
image = pipe(area).images[0]
|
|
|
1 |
import streamlit as st
|
|
|
2 |
|
3 |
st.write("""
|
4 |
# New App
|
|
|
7 |
|
8 |
""")
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
area = st.text_area("Area",'')
|
11 |
|
12 |
image = pipe(area).images[0]
|