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.
我尝试了以下命令:
imshow(originalImage); imsave;
它可以工作,但我希望 matlab 自动将图像保存为 bmp 格式(在当前文件夹中)。我尝试使用:
save('myimage.bmp','originalImage');
图片已保存,但在图片本身而不是图片上,我看到了以下消息:“Windows 照片查看器无法打开此图片,因为文件似乎已损坏、损坏或太大”。(图片大小为5kb)。
谢谢!
使用该功能imwrite来做到这一点:
imwrite
imwrite(image_matrix, 'myimage.bmp', 'bmp')
imwrite 关于 mathworks 的文档