The average image of faces.
• The goal is to compute the average image of faces.
• Download Labeled Faces of personalities having names starting with “A” from teams (datase-lfw.zip).
• For each folder representing a person
o If a folder contains more or equal to 2 pictures
§ Read each image with scipy.misc.imread and accumulate values into RGB tensor
§ Compute an averaged RGB tensor by dividing with the number of images in a
folder
§ Write the averaged result in an image with scipy.misc.imsave (do not forget to
convert result to a type that saves images in correct form). The images need to
be saved in “./result” folder