Fix metting typo (#596)

This commit is contained in:
Carolina Rojas 2024-02-27 11:40:37 -05:00 committed by GitHub
parent 3fe8fb9ec9
commit b601763e07
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -37,8 +37,8 @@ for img in images:
``` ```
### With alpha metting ### With alpha matting
Alpha metting is a post processing step that can be used to improve the quality of the output. Alpha matting is a post processing step that can be used to improve the quality of the output.
```python ```python
output = remove(input, alpha_matting=True, alpha_matting_foreground_threshold=270,alpha_matting_background_threshold=20, alpha_matting_erode_size=11) output = remove(input, alpha_matting=True, alpha_matting_foreground_threshold=270,alpha_matting_background_threshold=20, alpha_matting_erode_size=11)
``` ```