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.
28 lines
399 B
Python
28 lines
399 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
工具模块
|
|
提供配置管理等通用功能
|
|
"""
|
|
|
|
from .config import (
|
|
Config,
|
|
OCRConfig,
|
|
InputConfig,
|
|
VisualizeConfig,
|
|
PipelineConfig,
|
|
ROIConfig,
|
|
OutputConfig,
|
|
InputMode
|
|
)
|
|
|
|
__all__ = [
|
|
"Config",
|
|
"OCRConfig",
|
|
"InputConfig",
|
|
"VisualizeConfig",
|
|
"PipelineConfig",
|
|
"ROIConfig",
|
|
"OutputConfig",
|
|
"InputMode"
|
|
]
|