OCR を必要とする Android アプリに取り組んでいます。APIとしてTesseractを使用することにしましたが、このエラーが発生し続けます:
E/Tesseract(native): language=eng で Tesseract API を初期化できませんでした!
- 私はすでにファイル
"eng.traineddata"
をその場所にコピーしました。 - Android Studio 2.1.2 (SDK 23) を使用しています
- API 22 Android Lollipop 5.1.1 を搭載したデバイスでのテスト (マシュマロの権限の問題について読む)
私が使用しているコードは次のとおりです。
public void reads(View view) {
TextView textView = (TextView) findViewById(R.id.textView);
int rotation = 0;
try {
ExifInterface exifInterface = new ExifInterface(mCurrentPhotoPath);
int orientation = exifInterface.getAttributeInt(ExifInterface.TAG_ORIENTATION,ExifInterface.ORIENTATION_NORMAL);
switch (orientation){
case ExifInterface.ORIENTATION_ROTATE_90: rotation = 90; break;
case ExifInterface.ORIENTATION_ROTATE_180: rotation = 180; break;
case ExifInterface.ORIENTATION_ROTATE_270: rotation = 270; break;
}
} catch(Exception e) {
}
int w = imageBitmap.getWidth();
int h = imageBitmap.getHeight();
if (rotation != 0) {
Matrix matrix = new Matrix();
matrix.preRotate(rotation);
imageBitmap = Bitmap.createBitmap(imageBitmap,0,0,w,h,matrix,false);
} else {
imageBitmap = Bitmap.createBitmap(imageBitmap,0,0,w,h);
}
imageBitmap = imageBitmap.copy(Bitmap.Config.ARGB_8888,true);
TessBaseAPI ReadIt = new TessBaseAPI();
ReadIt.init("/storage/emulated/0/","eng");
ReadIt.setImage(imageBitmap);
String Text = ReadIt.getUTF8Text();
if (Text!=null) textView.setText(Text);
}
build.gradle 依存関係で次の行を使用しました。
「com.rmtheis:tess-two:6.0.2」をコンパイルします
また、特定の指定されたディレクトリにダウンロードすることにより、 tessdataeng.traineddata
という名前のフォルダーに直接コピーしました。