Concatenation is truly an opportunity. However, since you are working on face recognition with three faces, you should have some kind of strategy regarding how you do it. Face rotation and translation will be difficult to recognize with a โsimpleโ approach.
You must decide if you are trying to perform face detection in general or auxiliary objects. You can try to detect rotation by finding some basic functions (eyes, nose, etc.).
Also, remember that SVMs are essentially binary (i.e., shared between two classes). Depending on your specific application, you will most likely have to use a strategy of several classes ("One against all" or "One against many").
I would recommend doing some literature research to find out how others attacked the problem (a Google search would be a good start).
source share