Args: config: 处理配置 enable_cv_detection: 是否启用CV补充检测(检测SAM3遗漏的矩形)
(self, config=None, enable_cv_detection: bool = True)
| 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 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected