Update USAGE.md (#553)

This commit is contained in:
Nihir 2023-12-16 15:12:26 +00:00 committed by GitHub
parent e44661aca4
commit be319d3489
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,6 +27,16 @@ session = new_session(model_name)
output = remove(input, session=session)
```
### For processing multiple image files
By default, `remove` initialises a new session every call. This can be a large bottleneck if you're having to process multiple images. Initialise a session and pass it in to the `remove` function for fast multi-image support
```python
model_name = "unet"
rembg_session = new_session(model_name)
for img in images:
output = remove(img, session=rembg_session)
```
### With alpha metting
Alpha metting is a post processing step that can be used to improve the quality of the output.
```python