gpt4 book ai didi

java - 如何将基于浮点的图像写入文件?

转载 作者:行者123 更新时间:2023-12-04 10:29:58 32 4
gpt4 key购买 nike

使用找到的代码 here ,我编写了存储图像数据的代码,其中每个颜色分量都是一个浮点值。

// Create a TYPE_FLOAT sample model (specifying how the pixels are stored)
SampleModel sampleModel = new PixelInterleavedSampleModel(DataBuffer.TYPE_FLOAT, options.width, options.height, 4, options.width * 4, new int[]{0,1,2,3});
// ...and data buffer (where the pixels are stored)
DataBufferFloat buffer = new DataBufferFloat(options.width * options.height * 4);

// Wrap it in a writable raster
WritableRaster raster = Raster.createWritableRaster(sampleModel, buffer, null);

// Create a color model compatible with this sample model/raster (TYPE_FLOAT)
// Note that the number of bands must equal the number of color components in the
// color space (3 for RGB) + 1 extra band if the color model contains alpha
ColorSpace colorSpace = ColorSpace.getInstance(ColorSpace.CS_sRGB);
ColorModel colorModel = new ComponentColorModel(colorSpace, true, false, Transparency.TRANSLUCENT, DataBuffer.TYPE_FLOAT);

// And finally create an image with this raster
BufferedImage out = new BufferedImage(colorModel, raster, colorModel.isAlphaPremultiplied(), null);
float[] backingImageData = buffer.getData();

FloatBuffer data = /*External Image Data Source...*/;
data.get(backingImageData); //Place data in image

boolean writerFound = ImageIO.write(out, "png", new File("C:\\out.png"));

但是,此代码失败,因为 ImageIO未能为该自定义镜像配置找到合适的编写器(如调试时所见,其中 writerFoundfalse )。我如何获得 ImageIO用这张图片成功写入数据?

最佳答案

要将包含浮点值的图像写入文件,您需要:

a) 一种允许存储浮点值的格式。大多数图像格式,包括 JPEG、PNG 或 GIF,当然没有。我知道的最常用的文件格式是 TIFF。不过,值得注意的是,浮点 TIFF 不是“基线”TIFF,因此并非所有 TIFF 软件都支持这些类型的文件。

b) 一个支持以浮点形式写入 TIFF 的 ImageIO 插件。我认为 JAI 可能会起作用,而且非常确定 GeoTools 会起作用。我自己的插件目前支持读取但不支持写入浮点数(但如果您喜欢冒险,为此创建一个更改集应该相当容易)。

排序后,以下内容应该可以工作(鉴于 out 与您的代码中的浮点图像相同):

ImageIO.write(out, "TIFF", new File("C:\\out.tif"));

关于java - 如何将基于浮点的图像写入文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60460417/

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