필터 지우기
필터 지우기

Compare images in one folder with a single image?

조회 수: 2 (최근 30일)
Anounymous85
Anounymous85 2019년 1월 6일
댓글: Image Analyst 2022년 5월 15일
There is a folder with a set of sub folders. Each one of them contains several images.
Is there a way to compare first image in the first sub folder, with the first image of another folder. And so on...
Any idea? Thank you!

채택된 답변

Image Analyst
Image Analyst 2019년 1월 6일
Try this code, parts of which I pulled from the FAQ:
% Specify the folder where the reference image file lives.
refFolder = pwd; % or wherever, such as 'C:\Users\yourUserName\Documents\My Pictures';
% Check to make sure that folder actually exists. Warn user if it doesn't.
if ~isfolder(refFolder)
errorMessage = sprintf('Error: The following reference folder does not exist:\n%s', refFolder);
uiwait(warndlg(errorMessage));
return;
end
% Read in the reference image.
fullRefImageFileName = fullfile(refFolder, 'whatever.png');
if ~exist(fullRefImageFileName, 'file')
errorMessage = sprintf('Error: The following reference image does not exist:\n%s', fullRefImageFileName);
uiwait(warndlg(errorMessage));
return;
else
refImage = imread(fullRefImageFileName);
end
% Specify the folder where the test image files live.
testFolder = pwd; % or wherever, such as 'C:\Users\yourUserName\Documents\My Pictures';
% Check to make sure that folder actually exists. Warn user if it doesn't.
if ~isfolder(testFolder)
errorMessage = sprintf('Error: The following test image folder does not exist:\n%s', testFolder);
uiwait(warndlg(errorMessage));
return;
end
% Get a list of all files in the folder with the desired file name pattern.
filePattern = fullfile(testFolder, '*.PNG'); % Change to whatever pattern you need.
theFiles = dir(filePattern);
for k = 1 : length(theFiles)
baseFileName = theFiles(k).name;
fullFileName = fullfile(testFolder, baseFileName);
fprintf(1, 'Now reading %s\n', fullFileName);
% Read in test image.
testImage = imread(fullFileName);
imshow(testImage); % Display image.
drawnow; % Force display to update immediately.
% Now do whatever you want with this file name,
% such as comparing the image array with refImage in some function you write.
results = CompareImages(testImage, refImage);
end
Adapt as needed. Write back if there are any problems with it.
Remember, the CompareImages() function in there is something you have to write because we don't know how you want to compare the test images to the reference image.
  댓글 수: 9
Sneha P
Sneha P 2022년 5월 15일
results = CompareImages(testImage, refImage);
In place of this if i use
results = isequal(testImage, refImage); --> It's reading all images in folder instead comparing testimage folder and refimage
Image Analyst
Image Analyst 2022년 5월 15일
I'm not seeing a question there, so I'll just expand on that statement.
For one call it just uses isequal on a pair of images. Of course that function gets called in a loop so eventually it will compare all images.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by