LEAP-GestureLib

所属分类:模式识别(视觉/语音等)
开发工具:C#
文件大小:4062KB
下载次数:56
上传日期:2015-02-16 09:59:49
上 传 者harry19902002
说明:  使用Leap Motion 编写的手势识别程序,基于C#,程序直接可以运行。
(A C# Program to recognize gesture with LEAP Motion)

文件列表:
LEAP-GestureLib\GestureLib\Gesture.cs (573, 2013-01-29)
LEAP-GestureLib\GestureLib\GestureLib.csproj (2587, 2013-01-29)
LEAP-GestureLib\GestureLib\GestureListener.cs (2889, 2013-01-29)
LEAP-GestureLib\GestureLib\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache (6523, 2015-02-16)
LEAP-GestureLib\GestureLib\obj\Debug\GestureLib.csproj.FileListAbsolute.txt (132, 2013-01-29)
LEAP-GestureLib\GestureLib\obj\Debug\GestureLib.csprojResolveAssemblyReference.cache (4755, 2013-01-29)
LEAP-GestureLib\GestureLib\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs (0, 2013-01-29)
LEAP-GestureLib\GestureLib\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs (0, 2013-01-29)
LEAP-GestureLib\GestureLib\obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs (0, 2013-01-29)
LEAP-GestureLib\GestureLib\Properties\AssemblyInfo.cs (1396, 2013-01-29)
LEAP-GestureLib\GestureLib.sln (1375, 2013-01-29)
LEAP-GestureLib\GestureLib.suo (14848, 2013-01-29)
LEAP-GestureLib\GestureLib.v11.suo (47104, 2013-01-29)
LEAP-GestureLib\GestureLib.v12.suo (54784, 2015-02-16)
LEAP-GestureLib\LEAPTest2\App.config (161, 2013-01-29)
LEAP-GestureLib\LEAPTest2\bin\Debug\Leap.dll (1506816, 2013-01-29)
LEAP-GestureLib\LEAPTest2\bin\Debug\Leap.lib (67604, 2013-01-29)
LEAP-GestureLib\LEAPTest2\bin\Debug\LeapCSharp.NET4.0.dll (95232, 2013-01-29)
LEAP-GestureLib\LEAPTest2\bin\Debug\Leapd.dll (2481152, 2013-01-29)
LEAP-GestureLib\LEAPTest2\bin\Debug\Leapd.lib (67756, 2013-01-29)
LEAP-GestureLib\LEAPTest2\bin\Debug\LEAPTest2.exe (8704, 2015-02-04)
LEAP-GestureLib\LEAPTest2\bin\Debug\LEAPTest2.exe.config (161, 2013-01-29)
LEAP-GestureLib\LEAPTest2\bin\Debug\LEAPTest2.pdb (26112, 2015-02-04)
LEAP-GestureLib\LEAPTest2\bin\Debug\LEAPTest2.vshost.exe (24216, 2015-02-16)
LEAP-GestureLib\LEAPTest2\bin\Debug\LEAPTest2.vshost.exe.config (161, 2013-01-29)
LEAP-GestureLib\LEAPTest2\bin\Debug\LEAPTest2.vshost.exe.manifest (490, 2013-06-18)
LEAP-GestureLib\LEAPTest2\bin\Debug\msvcp100.dll (608080, 2013-01-29)
LEAP-GestureLib\LEAPTest2\bin\Debug\msvcp100d.dll (1014608, 2013-01-29)
LEAP-GestureLib\LEAPTest2\bin\Debug\msvcr100d.dll (1873232, 2013-01-29)
LEAP-GestureLib\LEAPTest2\bin\Debug\x64\Leap.dll (1506816, 2013-01-29)
LEAP-GestureLib\LEAPTest2\bin\Debug\x64\Leap.lib (67604, 2013-01-29)
LEAP-GestureLib\LEAPTest2\bin\Debug\x64\Leapd.dll (2481152, 2013-01-29)
LEAP-GestureLib\LEAPTest2\bin\Debug\x64\Leapd.lib (67756, 2013-01-29)
LEAP-GestureLib\LEAPTest2\bin\Debug\x64\msvcp100.dll (608080, 2013-01-29)
LEAP-GestureLib\LEAPTest2\bin\Debug\x64\msvcp100d.dll (1014608, 2013-01-29)
LEAP-GestureLib\LEAPTest2\bin\Debug\x64\msvcr100d.dll (1873232, 2013-01-29)
LEAP-GestureLib\LEAPTest2\bin\Debug\x64\_LeapCSharp.dll (173568, 2013-01-29)
LEAP-GestureLib\LEAPTest2\bin\Debug\x64\_LeapJava.dll (138240, 2013-01-29)
LEAP-GestureLib\LEAPTest2\bin\Debug\x64\_LeapPython.pyd (591360, 2013-01-29)
LEAP-GestureLib\LEAPTest2\bin\Debug\_LeapCSharp.dll (173568, 2013-01-29)
... ...

LEAP-GestureLib =============== A simple .net library to handle basic gesture recognition for the LEAP motion sensor This Library is nowhere near finished, and more of a concept than a full on gesture recognition library. my goal was to find a simple way to identify and describe common gestures (mostly swipes) Basic usage: ```C# static void Main(string[] args) { GestureListener listener = new GestureListener(1500); listener.onGesture += listener_onGesture; Controller controller = new Controller(listener); Console.ReadLine(); Console.WriteLine("finished?"); // just making sure Console.ReadLine(); controller.RemoveListener(listener); controller.Dispose(); } static void listener_onGesture(Gesture gesture) { string gestures = ""; foreach (Gesture.Direction direction in gesture.directions) { gestures += direction.ToString() + ", "; } Console.WriteLine("gestured " + gestures + " with " + gesture.fingers + " fingers."); } ``` short note about directions in a gesture object. at the moment a gesture has 6 directions (forward, backward, left, right, up, down). a gesture can have combinations of directions if for instance you where to swipe your hand forward and to the left, both forward and left would go into the directions object. Whats next? ----------- top priority is to have the events only trigger once per gesture. so that when you swipe your hand up, it triggers only one event, not 20. after thats sorted out, next part would be tracking multiple hands. not really sure what to do next, but i'm sure theres some cool stuff you could do with a system like this.

近期下载者

相关文件


收藏者