Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ドキュメント内のUsageのコードのエラー報告 #60

Closed
tamoharu opened this issue Dec 25, 2024 · 1 comment
Closed

ドキュメント内のUsageのコードのエラー報告 #60

tamoharu opened this issue Dec 25, 2024 · 1 comment

Comments

@tamoharu
Copy link

yomitokuを使わせていただきました!
非常に高精度で素晴らしい結果でした。
開発していただきありがとうございます。

ドキュメントにあるUsageのサンプルコードですが、そのままだといくつかの箇所でエラーになったので報告させていただきます。

元のコード

import cv2

from yomitoku import DocumentAnalyzer
from yomitoku.data.functions import load_image

if __name__ == "__main__":
    img = load_image(PATH_IMAGE)
    analyzer = DocumentAnalyzer(configs=None, visualize=True, device="cuda")
    results, ocr_vis, layout_vis = analyzer(img)

    # HTML形式で解析結果をエクスポート
    results.to_html(PATH_OUTPUT)

    # 可視化画像を保存
    cv2.imwrite("output_ocr.jpg", ocr_vis)
    cv2.imwrite("output_layout.jpg", layout_vis)
  • configがNoneのままだとyomitoku/document_analyzer.py", line 179の初期化の際に型チェックでエラーになる
  • to_html関数でimg変数を渡さないとyomitoku/export/export_html.py", line 116で型エラーになる

以下のように修正したところ動きました。

import cv2

from yomitoku import DocumentAnalyzer
from yomitoku.data.functions import load_image

if __name__ == "__main__":
    img = load_image(PATH_IMAGE)
    analyzer = DocumentAnalyzer(configs={}, visualize=True, device="cuda")
    results, ocr_vis, layout_vis = analyzer(img)

    # HTML形式で解析結果をエクスポート
    results.to_html(PATH_OUTPUT, img=img)

    # 可視化画像を保存
    cv2.imwrite("output_ocr.jpg", ocr_vis)
    cv2.imwrite("output_layout.jpg", layout_vis)
@kotaro-kinoshita
Copy link
Owner

@tamoharu
ありがとうございます。エラーに関して認識いたしましたので、修正いたします。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants