Open and procces multiple images

조회 수: 2 (최근 30일)
Pavel Todorov
Pavel Todorov 2021년 6월 14일
댓글: Pavel Todorov 2021년 6월 15일
Hey everyone, I have a 870 images from 29 different classes and each class has 30 images in sequential number from 1 to 30, following this pattern NameOfTheImage_1-30. What I want to do is to open and then convert all of the images, automatically one by one, into grayscale. Can you help me with that? The codes from here are somehow usefull but not for my case (I think).

채택된 답변

Krishna Sutar
Krishna Sutar 2021년 6월 15일
From my understanding you want to open multiple images from multiple classes. Here is the code which might help you:
for class = 1:29
for a = 1:30
filename = ['Parent folder/class' num2str(class,'%d') '/NameofTheImage_' num2str(a,'%d') '.PNG'];
img{class,a} = imread(filename);
% Processing
end
end

추가 답변 (1개)

KSSV
KSSV 2021년 6월 15일
Img = dir('*.png') ; % give your extension of images
N = length(Img) ;
for i = 1:N
thisImg = Img(i).name ;
I = imread(thisImg) ;
Ig = rgb2gray(I) ;
% do what you want
end

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

제품


릴리스

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by