Resizing the image to 224*224 for resnet50
Show older comments
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
Answers (2)
Aakash
on 15 Jun 2023
0 votes
Ok so going by the tags associated with your question:
- Ensure images are present in the location folder.
- Modify the line str=['location',str] to str=['location/',str];
Darshana
on 16 Jun 2023
0 votes
Categories
Find more on Read, Write, and Modify Image in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!