Update README.md
Browse files
README.md
CHANGED
|
@@ -1,19 +1,15 @@
|
|
| 1 |
-
---
|
| 2 |
title: "Streamlit Background Removal App"
|
| 3 |
emoji: "🎨"
|
| 4 |
colorFrom: "yellow"
|
| 5 |
colorTo: "blue"
|
| 6 |
sdk: "streamlit"
|
| 7 |
-
sdk_version: "1.12.1"
|
| 8 |
app_file: "app.py"
|
| 9 |
-
pinned:
|
|
|
|
| 10 |
---
|
| 11 |
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
# Streamlit Background Removal App
|
| 18 |
|
| 19 |
This Streamlit app allows you to upload an image and removes its background using the rembg library.
|
|
@@ -50,7 +46,6 @@ Execute the following command to run the Streamlit app:
|
|
| 50 |
```bash
|
| 51 |
streamlit run app.py
|
| 52 |
|
| 53 |
-
|
| 54 |
Visit the URL displayed in the terminal to interact with the app.
|
| 55 |
|
| 56 |
Usage
|
|
@@ -61,10 +56,7 @@ app.py: The main Streamlit app file.
|
|
| 61 |
static/uploads/: Directory to store uploaded images.
|
| 62 |
requirements.txt: List of required Python packages.
|
| 63 |
Troubleshooting
|
| 64 |
-
If you encounter any issues, ensure that you have the necessary dependencies installed and that you are using Python 3.
|
| 65 |
-
|
| 66 |
-
|
| 67 |
|
| 68 |
-
Replace `"https://github.com/your-username/your-repository.git"` with the actual URL of your GitHub repository.
|
| 69 |
|
| 70 |
-
|
|
|
|
| 1 |
+
---
|
| 2 |
title: "Streamlit Background Removal App"
|
| 3 |
emoji: "🎨"
|
| 4 |
colorFrom: "yellow"
|
| 5 |
colorTo: "blue"
|
| 6 |
sdk: "streamlit"
|
| 7 |
+
sdk_version: "1.12.1"
|
| 8 |
app_file: "app.py"
|
| 9 |
+
pinned: false
|
| 10 |
+
python_version: "3.10"
|
| 11 |
---
|
| 12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
# Streamlit Background Removal App
|
| 14 |
|
| 15 |
This Streamlit app allows you to upload an image and removes its background using the rembg library.
|
|
|
|
| 46 |
```bash
|
| 47 |
streamlit run app.py
|
| 48 |
|
|
|
|
| 49 |
Visit the URL displayed in the terminal to interact with the app.
|
| 50 |
|
| 51 |
Usage
|
|
|
|
| 56 |
static/uploads/: Directory to store uploaded images.
|
| 57 |
requirements.txt: List of required Python packages.
|
| 58 |
Troubleshooting
|
| 59 |
+
If you encounter any issues, ensure that you have the necessary dependencies installed and that you are using Python 3.10 or later.
|
|
|
|
|
|
|
| 60 |
|
|
|
|
| 61 |
|
| 62 |
+
Make sure to replace `"https://github.com/your-username/your-repository.git"` with the actual URL of your GitHub repository. Adjust the Streamlit version and other details based on your specific configuration and preferences.
|