如何从图像中以行和列的形式提取文本并在android中显示TEXTVIEW

时间:2018-07-29 12:24:13

标签: android text extract

代码示例:

SparseArray<TextBlock> items = detections.getDetectedItems();
StringBuilder stringBuilder = new StringBuilder();
for (int i = 0; i < items.size(); ++i) {
    TextBlock item = items.valueAt(i);
    if (item != null && item.getValue() != null) {
        stringBuilder.append(item.getValue()+ " ," );
        ...
    }
}

如何从图像中以ROW和COLUMNS形式提取文本?

0 个答案:

没有答案