You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
368 B
Python
20 lines
368 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
OCR 模块
|
|
提供 OCR 引擎和处理管道
|
|
"""
|
|
|
|
from .engine import OCREngine, TextBlock
|
|
from .pipeline import OCRPipeline, OCRResult
|
|
from .express_parser import ExpressParser, ExpressInfo, TextLine
|
|
|
|
__all__ = [
|
|
"OCREngine",
|
|
"TextBlock",
|
|
"OCRPipeline",
|
|
"OCRResult",
|
|
"ExpressParser",
|
|
"ExpressInfo",
|
|
"TextLine"
|
|
]
|