MATLAB App Designer怎么新建一个文件夹并把图像保存到该文件夹中
时间: 2024-05-05 22:18:20 浏览: 188
Alexnet-Trainer-MATLAB-AppDesigner-GUI:使用MATLAB创建和训练Alexnet神经网络数据集的GUI
5星 · 资源好评率100%
您可以使用MATLAB代码创建一个新文件夹并将图像保存在其中。例如,您可以使用以下代码:
```matlab
% 指定文件夹路径
folderPath = 'C:\myImagesFolder';
% 检查文件夹是否存在
if ~exist(folderPath, 'dir')
% 如果不存在,则创建文件夹
mkdir(folderPath);
end
% 保存图片到文件夹中(假设您要保存的图像保存在变量img中)
imwrite(img, fullfile(folderPath, 'myImage.png'));
```
这将创建一个名为“myImagesFolder”的文件夹并将图像保存为“myImage.png”。请注意,您需要更改“folderPath”变量以指向您想要保存图像的文件夹的路径。
阅读全文