如何将Leptonica Pix Object转换为Android的Bitmap

时间:2015-11-27 12:33:51

标签: android tesseract android-bitmap leptonica tess-two

我有一个由

返回的Leptonica Pix对象
TessBaseApi.getThresholdedImage();

现在,如何将其转换为位图,以便我可以通过ImageView显示它。

leptonica.android.Pixandroid.graphics.Bitmap;

我没有找到查看API文件的转换方法。

1 个答案:

答案 0 :(得分:7)

对于有问题的人,我在源.java文件中搜索了很多次后找到了方法:

if(mAudioManager.isMusicActive()) {

        Toast.makeText(this, "Audio is playing", Toast.LENGTH_LONG).show();
        Intent srvc = new Intent(this, OverlayShowingService.class);
        startService(srvc);     
        try {
            Timer timer = new Timer();
            timer.wait(1000);
        } catch (Exception e) {

            System.out.println("Exception found");
        }

}

然后将pix对象传递给writeBitmap。

google.maps.OverlayView