Like I said last time, I implemented my own gesture recognition.
It’s still a work in progress but it’s coming along nice.
I also upgraded the layout of the application so it looks more like a wpf application.
You can see the result below.
I have done some more tests since last time. First I’ve implemented 2 video methods of viewing a video that prof Luyten advised.
Next i tried to implement gesture recognition to trigger these views. I used the $1 Gesture recognizer to recognize the gestures. This recognizer is actually built for single touch en recognition after the gesture is finished. So I tried to use this for multi-touch gestures, and used a threshold to solve the real-time issue. When I’m sending my own generated data, this works pretty nice, but when I tried it on the multi-touch table, it only recognized 1/3 of the gestures. Obviously this method is not very useful.
My next attempt to solve this problem is to implement the gesture recognition myself, using the amount of input points and the direction each point moves to. Next time I will be able to tell if this works better to recognize the gestures.
Finally, I have been able to extract frames from a movie using only the WPF framework, so for now i don’t need an external library or application ( like ffmpeg ) to do this.

