2015-12-07 50 views
4

我是一名学生,也是Android开发的初学者,需要为我的学校项目的联系人管理应用程序执行Android OCR功能。这是将图像从名称牌。Android OCR:无法解决getBoundingBox的错误

我已经搜索了很多关于这方面的信息的论坛,并找到了几个很好的例子。

目前我已经在线找到一个开源代码,不需要设置ndk和环境变量等来设置。但是,当我将它实现到eclipse(juno)时,有一个小错误,我不确定如何解决。

我已经搜索了一段时间没有任何结果。因此,决定在这里问。以下是有错误的代码。

final class OcrRecognizeAsyncTask extends AsyncTask<Void, Void, Boolean> { 

    // private static final boolean PERFORM_FISHER_THRESHOLDING = false; 
    // private static final boolean PERFORM_OTSU_THRESHOLDING = false; 
    // private static final boolean PERFORM_SOBEL_THRESHOLDING = false; 

    private CaptureActivity activity; 
    private TessBaseAPI baseApi; 
    private byte[] data; 
    private int width; 
    private int height; 
    private OcrResult ocrResult; 
    private long timeRequired; 

    OcrRecognizeAsyncTask(CaptureActivity activity, TessBaseAPI baseApi, byte[] data, int width, int height) { 
    this.activity = activity; 
    this.baseApi = baseApi; 
    this.data = data; 
    this.width = width; 
    this.height = height; 
    } 

    @Override 
    protected Boolean doInBackground(Void... arg0) { 
    long start = System.currentTimeMillis(); 
    Bitmap bitmap = activity.getCameraManager().buildLuminanceSource(data, width, height).renderCroppedGreyscaleBitmap(); 
    String textResult; 

    //  if (PERFORM_FISHER_THRESHOLDING) { 
    //  Pix thresholdedImage = Thresholder.fisherAdaptiveThreshold(ReadFile.readBitmap(bitmap), 48, 48, 0.1F, 2.5F); 
    //  Log.e("OcrRecognizeAsyncTask", "thresholding completed. converting to bmp. size:" + bitmap.getWidth() + "x" + bitmap.getHeight()); 
    //  bitmap = WriteFile.writeBitmap(thresholdedImage); 
    //  } 
    //  if (PERFORM_OTSU_THRESHOLDING) { 
    //  Pix thresholdedImage = Binarize.otsuAdaptiveThreshold(ReadFile.readBitmap(bitmap), 48, 48, 9, 9, 0.1F); 
    //  Log.e("OcrRecognizeAsyncTask", "thresholding completed. converting to bmp. size:" + bitmap.getWidth() + "x" + bitmap.getHeight()); 
    //  bitmap = WriteFile.writeBitmap(thresholdedImage); 
    //  } 
    //  if (PERFORM_SOBEL_THRESHOLDING) { 
    //  Pix thresholdedImage = Thresholder.sobelEdgeThreshold(ReadFile.readBitmap(bitmap), 64); 
    //  Log.e("OcrRecognizeAsyncTask", "thresholding completed. converting to bmp. size:" + bitmap.getWidth() + "x" + bitmap.getHeight()); 
    //  bitmap = WriteFile.writeBitmap(thresholdedImage); 
    //  } 

    try {  
     baseApi.setImage(ReadFile.readBitmap(bitmap)); 
     textResult = baseApi.getUTF8Text(); 
     timeRequired = System.currentTimeMillis() - start; 

     // Check for failure to recognize text 
     if (textResult == null || textResult.equals("")) { 
     return false; 
     } 
     ocrResult = new OcrResult(); 
     ocrResult.setWordConfidences(baseApi.wordConfidences()); 
     ocrResult.setMeanConfidence(baseApi.meanConfidence()); 
     ocrResult.setRegionBoundingBoxes(baseApi.getRegions().getBoxRects()); 
     ocrResult.setTextlineBoundingBoxes(baseApi.getTextlines().getBoxRects()); 
     ocrResult.setWordBoundingBoxes(baseApi.getWords().getBoxRects()); 
     ocrResult.setStripBoundingBoxes(baseApi.getStrips().getBoxRects()); 

     // Iterate through the results. 
     final ResultIterator iterator = baseApi.getResultIterator(); 
     int[] lastBoundingBox; 
     ArrayList<Rect> charBoxes = new ArrayList<Rect>(); 
     iterator.begin(); 
     do { 
      lastBoundingBox =iterator.getBoundingBox(PageIteratorLevel.RIL_SYMBOL); 
      Rect lastRectBox = new Rect(lastBoundingBox[0], lastBoundingBox[1], 
        lastBoundingBox[2], lastBoundingBox[3]); 
      charBoxes.add(lastRectBox); 
     } while (iterator.next(PageIteratorLevel.RIL_SYMBOL)); 
     iterator.delete(); 
     ocrResult.setCharacterBoundingBoxes(charBoxes); 

    } catch (RuntimeException e) { 
     Log.e("OcrRecognizeAsyncTask", "Caught RuntimeException in request to Tesseract. Setting state to CONTINUOUS_STOPPED."); 
     e.printStackTrace(); 
     try { 
     baseApi.clear(); 
     activity.stopHandler(); 
     } catch (NullPointerException e1) { 
     // Continue 
     } 
     return false; 
    } 
    timeRequired = System.currentTimeMillis() - start; 
    ocrResult.setBitmap(bitmap); 
    ocrResult.setText(textResult); 
    ocrResult.setRecognitionTimeRequired(timeRequired); 
    return true; 
    } 

