当前位置:   article > 正文

Android开发:通过Tesseract第三方库实现OCR_adnroid tesseract-ocr

adnroid tesseract-ocr

一、引言

        什么是OCR?OCR(Optical Character Recognition,光学字符识别)是指电子设备(例如扫描仪或数码相机)检查纸上打印的字符,通过检测暗、亮的模式确定其形状,然后用字符识别方法将形状翻译成计算机文字的过程。简单地说,OCR是一种技术,该项技术采用光学的方式将纸质文档中的文字转换为黑白点阵图像,然后通过识别软件将图像中的文字转换成文本格式,供文字处理软件进一步编辑加工。

        什么是Tesseract?Tesseract was originally developed at Hewlett-Packard Laboratories Bristol UK and at Hewlett-Packard Co, Greeley Colorado USA between 1985 and 1994, with some more changes made in 1996 to port to Windows, and some C++izing in 1998. In 2005 Tesseract was open sourced by HP. From 2006 until November 2018 it was developed by Google.Tesseract最初是在英国布里斯托尔的惠普实验室和美国科罗拉多州格里利的惠普公司于1985年至1994年间开发的,1996年做了一些更改以移植到Windows,并在1998年进行了一些c++化。2005年,Tesseract被惠普开源。从2006年到2018年11月,它由谷歌开发。简单地说,Tesseract 就是上面OCR所说的“识别软件”的具体实现。

        OCR的识别对象(输入)是一张图片,而识别结果(输出)是计算机文字。在Android手机端主要存在两种图片的获取方式,一种是从相册中选择一个,另一个是直接拍照获得。因此,本文将实现最简单的OCR思路:首先从手机中获得一张图片,然后将其输入到Tesseract库,最后通过该库输出识别结果。由于只是学习该库的使用方式,所以博主忽略了其它辅助性的功能,比如拍照识别。

二、Android通过Tesseract实现OCR

1、在Module的build.gradle文件中添加以下依赖
implementation 'com.rmtheis:tess-two:9.1.0'
2、在AndroidManifest.xml文件中添加以下权限
  1. <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
  2. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
