我的图片信息如下: imfinfo( 'drosophila.tif')
ans =
Filename: 'drosophila.tif'
FileModDate: '10-Nov-2009 18:52:42'
FileSize: 264768
Format: 'tif'
FormatVersion: []
Width: 512
Height: 512
BitDepth: 8
ColorType: 'grayscale'
FormatSignature: [73 73 42 0]
ByteOrder: 'little-endian'
NewSubFileType: 0
BitsPerSample: 8
Compression: 'PackBits'
PhotometricInterpretation: 'BlackIsZero'
StripOffsets: [32x1 double]
SamplesPerPixel: 1
RowsPerStrip: 16
StripByteCounts: [32x1 double]
XResolution: 72
YResolution: 72
ResolutionUnit: 'Inch'
Colormap: []
PlanarConfiguration: 'Chunky'
TileWidth: []
TileLength: []
TileOffsets: []
TileByteCounts: []
Orientation: 1
FillOrder: 1
GrayResponseUnit: 0.0100
MaxSampleValue: 255
MinSampleValue: 0
Thresholding: 1
Offset: 264322
它表明bitdepth是8.它是什么意思? 如何计算文件大小? wat信息以格式签名
存储答案 0 :(得分:4)
这意味着每种RGB颜色都会显示8位或256种颜色值。
文件大小:ColorType:'灰度' - 这意味着每个像素只有1个字节。 512高度* 512宽度= 262144字节。压缩262144个字节(压缩:'PackBits'),并在文件的开头添加一些带信息的头。总计264768字节。