Borrar filtros
Borrar filtros

Resizing the image to 224*224 for resnet50

2 visualizaciones (últimos 30 días)
Darshana
Darshana el 15 de Jun. de 2023
Respondida: Darshana el 16 de Jun. de 2023
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

Respuestas (2)

Aakash
Aakash el 15 de Jun. de 2023
Ok so going by the tags associated with your question:
  1. Ensure images are present in the location folder.
  2. Modify the line str=['location',str] to str=['location/',str];
  2 comentarios
Darshana
Darshana el 15 de Jun. de 2023
It shows error like get full file name or the file is not open for reading
Aakash
Aakash el 15 de Jun. de 2023
Looks like location folder is not in current directory where matlab is considering, so give full path of your location folder and check.

Iniciar sesión para comentar.


Darshana
Darshana el 16 de Jun. de 2023
Yes I figured out the problem.Thank you

Categorías

Más información sobre Read, Write, and Modify Image en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by