如何从图像Android应用程序中提取文本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何从图像Android应用程序中提取文本相关的知识,希望对你有一定的参考价值。
我正在为我的android应用程序开发一项功能。我想从图片中读取文本,然后将该文本保存在数据库中。使用OCR是最好的方法吗?还有另外一种方法吗? Google在其文档中建议NDK只应在严格必要时使用,但究竟是什么垮台?
任何帮助都会很棒。
答案
您可以使用谷歌视觉库将图像转换为文本,它将提供更好的图像输出。在构建gradle中添加以下库:
compile 'com.google.android.gms:play-services-vision:10.0.0+'
TextRecognizer textRecognizer = new TextRecognizer.Builder(getApplicationContext()).build();
Frame imageFrame = new Frame.Builder()
.setBitmap(bitmap) // your image bitmap
.build();
String imageText = "";
SparseArray<TextBlock> textBlocks = textRecognizer.detect(imageFrame);
for (int i = 0; i < textBlocks.size(); i++) {
TextBlock textBlock = textBlocks.get(textBlocks.keyAt(i));
imageText = textBlock.getValue(); // return string
}
另一答案
在这个Simple example of OCRReader in Android教程中,您可以从图像中读取文本,也可以使用非常简单的代码使用相机扫描文本。
该库是使用Mobile Vision Text API开发的
用于从相机扫描文本
OCRCapture.Builder(this)
.setUseFlash(true)
.setAutoFocus(true)
.buildWithRequestCode(CAMERA_SCAN_TEXT);
用于从图像中提取文本
String text = OCRCapture.Builder(this).getTextFromUri(pickedImage);
//You can also use getTextFromBitmap(Bitmap bitmap) or getTextFromImage(String imagePath) buplic APIs from OCRLibrary library.
另一答案
有一个不同的选择。您可以将图像上传到服务器,从服务器OCR,然后获得结果。
以上是关于如何从图像Android应用程序中提取文本的主要内容,如果未能解决你的问题,请参考以下文章