0

如何获取图像中使用的位数Matlab

谢谢。

4

1 回答 1

4

如果您指的是图像的位深度(即编码一个像素使用多少位),请尝试使用图像处理工具箱的功能imfinfo

链接到文档

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

info = imfinfo('your_image.jpg') # put your filename, matlab recognizes many image formats
bitdepth = info.BitDepth
于 2012-10-11T12:20:43.773 回答