如何将Bitmap转换为Frame?

时间:2016-11-19 19:19:07

标签: android bitmap ocr android-vision

目前,我正在使用Mobile Vision处理Android程序。我正在使用" TextRecognizer" class和其中一个方法是.detect(Frame frame)。现在我有一个我要输入的图像,但是,图像是文件类型" Bitmap"。我试图将其转换为" Frame"通过施放但它没有奏效。如果有人有任何建议,将非常感激。

1 个答案:

答案 0 :(得分:4)

使用Frame.Builder类中的setBitmap方法:

Frame outputFrame = new Frame.Builder().setBitmap(myBitmap).build();