Skip to content

Commit

Permalink
Update USAGE.md (#467)
Browse files Browse the repository at this point in the history
Updating Usage file to fix the following issue:
#452

When replacing the background color, we require RGBA value, and all of that values should range from 0-255.
  • Loading branch information
Aashrut authored Jun 16, 2023
1 parent 848a38e commit 3cbad20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ output = remove(input, post_process_mask=True)
### Replacing the background color
You can use the `bgcolor` argument to replace the background color.
```python
output = remove(input, bgcolor=(255, 255, 255))
output = remove(input, bgcolor=(255, 255, 255, 255))
```

### Using input points
Expand Down

0 comments on commit 3cbad20

Please sign in to comment.