필터 지우기
필터 지우기

Resizing the image to 224*224 for resnet50

조회 수: 3 (최근 30일)
Darshana
Darshana 2023년 6월 15일
답변: Darshana 2023년 6월 16일
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

답변 (2개)

Aakash
Aakash 2023년 6월 15일
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
Darshana
Darshana 2023년 6월 15일
It shows error like get full file name or the file is not open for reading
Aakash
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.

댓글을 달려면 로그인하십시오.


Darshana
Darshana 2023년 6월 16일
Yes I figured out the problem.Thank you

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by