Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -35,15 +35,6 @@ if 'reuse_image' not in st.session_state:
|
|
| 35 |
def set_image(img):
|
| 36 |
st.session_state.reuse_image = img
|
| 37 |
|
| 38 |
-
st.title("AI Photo Object Removal")
|
| 39 |
-
|
| 40 |
-
# st.image(open("assets/demo.png", "rb").read())
|
| 41 |
-
|
| 42 |
-
st.markdown(
|
| 43 |
-
"""
|
| 44 |
-
Draw over the parts of the image you want to remove, then our AI will remove them.
|
| 45 |
-
"""
|
| 46 |
-
)
|
| 47 |
uploaded_file = st.file_uploader("Choose image", accept_multiple_files=False, type=["png", "jpg", "jpeg"])
|
| 48 |
|
| 49 |
if uploaded_file is not None:
|
|
|
|
| 35 |
def set_image(img):
|
| 36 |
st.session_state.reuse_image = img
|
| 37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
uploaded_file = st.file_uploader("Choose image", accept_multiple_files=False, type=["png", "jpg", "jpeg"])
|
| 39 |
|
| 40 |
if uploaded_file is not None:
|