main.m
close all;
clear all;
I=imread('k052.jpg');
segment=skin(I);
imshow(segment)
[face_a,skin_region]=face(I);
figure, imshow(face_a)
figure, imshow(skin_region)
template=imread('b.jpg');
nframe=eyematch(frame,thresh,b);
for i=1:N
????????????
end
Problem is that, I have 126 pictures...
I need to write a FOR LOOP for match the pictures..
The original source code is here with functions...and picture names k001.JPG, k002.JPG, k003.JPG, k004.JPG, k005.JPG, k006.JPG, k007.JPG, k008.JPG, k009.JPG, k010.JPG, k011.JPG, k012.JPG ....
http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=13716&objectType=FILE (source code, pictures all informationss)