How to batch process images from folder
조회 수: 12 (최근 30일)
이전 댓글 표시
Greetings, i have 100 signature images on a folder which would be preprocessed with this code
if true
I=imread('1.png');
%figure,imshow(I);
img=imresize(I,[256 ,256]);
%figure,imshow(img);
Im=rgb2gray(img);
Im=im2double(Im);
Im=im2bw(Im);
Im = bwmorph(~Im, 'thin',inf);
Im=~Im;
%figure,imshow(Im);
xstart=256;
xend=1;
ystart=256;
yend=1;
for y=1:256
for x=1:256
if((Im(y,x)==0)) %(y,x)
if (y<ystart)
ystart=y;
end
if((y>yend))
yend=y;
end
if (x<xstart)
xstart=x;
end
if (x>xend)
xend=x;
end
end
end
end
for i=ystart:yend
for j=xstart:xend
im((i-ystart+1),(j-xstart+1))=Im(i,j);
end
end
%figure,imshow(im);
end
what i wanted to ask is how do i batch call all those images and preprocess them, i've readed this question http://www.mathworks.com/matlabcentral/answers/7342-reading-multiple-images-in-a-folder-imread but it seems it can only be used if the name is the same eg.(image001,image002...) which is not the case with my images. they're all of the same file extension but have 10 different names eg(dimas1,fakedimas1...)
Thank you and sorry for the bad english
댓글 수: 0
채택된 답변
Image Analyst
2016년 5월 23일
See this nice framework that handles a lot of the stuff for you: http://www.mathworks.com/matlabcentral/fileexchange/24224-magic-matlab-generic-imaging-component
Or if you want to do it yourself, not quite so fancy and nice, use the FAQ: http://matlab.wikia.com/wiki/FAQ#How_can_I_process_a_sequence_of_files.3F
The code snippet you want is the second one.
댓글 수: 7
Image Analyst
2016년 5월 24일
Yes of course you still need dir(). You got the error because you didn't follow the FAQ. You will get ALL files, even . and .. and folders, not just image files because you did not specify a file pattern. Either specify a file pattern like the FAQ showed you or you'll have to use isdir(fullFileName) to check whether or not the file is a folder instead of a file. Obviously using a file pattern is simplest.
추가 답변 (1개)
Sean de Wolski
2016년 5월 23일
편집: Sean de Wolski
2016년 5월 23일
You could use the image batch processing app in recent releases. Either from the apps tab or:
>>imageBatchProcessor
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!