图像中使用的位数

时间:2012-10-11 12:15:20

标签: matlab bits

如何在Matlab

中获取图像中使用的位数

感谢。

1 个答案:

答案 0 :(得分:4)

如果您的意思是图像的位深度(即用于编码一个像素的位数),请尝试使用图像处理工具箱的函数imfinfo

Link to the Documentation

以下是您可以使用它的方法:

info = imfinfo('your_image.jpg') # put your filename, matlab recognizes many image formats
bitdepth = info.BitDepth