AutoPercenty3/test/test_onnx_ocr_module/src/__init__.py

11 lines
252 B
Python

# -*- coding: utf-8 -*-
"""
ONNX OCR 모듈 패키지
기존 OCRModule을 완전히 대체할 수 있는 ONNX 기반 OCR 모듈
"""
from .onnx_ocr_wrapper import ONNXOCRModule, OCRModule
__version__ = "1.0.0"
__all__ = ["ONNXOCRModule", "OCRModule"]