4

我必须在 Matlab 中处理大量图像并将结果保存到具有透明度的图像文件中。但是PNG压缩对我来说需要太多时间。如何保存不压缩的 PNG 或透明的 TIFF?还有其他方法可以在不压缩和透明的情况下保存图像吗?

这是我在这里的第一个问题,如果有任何问题,请原谅我糟糕的英语和错误的问题风格。

4

3 回答 3

4

使用 Matlab 中的TIFF类,您可以编写具有透明度的 TIFF:

%# create a synthetic RGBA image
ch = checkerboard(100);
rgba = repmat(ch,[1,1,4]);
rgba(:,:,4) = rgba(:,:,4)==0;
rgba = uint8(round(rgba*255));

%# create a tiff object
tob = Tiff('test.tif','w');

%# you need to set Photometric before Compression
tob.setTag('Photometric',Tiff.Photometric.RGB)
tob.setTag('Compression',Tiff.Compression.None)

%# tell the program that channel 4 is alpha
tob.setTag('ExtraSamples',Tiff.ExtraSamples.AssociatedAlpha)

%# set additional tags (you may want to use the structure
%# version of this for convenience)
tob.setTag('ImageLength',size(ch,1));
tob.setTag('ImageWidth',size(ch,2));
tob.setTag('BitsPerSample',8);
tob.setTag('RowsPerStrip',16);
tob.setTag('PlanarConfiguration',Tiff.PlanarConfiguration.Chunky);
tob.setTag('Software','MATLAB')
tob.setTag('SamplesPerPixel',4);

%# write and close the file
tob.write(rgba)
tob.close

%# open in Photoshop - see transparency!
于 2012-12-01T22:32:07.337 回答
1

Matlabimwrite没有用于 PNG 压缩级别的参数。如果是这样,您可以将其设置为零以不进行压缩。虽然对于 TIFF 它确实有一个none选项Compression,但没有 alpha 通道。您可以写入带有 Alpha 通道且无压缩的旧 Sun Raster (RAS) 格式。虽然没有什么可能能够阅读它。

于 2012-12-01T15:44:31.990 回答
0

“没有未压缩的 PNG 变体。可以仅使用未压缩的 deflate 块来存储未压缩的数据”

未压缩的 deflate 块使用 5 字节的标头 + 每个块最多 65535 字节的未压缩数据。

http://www.w3.org/TR/PNG-Rationale.html

于 2012-12-01T15:05:02.320 回答