i am new to matlab . i found this code online for face recognition however i am not able to understand the syntax . can someone help please
Mostra commenti meno recenti
%%Load Image Information from ATT Face Database Directory
faceDatabase = imageSet('FaceDatabaseATT','recursive');
%%display query image and database side by side
[filename, pathname]=uigetfile({'*.pgm'},'File Selector');
image=strcat(pathname,filename);
figure;
for i=1:size(faceDatabase,2)
imageList(i) = faceDatabase(i).ImageLocation(5);
end
subplot(1,2,1);
imshow(image);
subplot(1,2,2);
montage(imageList);
diff = zeros(1,9);
Risposte (1)
Image Analyst
il 5 Apr 2015
0 voti
Try this link:
or ask a more specific question.
Categorie
Scopri di più su Keypoint Detection in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!