frame_decoration
original (2019/05/14 付) Google 翻訳 (2019/05/18 付)
## Errors during LSTM Training ## LSTMトレーニング中のエラー
See Ray Smith's notes in TrainingTesseract 4.00, specifically the section on errors. TrainingTesseract 4.00、特にerrorsのRay Smithのメモを参照してください。 /tesseract/wiki/TrainingTesseract-4.00#error-messages-from-training)。
## Errors related to Tesseract API ## Tesseract API関連のエラー
### Error if locale settings are not equal to "C" ###ロケール設定が "C"と等しくない場合のエラー
Normal C++ programs like those which are built for tesseract automatically tesseract用に自動的に構築されたもののような通常のC ++プログラム
set the locale "C". ロケールを "C"に設定します。
There can be different locale settings if the tesseract library is used tesseractライブラリーが使用されている場合は、異なるロケール設定がある可能性があります。
in other software. 他のソフトウェアでは。
A wrong locale can cause wrong results from sscanf which is used at 間違ったロケールは、で使用されるsscanfから間違った結果を引き起こす可能性があります。
different places in the tesseract code, so make sure that we have the tesseractコードのさまざまな場所にあるので、
right locale settings and fail if that is not the case. そうでない場合は正しいロケール設定を行い、失敗します。
` | `
!strcmp(locale, "C"):Error:Assert failed:in file baseapi.cpp, line 192 !strcmp(locale, "C"):エラー:アサートに失敗しました:baseapi.cppファイルの192行目
` | `
You have to find out whether "C" works with your code or you must restore あなたは "C"があなたのコードで動作するかどうかを調べなければなりませんか、あるいはあなたは元に戻す必要があります
the original locale after calling the Tesseract API. Tesseract APIを呼び出した後の元のロケール
## Errors related to Tesseract CLI ## Tesseract CLI関連のエラー
最終更新:2019年06月11日 21:04