Darrell and Pentland wrote a paper called "Space-Time Gestures"
where they showed a computer vision based gesture recognition system
which recognized a few gestures in a continuous stream. Their
approach was to take a training set of frames of the various gestures,
run principle component analysis on them, and store some set of these
principle components. Then, for each trained gesture, each frame
making up that gesture was projected on to the principle components
and the projections saved as a template for recognizing the gesture
later. In testing, again each frame was projected on to the already
trained principle components. Dynamic time warping was used to
compare the progression of projections in the test gesture to those
learned in training.
However, many sign language gesture recognition systems have
concentrated on using hidden Markov models. Explain the advantages,
if any, of hidden Markov models over dynamic time warping. Feel free
to use diagrams or particular problem domains to help explain your
points.