Skip to content
  • This project
    • Loading...
  • Sign in

周伟奇 / bmw-ocr

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • bmw-ocr
  • src
  • common
  • electronic_afc_contract
  • afc_contract_ocr.py
  • 周伟奇's avatar
    e-contract part 1 · f77b2322
    周伟奇 committed 2021-11-05 18:09:44 +0800
    f77b2322 Browse Directory
afc_contract_ocr.py 348 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# -*- coding: utf-8 -*-
# @Author        : lk
# @Email         : 9428.al@gmail.com
# @Created Date  : 2021-06-29 17:43:46
# @Last Modified : 2021-09-07 14:11:25
# @Description   :

from .get_char import Finder


def predict(pdf_info):
    # 输入是整个 PDF 中的信息
    f = Finder(pdf_info)
    results = f.get_info()

    return results