parse some folders in specific directory within particular names

조회 수: 3 (최근 30일)
ahmed obaid
ahmed obaid 2015년 7월 1일
hello , i'm writing this code
Image2 = imread('D:\temp\2','jpeg'); % Image 2 from template folder path='D:\test2\'; list=dir([path, '*.bmp']); srcFiles = dir('D:\test1\*.bmp'); % the folder in which my images found for i = 1 : length(srcFiles) filename = strcat('D:\test1\',srcFiles(i).name); Image1= imread(filename); % some process x=diff(Image1 - Image2) %save image to folder according to x value if (x >= 0.05) imwrite ( Image1(i), 'temp', '.jpg'); disp('Value 111111111111.') disp(x) elseif(x < 0.05) imwrite ( Image1(i), 'discard', '.jpg'); disp('Value 222222222222.') disp(x) end end
my problem is when i implement my code its only view the value of x and write only first image from folder test1 to folder temp or to folder discard , how i can write All images in folder test1 to folder temp or discard , then if i have folders from test 1 to test n how i can repeat this process for all folders with particular name test(i) to check every image in test folders and complete remaining procedure , thanks

답변 (0개)

카테고리

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

태그

아직 태그를 입력하지 않았습니다.

제품

Community Treasure Hunt

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

Start Hunting!

Translated by