我遵循了ocr-reader的代码实验室教程。它可以成功工作。我想更新现有代码以显示FitToScan图像(https://developers.google.com/ar/images/FitToScan.png)并仅在该图像中检测文本。我试图在ocr_capture布局文件中添加ImageView,但我希望在框架内而不是框架外检测文本。我不知道该如何进行。任何帮助将非常感激。谢谢。
ocr_capture.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/topLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:keepScreenOn="true">
<com.google.android.gms.samples.vision.ocrreader.ui.camera.CameraSourcePreview
android:id="@+id/preview"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView android:id="@+id/myImageView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/fit_to_scan"
android:contentDescription="@string/fit_to_scan"/>
<com.google.android.gms.samples.vision.ocrreader.ui.camera.GraphicOverlay
android:id="@+id/graphicOverlay"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</com.google.android.gms.samples.vision.ocrreader.ui.camera.CameraSourcePreview>
</LinearLayout>