MCPcopy Create free account
hub / github.com/BIT-DataLab/Edit-Banana / __init__

Method __init__

modules/basic_shape_processor.py:1360–1367  ·  view source on GitHub ↗

Args: config: 处理配置 enable_cv_detection: 是否启用CV补充检测(检测SAM3遗漏的矩形)

(self, config=None, enable_cv_detection: bool = True)

Source from the content-addressed store, hash-verified

1358 """
1359
1360 def __init__(self, config=None, enable_cv_detection: bool = True):
1361 """
1362 Args:
1363 config: 处理配置
1364 enable_cv_detection: 是否启用CV补充检测(检测SAM3遗漏的矩形)
1365 """
1366 super().__init__(config)
1367 self.enable_cv_detection = enable_cv_detection
1368
1369 def process(self, context: ProcessingContext) -> ProcessingResult:
1370 """

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected