gpt4 book ai didi

image - Matlab 写 1 位 bmp

转载 作者:行者123 更新时间:2023-12-04 06:48:28 25 4
gpt4 key购买 nike

如何使用 imwrite 或任何其他函数在 Matlab 中编写 1 位 bmp 图像。 bmp 的 imwrite 的默认值是 8 位。

非常感谢 :)

最佳答案

根据IMWRITE文档:

If the input array is of class logical, imwrite assumes the data is a binary image and writes it to the file with a bit depth of 1, if the format allows it. BMP, PNG, or TIFF formats accept binary images as input arrays.



因此,如果您将图像数据转换为 logical矩阵,然后将其提供给 IMWRITE ,您应该能够创建 1 位 BMP 图像:
imwrite(logical(imageData),'image.bmp');

关于image - Matlab 写 1 位 bmp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3459706/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com