- Ensure images are present in the location folder.
- Modify the line str=['location',str] to str=['location/',str];
Resizing the image to 224*224 for resnet50
6 ビュー (過去 30 日間)
古いコメントを表示
clc;
clear all;
close all;
path=dir('location');
n=length(path);
for i=3:n
str=path(i).name;
[p ,fname]=fileparts(str);
str=['location',str];
im=imread(str);
im=imresize(im,[224,224]);
im=im2gray(im);
% newmap = rgb2gray(map)
imwrite(im,strcat(fname,'.jpg'))
end
0 件のコメント
回答 (2 件)
Aakash
2023 年 6 月 15 日
Ok so going by the tags associated with your question:
2 件のコメント
Aakash
2023 年 6 月 15 日
Looks like location folder is not in current directory where matlab is considering, so give full path of your location folder and check.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!