Install
openclaw skills install @qy-jscai/remove-bg-assistantopenclaw skills install @qy-jscai/remove-bg-assistantAI-powered background removal for portraits, products, and any image.
Professional-quality background removal using cloud AI APIs. No Photoshop skills needed - get clean cutouts in seconds.
1. Portrait Background Removal
2. Product Photography
3. General Images
Current Implementation: Baidu Image Segmentation API
API Integration Example:
import requests
def remove_bg(image_path):
url = "https://aip.baidubce.com/rest/2.0/image-classify/v1/body_seg"
# Get access_token first
# Send image, receive segmented result
# Process and return transparent PNG
Web Interface Features:
| User Type | Use Case | Benefit |
|---|---|---|
| E-commerce seller | Product photos | Professional listings |
| Social media creator | Profile pictures | Clean aesthetics |
| Designer | Mockup creation | Faster workflow |
| Marketer | Ad creatives | Quick turnaround |
| Developer | App integration | API automation |
Basic requests:
Integration help:
Business questions:
User: "I have 50 product photos. How to batch remove backgrounds?"
Response:
Batch processing solution:
Option 1: Python Script
```python
import os
from remove_bg import process_image
folder = "product_photos/"
for img in os.listdir(folder):
if img.endswith(('.jpg', '.png')):
result = process_image(f"{folder}/{img}")
result.save(f"output/{img}")
Option 2: Web Interface
Option 3: API Integration
Which option fits your workflow?
## Live Demo
Try it now: www.instantbg.cn
## Pricing Reference
| Service | Free Tier | Paid Price | Speed |
|---------|-----------|------------|-------|
| Baidu | 10,000/mo | ¥0.001/img | Fast |
| remove.bg | 50/mo | $0.20/img | Fast |
| Adobe API | Trial | $0.15/img | Medium |
## Author
qy-cai (GitHub: github.com/qy-jscai)
Demo: www.instantbg.cn
## License
MIT