3、在MainActivity中申请权限

        建议在onCreate方法中执行下面的checkPermission方法

  1. // 检查应用所需的权限,如不满足则发出权限请求
  2. private void checkPermission() {
  3. if (ContextCompat.checkSelfPermission(getApplicationContext(),
  4. Manifest.permission.READ_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
  5. ActivityCompat.requestPermissions(MainActivity.this,
  6. new String[]{Manifest.permission.READ_EXTERNAL_STORAGE}, 120);
  7. }
  8. if (ContextCompat.checkSelfPermission(getApplicationContext(),
  9. Manifest.permission.WRITE_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
  10. ActivityCompat.requestPermissions(MainActivity.this,
  11. new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE}, 121);
  12. }
  13. }
4、从assets中读取一张读片

        既用于显示,又用于识别

  1. // 从assets中读取一张Bitmap类型的图片
  2. private Bitmap getBitmapFromAssets(Context context, String filename) {
  3. Bitmap bitmap = null;
  4. AssetManager assetManager = context.getAssets();
  5. try {
  6. InputStream is = assetManager.open(filename);
  7. bitmap = BitmapFactory.decodeStream(is);
  8. is.close();
  9. Log.i(TAG, "图片读取成功。");
  10. Toast.makeText(getApplicationContext(), "图片读取成功。", Toast.LENGTH_SHORT).show();
  11. } catch (IOException e) {
  12. Log.i(TAG, "图片读取失败。");
  13. Toast.makeText(getApplicationContext(), "图片读取失败。", Toast.LENGTH_SHORT).show();
  14. e.printStackTrace();
  15. }
  16. return bitmap;
  17. }
5、做好OCR的准备工作

        去https://github.com/tesseract-ocr/下载.traineddata语言包,然后放在项目assets目录下,并通过以下代码复制到Android文件系统中

  1. // 为Tesserect复制(从assets中复制过去)所需的数据
  2. private void prepareTess() {
  3. try{
  4. // 先创建必须的目录
  5. File dir = getExternalFilesDir(TESS_DATA);
  6. if(!dir.exists()){
  7. if (!dir.mkdir()) {
  8. Toast.makeText(getApplicationContext(), "目录" + dir.getPath() + "没有创建成功", Toast.LENGTH_SHORT).show();
  9. }
  10. }
  11. // 从assets中复制必须的数据
  12. String pathToDataFile = dir + "/" + DATA_FILENAME;
  13. if (!(new File(pathToDataFile)).exists()) {
  14. InputStream in = getAssets().open(DATA_FILENAME);
  15. OutputStream out = new FileOutputStream(pathToDataFile);
  16. byte[] buff = new byte[1024];
  17. int len;
  18. while ((len = in.read(buff)) > 0) {
  19. out.write(buff, 0, len);
  20. }
  21. in.close();
  22. out.close();
  23. }
  24. } catch (Exception e) {
  25. Log.e(TAG, e.getMessage());
  26. }
  27. }
6、点击按钮后调用以下方法,执行OCR识别
  1. // OCR识别的主程序
  2. private void mainProgram() {
  3. // 从assets中获取一张Bitmap图片
  4. Bitmap bitmap = getBitmapFromAssets(MainActivity.this, TARGET_FILENAME);
  5. // 同时显示在界面
  6. main_iv_image.setImageBitmap(bitmap);
  7. if (bitmap != null) {
  8. // 准备工作:创建路径和Tesserect的数据
  9. prepareTess();
  10. // 初始化Tesserect
  11. TessBaseAPI tessBaseAPI = new TessBaseAPI();
  12. String dataPath = getExternalFilesDir("/").getPath() + "/";
  13. tessBaseAPI.init(dataPath, "eng");
  14. // 识别并显示结果
  15. String result = getOCRResult(tessBaseAPI, bitmap);
  16. main_tv_result.setText(result);
  17. }
  18. }
  19. // 进行OCR并返回识别结果
  20. private String getOCRResult(TessBaseAPI tessBaseAPI, Bitmap bitmap) {
  21. tessBaseAPI.setImage(bitmap);
  22. String result = "-";
  23. try{
  24. result = tessBaseAPI.getUTF8Text();
  25. }catch (Exception e){
  26. Log.e(TAG, e.getMessage());
  27. }
  28. tessBaseAPI.end();
  29. return result;
  30. }
7、编译运行,效果如图

        个人感觉识别率不是很准,一般般。

8、源代码贴一下

        MainActivity.java

  1. import androidx.appcompat.app.AppCompatActivity;
  2. import androidx.core.app.ActivityCompat;
  3. import androidx.core.content.ContextCompat;
  4. import android.Manifest;
  5. import android.content.Context;
  6. import android.content.pm.PackageManager;
  7. import android.content.res.AssetManager;
  8. import android.graphics.Bitmap;
  9. import android.graphics.BitmapFactory;
  10. import android.os.Bundle;
  11. import android.util.Log;
  12. import android.view.View;
  13. import android.widget.Button;
  14. import android.widget.ImageView;
  15. import android.widget.TextView;
  16. import android.widget.Toast;
  17. import com.googlecode.tesseract.android.TessBaseAPI;
  18. import java.io.File;
  19. import java.io.FileOutputStream;
  20. import java.io.IOException;
  21. import java.io.InputStream;
  22. import java.io.OutputStream;
  23. public class MainActivity extends AppCompatActivity {
  24. public static final String TESS_DATA = "/tessdata";
  25. private static final String TARGET_FILENAME = "vin_demo.png";
  26. private static final String DATA_FILENAME = "eng.traineddata";
  27. private static final String TAG = MainActivity.class.getSimpleName();
  28. private Button main_bt_recognize;
  29. private TextView main_tv_result;
  30. private ImageView main_iv_image;
  31. @Override
  32. protected void onCreate(Bundle savedInstanceState) {
  33. super.onCreate(savedInstanceState);
  34. // 设置布局文件
  35. setContentView(R.layout.activity_main);
  36. // 检查并请求应用所需权限
  37. checkPermission();
  38. // 获取控件对象
  39. initView();
  40. // 设置控件的监听器
  41. setListener();
  42. }
  43. private void setListener() {
  44. // 设置识别按钮的监听器
  45. main_bt_recognize.setOnClickListener(new View.OnClickListener() {
  46. @Override
  47. public void onClick(View view) {
  48. // 识别之前需要再次检查一遍权限
  49. checkPermission();
  50. // 点击后的主程序
  51. mainProgram();
  52. }
  53. });
  54. }
  55. // 获得界面需要交互的控件
  56. private void initView() {
  57. main_bt_recognize = findViewById(R.id.main_bt_recognize);
  58. main_tv_result = findViewById(R.id.main_tv_result);
  59. main_iv_image = findViewById(R.id.main_iv_image);
  60. }
  61. // 检查应用所需的权限,如不满足则发出权限请求
  62. private void checkPermission() {
  63. if (ContextCompat.checkSelfPermission(getApplicationContext(),
  64. Manifest.permission.READ_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
  65. ActivityCompat.requestPermissions(MainActivity.this,
  66. new String[]{Manifest.permission.READ_EXTERNAL_STORAGE}, 120);
  67. }
  68. if (ContextCompat.checkSelfPermission(getApplicationContext(),
  69. Manifest.permission.WRITE_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
  70. ActivityCompat.requestPermissions(MainActivity.this,
  71. new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE}, 121);
  72. }
  73. }
  74. // OCR识别的主程序
  75. private void mainProgram() {
  76. // 从assets中获取一张Bitmap图片
  77. Bitmap bitmap = getBitmapFromAssets(MainActivity.this, TARGET_FILENAME);
  78. // 同时显示在界面
  79. main_iv_image.setImageBitmap(bitmap);
  80. if (bitmap != null) {
  81. // 准备工作:创建路径和Tesserect的数据
  82. prepareTess();
  83. // 初始化Tesserect
  84. TessBaseAPI tessBaseAPI = new TessBaseAPI();
  85. String dataPath = getExternalFilesDir("/").getPath() + "/";
  86. tessBaseAPI.init(dataPath, "eng");
  87. // 识别并显示结果
  88. String result = getOCRResult(tessBaseAPI, bitmap);
  89. main_tv_result.setText(result);
  90. }
  91. }
  92. // 从assets中读取一张Bitmap类型的图片
  93. private Bitmap getBitmapFromAssets(Context context, String filename) {
  94. Bitmap bitmap = null;
  95. AssetManager assetManager = context.getAssets();
  96. try {
  97. InputStream is = assetManager.open(filename);
  98. bitmap = BitmapFactory.decodeStream(is);
  99. is.close();
  100. Log.i(TAG, "图片读取成功。");
  101. Toast.makeText(getApplicationContext(), "图片读取成功。", Toast.LENGTH_SHORT).show();
  102. } catch (IOException e) {
  103. Log.i(TAG, "图片读取失败。");
  104. Toast.makeText(getApplicationContext(), "图片读取失败。", Toast.LENGTH_SHORT).show();
  105. e.printStackTrace();
  106. }
  107. return bitmap;
  108. }
  109. // 为Tesserect复制(从assets中复制过去)所需的数据
  110. private void prepareTess() {
  111. try{
  112. // 先创建必须的目录
  113. File dir = getExternalFilesDir(TESS_DATA);
  114. if(!dir.exists()){
  115. if (!dir.mkdir()) {
  116. Toast.makeText(getApplicationContext(), "目录" + dir.getPath() + "没有创建成功", Toast.LENGTH_SHORT).show();
  117. }
  118. }
  119. // 从assets中复制必须的数据
  120. String pathToDataFile = dir + "/" + DATA_FILENAME;
  121. if (!(new File(pathToDataFile)).exists()) {
  122. InputStream in = getAssets().open(DATA_FILENAME);
  123. OutputStream out = new FileOutputStream(pathToDataFile);
  124. byte[] buff = new byte[1024];
  125. int len;
  126. while ((len = in.read(buff)) > 0) {
  127. out.write(buff, 0, len);
  128. }
  129. in.close();
  130. out.close();
  131. }
  132. } catch (Exception e) {
  133. Log.e(TAG, e.getMessage());
  134. }
  135. }
  136. // 进行OCR并返回识别结果
  137. private String getOCRResult(TessBaseAPI tessBaseAPI, Bitmap bitmap) {
  138. tessBaseAPI.setImage(bitmap);
  139. String result = "-";
  140. try{
  141. result = tessBaseAPI.getUTF8Text();
  142. }catch (Exception e){
  143. Log.e(TAG, e.getMessage());
  144. }
  145. tessBaseAPI.end();
  146. return result;
  147. }
  148. }

        layout_main.xml

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:context=".MainActivity">
  8. <ScrollView
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent">
  11. <LinearLayout
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. android:orientation="vertical" >
  15. <ImageView
  16. android:id="@+id/main_iv_image"
  17. android:layout_width="match_parent"
  18. android:layout_height="wrap_content"
  19. android:layout_gravity="center_horizontal"
  20. android:layout_marginLeft="5dp"
  21. android:layout_marginRight="5dp"/>
  22. <Button
  23. android:id="@+id/main_bt_recognize"
  24. android:layout_width="match_parent"
  25. android:layout_height="wrap_content"
  26. android:layout_marginLeft="5dp"
  27. android:layout_marginRight="5dp"
  28. android:layout_gravity="center_horizontal"
  29. android:text="读取一张图片并识别" />
  30. <TextView
  31. android:layout_width="match_parent"
  32. android:layout_height="wrap_content"
  33. android:layout_marginLeft="5dp"
  34. android:layout_marginRight="5dp"
  35. android:layout_gravity="center_horizontal"
  36. android:text="识别结果:" />
  37. <TextView
  38. android:id="@+id/main_tv_result"
  39. android:layout_width="match_parent"
  40. android:layout_height="wrap_content"
  41. android:layout_marginLeft="5dp"
  42. android:layout_marginRight="5dp"
  43. android:layout_gravity="center_horizontal" />
  44. </LinearLayout>
  45. </ScrollView>
  46. </LinearLayout>

        AndroidManifest.xml

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.cs.ocrdemo4csdn">
  4. <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
  5. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  6. <application
  7. android:allowBackup="true"
  8. android:icon="@mipmap/ic_launcher"
  9. android:label="@string/app_name"
  10. android:roundIcon="@mipmap/ic_launcher_round"
  11. android:supportsRtl="true"
  12. android:theme="@style/Theme.OCRDemo4CSDN">
  13. <activity
  14. android:name=".MainActivity"
  15. android:exported="true">
  16. <intent-filter>
  17. <action android:name="android.intent.action.MAIN" />
  18. <category android:name="android.intent.category.LAUNCHER" />
  19. </intent-filter>
  20. </activity>
  21. </application>
  22. </manifest>

        build.gradle(Module)

  1. plugins {
  2. id 'com.android.application'
  3. }
  4. android {
  5. compileSdk 34
  6. defaultConfig {
  7. applicationId "com.cs.ocrdemo4csdn"
  8. minSdk 21
  9. targetSdk 34
  10. versionCode 1
  11. versionName "1.0"
  12. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. compileOptions {
  21. sourceCompatibility JavaVersion.VERSION_1_8
  22. targetCompatibility JavaVersion.VERSION_1_8
  23. }
  24. }
  25. dependencies {
  26. implementation 'androidx.appcompat:appcompat:1.2.0'
  27. implementation 'com.google.android.material:material:1.3.0'
  28. implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
  29. testImplementation 'junit:junit:4.+'
  30. androidTestImplementation 'androidx.test.ext:junit:1.1.2'
  31. androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  32. implementation 'com.rmtheis:tess-two:9.1.0'
  33. }

        vin_demo.png

随便从网上下的图片(保证存在光学字符即可)。

        eng.traineddata

https://github.com/tesseract-ocr/下载的,如果不行从https://github.com/raykibul/Android-OCR-Testing/tree/main下载。

三、参考资料

        1、光学字符识别

        2、GitHub - tesseract-ocr/tesseract

        3、GitHub - raykibul/Android-OCR-Testing

四、总结语

        1、跟着别人的CSDN博客捣鼓了一天多,但是没能调通,一直在报错,比如遇到“Could not initialize Tesseract API with language=eng”、“getUTF8Text导致android tesseract崩溃”等等问题。后边看了GitHub上边比较新的代码(诸位如果代码参考了我的博客还是没能调通,建议看看这份代码),然后就跑通了。目前还不知道原因是啥。

        2、我看Tesseract这个库的识别结果并不是十分准确,尤其是对于拍照出来的结果识别率很低,再从这个库的发展历史来看,好像现在都没有什么人再维护它了(最后的维护者是谷歌,而且停留在2018年),所以,对于现在(今年是2023年)而言,我感觉它已经有点属于是过时技术。大家可以寻求一些比较新的技术方案,毕竟现在大模型都搞得这么牛了,OCR这种应该搞得更好才是。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/683368
推荐阅读
相关标签
  

闽ICP备14008679号