gpt4 book ai didi

Java BufferedImage灰度转RGB

转载 作者:行者123 更新时间:2023-11-30 08:53:46 24 4
gpt4 key购买 nike

我有一个 8 位灰度位图,我需要对其进行一些模式识别。我在 Java 中创建了第一个测试框架,它运行良好。

之后,我将所有内容移植到 C++ 并发现我的模式不再存在。

经过一些调查,我意识到在 java 代码中有一个从 TYPE_BYTE_GRAY 到 TYPE_3BYTE_BGR 的“隐藏”格式更改。

我可以将其分解为以下测试函数:

public static void ConvertFiles(File dir, String format)
{
File[] images = getOrderedFiles(dir, format);
for (int i = 0; i < images.length; i++)
{
try
{
BufferedImage img = ImageIO.read(images[i]);
BufferedImage dst = new BufferedImage(img.getWidth() , img.getHeight(), BufferedImage.TYPE_3BYTE_BGR);
for (int xTarget = 0; xTarget <img.getWidth(); xTarget++)
{
for (int yTarget = 0; yTarget <img.getHeight(); yTarget++)
{
int val = img.getRGB(xTarget, yTarget);
dst.setRGB(xTarget,yTarget, val);
}
}
ImageIO.write(dst, "bmp", new File(correctSlash(images[i].getParent()) + "Convert\\" + images[i].getName()));
}
catch (Exception e)
{
e.printStackTrace();
}
}
}

生成的文件似乎“更亮”(无法发布图像,抱歉。我可以应要求发送它们)。当我在创建新图像时使用 TYPE_BYTE_GRAY 时,没有出现任何变化,因此很明显如何避免在 Java 中产生这种影响。

现在的问题是,我更喜欢“变亮”的图像,并且想知道这里发生了什么,以便我可以将其重现为某种图像增强。

提前致谢。

最佳答案

通过与同事(谢谢 Holger)深入研究 java 代码 (getRGB()) 找到了它。

通过这样生成的查找表对原始灰度值进行转换:

l8Tos8 = new byte[256];
float input, output;
// algorithm for linear RGB to nonlinear sRGB conversion
// is from the IEC 61966-2-1 International Standard,
// Colour Management - Default RGB colour space - sRGB,
// First Edition, 1999-10,
// avaiable for order at http://www.iec.ch
for (int i = 0; i <= 255; i++) {
input = ((float) i) / 255.0f;
if (input <= 0.0031308f) {
output = input * 12.92f;
} else {
output = 1.055f * ((float) Math.pow(input, (1.0 / 2.4)))
- 0.055f;
}
l8Tos8[i] = (byte) Math.round(output * 255.0f);
}

所以至少在部分 Gamma 校正方面。

我可以在 C++ 端应用它并获得相同的结果。

关于Java BufferedImage灰度转RGB,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29675337/

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