合并两个单通道 BufferedImage 对象

发布于 2024-11-08 18:49:43 字数 508 浏览 0 评论 0原文

我有组合两个 BufferedImage 对象的代码,每个对象代表一个单独的颜色通道(红色和蓝色)。目前我正在做:

int p, q, g, b;
        for (int x = 0; x < width; ++x) {
            for (int y = 0; y < height; ++y) {
                p = img0.getRGB(x, y) & 0xff00;
                q = img1.getRGB(x, y) & 0xff;
                fused.setRGB(x, y, p | q);
            }
        }

但是,对于 2000x2000 图像来说,这相当慢。有没有更快的方法通过 Java2D 或 JAI API 来做到这一点?我已经阅读了 AlphaComposite 类,但这似乎是基于透明度组合图像,而不是实际合并通道。

任何指示将不胜感激。

I have code that combines two BufferedImage objects, each one representing a separate color channel (red and blue). Currently I am doing:

int p, q, g, b;
        for (int x = 0; x < width; ++x) {
            for (int y = 0; y < height; ++y) {
                p = img0.getRGB(x, y) & 0xff00;
                q = img1.getRGB(x, y) & 0xff;
                fused.setRGB(x, y, p | q);
            }
        }

However, this is rather slow for a 2000x2000 image. Is there a faster way to do this via the Java2D or JAI API's? I've read up on the AlphaComposite class, but that seems to combine images based on transparency, rather than actually merge channels.

Any pointers would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文