Hello , I need help doing a homework using MATLAB, it's about facial recognition with principal-component analysis. Not very advanced

Question 1 – Face recognition Perform a face identification task. For training, y ou are given 4 facial images of a person DG and 4 facial images of a person KS . For testing , you are given a facial image X that is known to be of either DG or KS . The task is to determine the likelihood ratio (| ) (| ) and on that basis to decide which of the 2 persons is depicted by X and to state the level of confidence you have in the decision. To begin, use the Matlab function call load([folder,' images .mat ']) to load the 9 images into Matlab , where folder is the folder on your PC where the file images . Mat resides , for example folder= ’C: \User s\Kate \Documents \Uni \Biometrics \’. The 9 images are stored in a Matlab cell array images , where bitmaps dg1 …dg4 are accessed as images {1}…images{ 4}, ks 1…ks 4 as images {5}…images{ 8}, and xx1 as images{ 9}. Each bitmap is a 70x50 matrix of uint8 values representing grey -scale pixels. The faces have already been extracted from larger images and normalised such that the person’s right pupil is in a standard position. (You may also inspect the bmp images to confirm your result, but visual inspection and subjective judgment alone do not attract any marks! ) In parts a) to c) of the question, you perform principal -component analysis on the training data. a) Load the 8 training files into Matlab and convert each 70x50 matrix to a 3500x1 vector of double values by stacking the 50 matrix columns. Convert all values to double. Each vector then has all the 3500 components of the corresponding matrix, but do uble instead of uint8. [Hint: Use the Matlab function s load ( ), reshape( ) and double( ) ] Print the first 5 components of each (transposed) vector in your homework. [1.5 marks ] b) Determine the 3500x1 mean vector and the 3500x3500 covariance matrix of the 8 training vectors, then compute the first 7 principal axes of the feature space. [Hint: Combine the 8 training vectors into a 3500x8 matrix, then use the Matlab functions mean( ) , cov( ) and eigs( ) ] Print the first 5 components of the (transposed) mean vector and the top -left 5x5 components of the covariance matrix in your homework. [1.5 marks ] c) Project the training vectors onto the principal axes, thereby reducing each vector from 3500 components to 7 components. [Hint: Multipl y the matrix of mean -normalised training vectors from the left with the transposed matrix of eigenvectors . Use the Matlab function repmat( ). ] Print ALL components of each (transposed) projected vector in your hom ework. [1 mark ] At this point, principal -component analysis is complete. Next, you have to calculate the models for Person DG and Person KS . d) From the 4 projected training vectors of DG, compute the 7x1 DG mean vector and the 7x7 DG covariance matrix. Then diagonalise the covariance matrix. Do the same for KS.

Together , the mean vector and diagonal covariance matrix of each person form that person’s face model. [Hint: Use the Matlab function diag( ). ] Print ALL components of the 2 (transposed ) mean vectors and ALL components of the diagonals of the 2 covariance matrices in your homework. [1 mark ] At this point, training is complete. Finally, you need to calculate the PDFs of the test face given , res pectively , the DG model and the KS model . e) Load the test file and convert it to a 3500x1 vector of type double as in Q1a). Print the first 5 components of the (transposed) vector in your homework. f) Project the test vector onto the principal axes as in Q1c). [0.5 marks ] Print ALL compone nts of the (transposed) projected vector in your homework. [0.5 marks ] g) For each of the 2 models, determine the probability density (PDF) that the test vector is produced by that model and calculate the likelihood ratio (| ) (| ). [Hint: Use the Matlab function mvnpdf( ).] Print the 2 result ing PDF s, the likelihood ratio and the log 10-likelihood ratio in your homework. [1 mark ] h) Finally and assuming equal priors and one -zero decision costs , state whether your statistical evidence supports the hypothes is ( |) that the test face belongs to Person DG or the hypothesis ( |) that the test face belongs to Person KS . How confident are you of the decision? Use the likelihood ratio you calculated to support your conclusion. Print your statement in plain English in your homework. [1 mark ]