@@ -113,7 +113,7 @@ def _base_preset(scope: Scope, method: Method) -> Dict[str, Any]:
if scope == "cell"
else copy.deepcopy(_CONTRAST_PAGE_DEFAULT)
)
- threshold = 175 if scope == "page" else 170
+ threshold = 175 if scope == "page" else 155
cfg: Dict[str, Any] = {
"enabled": True,
"detect_before_remove": scope == "page",
@@ -45,7 +45,7 @@ class WatermarkProcessor:
@property
def threshold(self) -> int:
- return int(self.config.get("threshold", 175))
+ return int(self.config.get("threshold", 155))
def morph_close_kernel(self) -> int: