What is the procedure of finding out the accuracy of the images in matlab?

2 views (last 30 days)
Actually i have find out eucledian distance of the query image and the images in the databases..Now my question is that how to find out the accuracy in the images using matlab..please help me.Thank you..
  3 Comments
Image Analyst
Image Analyst on 13 Apr 2013
Editing away your question is very very much despised and will lead to people not answering your questions in the future.
Randy Souza
Randy Souza on 26 Apr 2013
I have restored the original text of this question.
diva dave anthony: this question has a clear subject and an accepted answer, so it may be valuable to someone else in the future. If you have a good reason why it should be removed from MATLAB Answers, please flag the question, explain why it should be deleted, and an administrator or high-reputation contributor will consider deleting the question. Please do not simply edit your question away.

Sign in to comment.

Accepted Answer

Image Analyst
Image Analyst on 12 Apr 2013
Assuming you found the best five images correctly, change the last few lines to this (untested):
figure;
% Enlarge figure to full screen.
set(gcf, 'units','normalized','outerposition',[0 0 1 1]);
for k = 1:length(bestFiveImages)
subplot(2, 3, k);
fullFileName = fullfile(pwd, fileNames{bestFiveImages(k)});
if exist(fullFileName , 'file')
imshow(imread(fullFileName));
title(fullFileName, 'FontSize', 20);
else
warningMessage = sprintf('Warning: file not found:\n%s', fullFileName);
uiwait(warndlg(warningMessage));
end
end
  11 Comments

Sign in to comment.

More Answers (0)

Products

Community Treasure Hunt

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

Start Hunting!