标签: matlab bits
如何在Matlab?
Matlab
感谢。
答案 0 :(得分:4)
如果您的意思是图像的位深度(即用于编码一个像素的位数),请尝试使用图像处理工具箱的函数imfinfo
imfinfo
Link to the Documentation
以下是您可以使用它的方法:
info = imfinfo('your_image.jpg') # put your filename, matlab recognizes many image formats bitdepth = info.BitDepth