F24EE commited on
Commit
b424851
·
verified ·
1 Parent(s): c4872bb

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +62 -0
app.py ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from rembg import remove
3
+ from PIL import Image
4
+ import io
5
+
6
+ # Function to remove background from image
7
+ def remove_background(image_bytes):
8
+ input_image = Image.open(io.BytesIO(image_bytes))
9
+ output_image = remove(input_image)
10
+ return output_image
11
+
12
+ # Streamlit UI setup
13
+ st.set_page_config(page_title="Background Remover", layout="wide")
14
+
15
+ # Title and Description
16
+ st.title("Background Removal Tool")
17
+ st.markdown("### Upload an image, and we will remove its background for you!")
18
+
19
+ # Create columns for layout
20
+ col1, col2 = st.columns(2)
21
+
22
+ # Column 1: Image upload
23
+ with col1:
24
+ uploaded_file = st.file_uploader("Choose an image file", type=["png", "jpg", "jpeg"])
25
+
26
+ # Column 2: Instructions
27
+ with col2:
28
+ st.markdown("""
29
+ #### Instructions:
30
+ - Upload an image (PNG, JPG, or JPEG) using the button above.
31
+ - The background will be removed automatically.
32
+ - Download the result below once it's ready.
33
+ """)
34
+
35
+ # When an image is uploaded
36
+ if uploaded_file is not None:
37
+ # Show the uploaded image
38
+ st.image(uploaded_file, caption="Uploaded Image", use_column_width=True)
39
+
40
+ # Remove the background
41
+ with st.spinner("Removing background..."):
42
+ output_image = remove_background(uploaded_file.read())
43
+
44
+ # Show the processed image
45
+ st.image(output_image, caption="Image with Background Removed", use_column_width=True)
46
+
47
+ # Allow the user to download the result
48
+ output_image_pil = Image.open(io.BytesIO(output_image))
49
+ buf = io.BytesIO()
50
+ output_image_pil.save(buf, format="PNG")
51
+ byte_im = buf.getvalue()
52
+
53
+ st.download_button(
54
+ label="Download Image with Removed Background",
55
+ data=byte_im,
56
+ file_name="image_no_bg.png",
57
+ mime="image/png"
58
+ )
59
+
60
+ # Footer
61
+ st.markdown("---")
62
+ st.markdown("Created by [Your Name].")