We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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)
yomitoku/document_analyzer.py", line 179
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)
The text was updated successfully, but these errors were encountered:
@tamoharu ありがとうございます。エラーに関して認識いたしましたので、修正いたします。
Sorry, something went wrong.
No branches or pull requests
yomitokuを使わせていただきました!
非常に高精度で素晴らしい結果でした。
開発していただきありがとうございます。
ドキュメントにあるUsageのサンプルコードですが、そのままだといくつかの箇所でエラーになったので報告させていただきます。
元のコード
yomitoku/document_analyzer.py", line 179
の初期化の際に型チェックでエラーになるyomitoku/export/export_html.py", line 116
で型エラーになる以下のように修正したところ動きました。
The text was updated successfully, but these errors were encountered: