

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
During the studies,their is a program called Introduction to computer vision offered in our university, this course is very helpful. The main points disucss in these lecture slides are:Yale Face Database, Recognition Using Eigenfaces, Matrix of Eigenvectors, Frontal Orientation, Standardized Databases, Object Recognition, Dimensional Space, Matlab Legend Function, Recognition Using Fisherfaces
Typology: Exercises
1 / 3
This page cannot be seen from the preview
Don't miss anything!


CSE152 – Intro to Computer Vision – Assignment # Instructor: Prof. David Kriegman. http://cseweb.ucsd.edu/classes/sp12/cse152-a Due Date: Fri. June 8, 2012.
In this assignment, we will have a look at some simple techniques for object recognition, in particular, we will try to recognize faces. The face data that we will use is derived from the Yale Face Database. For more information, see http://cvc.yale.edu/projects/yalefacesB/yalefacesB.html. The database consists of 5760 images of 10 individuals, each under nine poses and 64 dierent lighting conditions. The availability of such standardized databases is important for scientic research as they provide a common testing ground to test the efficacy of different algorithms.
Figure 1: The Yale face database B.
In this assignment, we will only use 640 images corresponding to a frontal orientation of the face. These faces are included in the file yaleBfaces.zip. You will find the faces divided into five different subsets. Subset 0 consists of images where the light source direction is almost frontal, so that almost all of the face is brightly illuminated. From subset 1 to 4, the light source is progressively moved toward the horizon, so that the effects of shadows increase and not all pixels are illuminated. The faces in subset 0 will be used as training images, and subsets 1 to 4 will be used as test images.
load the training data, e.g. [trainset trainlabels]=loadSubset(0,’yaleBfaces’). ( 10 points)