调整图像大小并将其保留在 matlab 中的新文件夹中的新尺寸
我在matlab中编写了以下代码。从这段代码中,我将图像序列作为文件夹的输入并调整这些图像的大小。现在我需要将它们以新的大小存储在输出文件夹中。任何人都可以帮助我更新此代码。
fileFolder = fullfile('D:','Texture DataBases','images3000');
dirOutput = dir(fullfile(fileFolder,'image*.jpg'));
fileNames = {dirOutput.name};
for k=1:length(fileNames)
H=fileNames{k};
S=imread(H);
I-resize(S, [300 300]);
imshow(I);
end
......
......
I write the following code in matlab. from this code I take sequence of images as input from a folder and resize these images. Now I need to store them with new size on output folder. any one help me to update this code.
fileFolder = fullfile('D:','Texture DataBases','images3000');
dirOutput = dir(fullfile(fileFolder,'image*.jpg'));
fileNames = {dirOutput.name};
for k=1:length(fileNames)
H=fileNames{k};
S=imread(H);
I-resize(S, [300 300]);
imshow(I);
end
......
......
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您的意思是:
您可以使用
imwrite
< 保存图像/a>:此外,您可以使用
mkdir
创建新的输出文件夹(上例中的New_folder
)。I think you meant:
You can save images with
imwrite
:Additionally, you can use
mkdir
to create the new output folder (New_folder
in the example above).