gpt4 book ai didi

android - 如何有效地将 Android 位图转换为 Leptonica Pix?

转载 作者:行者123 更新时间:2023-11-30 00:19:44 25 4
gpt4 key购买 nike

我正在尝试将 Bitmap 转换为 Pix。然而,手动从 Bitmap 读取每个像素并在 Pix 中设置它太慢了。

Pix pix = new Pix(width, height, depth);
for (int x = 0; x < width; x++) {
for (int y = 0; y < height; y++) {
pix.setPixel(x, y, bmp.getPixel(x, y));
}
}

最佳答案

ReadFile 中的 tess-two 存储库中找到解决方案

它很简单:Pix pix = ReadFile.readBitmap(bmp);

关于android - 如何有效地将 Android 位图转换为 Leptonica Pix?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46542688/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com