调整图像大小并将其保留在 matlab 中的新文件夹中的新尺寸

发布于 2024-09-29 10:20:01 字数 422 浏览 5 评论 0原文

我在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

丢了幸福的猪 2024-10-06 10:20:01

我认为您的意思是:

I=imresize(S, [300 300]);

您可以使用 imwrite< 保存图像/a>:

imwrite(I,fullfile('D:','New_folder',H);

此外,您可以使用 mkdir 创建新的输出文件夹(上例中的New_folder)。

I think you meant:

I=imresize(S, [300 300]);

You can save images with imwrite:

imwrite(I,fullfile('D:','New_folder',H);

Additionally, you can use mkdir to create the new output folder (New_folder in the example above).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文