Browse Source

Fix Only Mask parameter

Carlo Grisetti 3 years ago
parent
commit
0405f9a3c7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      rembg/cli.py

+ 1 - 1
rembg/cli.py

@@ -231,7 +231,7 @@ def s(port: int, log_level: str):
             af: int = Query(default=240, ge=0, description="Alpha Matting (Foreground Threshold)"),
             ab: int = Query(default=10, ge=0, description="Alpha Matting (Background Threshold)"),
             ae: int = Query(default=10, ge=0, description="Alpha Matting (Erode Structure Size)"),
-            om: bool = Query(default=False, description="Enable Output Mask"),
+            om: bool = Query(default=False, description="Only Mask"),
         ):
             self.model = model
             self.a = a