    @Override 
    protected void onPostExecute(Boolean result) { 
    super.onPostExecute(result); 

    Handler handler = activity.getHandler(); 
    if (handler != null) { 
     // Send results for single-shot mode recognition. 
     if (result) { 
     Message message = Message.obtain(handler, R.id.ocr_decode_succeeded, ocrResult); 
     message.sendToTarget(); 
     } else { 
     Message message = Message.obtain(handler, R.id.ocr_decode_failed, ocrResult); 
     message.sendToTarget(); 
     } 
     activity.getProgressDialog().dismiss(); 
    } 
    if (baseApi != null) { 
     baseApi.clear(); 
    } 
    } 
} 

误差驻留在do和while循环:

do { 
      lastBoundingBox = iterator.***getBoundingBox***(PageIteratorLevel.RIL_SYMBOL); 
      Rect lastRectBox = new Rect(lastBoundingBox[0], lastBoundingBox[1], 
        lastBoundingBox[2], lastBoundingBox[3]); 
      charBoxes.add(lastRectBox); 
     } while (iterator.next(PageIteratorLevel.RIL_SYMBOL)); 
     iterator.***delete***(); 
     ocrResult.setCharacterBoundingBoxes(charBoxes); 

在上述代码为粗体, getBoundingBox并删除具有以下错误:

“的方法getBoundingBox(INT )未定义为类型ResultIterator“

”方法getBoundingBox(int)未定义类型ResultIterator“

我已经尝试了几种方法,但不能使其工作。 如果有任何解决方案,请帮助我,非常感谢。

+0

你是否含有该文件:https://github.com/rmtheis/tess-two/blob/master/tess-two/src/com/googlecode/tesseract/android/PageIterator.java –

+1

@Donovan问题可能是tesseract库的来源。 'PageIterator' API在版本之间改变,并不总是有'getBoundingBox'方法。 –

+0

@MorrisonChang嗨,你的意思是将代码包含在你指向我的项目的链接中?我已经尝试将代码作为另一个类添加到项目中,并且getBoundingBox仍然具有相同的错误。真的很感谢你的帮助:) –

回答

1

@ SebastianRoth是对的:您使用的预编译库已过期。我建议安装NDK并按照build instructions的OCR引擎。这将重新编译该库,包括其getBoundingBox方法。

+0

试过了,现在可以工作了,非常感谢:) –

相关问题