将二进制图像写入 mat 文件 - matlab
我有一个二进制格式的图像。宽度和高度分别为 10 和 10。我希望将此图像写入 .mat 文件。当我将此图像保存到 .mat 文件时。它显示为 10x10 矩阵。但是,我想要的是 100 个值作为一行或一列写入 .mat 文件,而不是 10x10 矩阵。有人可以帮我吗?
I have an image which is in binary format. Width and height are 10 and 10. I want this image to write to a .mat file. When I save this image to a .mat file. It display as a 10x10 matrix. But, what I want is 100 values as a row or a column to be written to the .mat file, not 10x10 matrix. Can someone please help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将任何矩阵转换为向量,如下所示:
x(:)
。You can turn any matrix into a vector like this:
x(:)
.