Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法matlab将图像文件转换i.e; .png为.dat文件?
matlab
i.e; .png
.dat
这取决于您的.dat文件格式。.dat不是标准扩展,因此您可以从某个地方获得它或设计自己的作家和阅读器。在阅读方面,.png您可以使用 matlabsimread('filename')函数。这将返回图像和 RGB 值的 NxMx3 矩阵。
.png
imread('filename')
我建议将 RGB 值组合成一个浮点值,然后使用dlmwrite或csvwrite存储它。如果您想首先操作图像,那将取决于您。
dlmwrite
csvwrite