I want to implement finger tracking using Kinect SDK in C++. I have worked on a lot of hand gestures but I'm stuck at finger tracking. Can you tell me some good libraries or open source projects to get a head start? I am working on Windows 7 64 bit system. Any help will be appreciated.
Finger tracking using Kinect SDK in C++
1.4k Views Asked by umairaslam At
2
There are 2 best solutions below
0
Tonmoy
On
You can use OpenCV along with your Kinect SDK for finger tracking. Here is an inspiring video: http://www.youtube.com/watch?v=xML2S6bvMwI
You can also see this link: Finger detection in human hand
Related Questions in C++
- C++ using std::vector across boundaries
- Linked list without struct
- Connecting Signal QML to C++ (Qt5)
- how to get the reference of struct soap inherited in C++ Proxy/Service class
- Why we can't assign value to pointer
- Conversion of objects in c++
- shared_ptr: "is not a type" error
- C++ template using pointer and non pointer arguments in a QVector
- C++ SFML 2.2 vectors
- Lifetime of temporary objects
- I want to be able to use 4 different variables in a select statement in c ++
- segmentation fault: 11, extracting data in vector
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- How can I print all the values in this linked list inside a hash table?
- Configured TTL for A record(s) backing CNAME records
Related Questions in WINDOWS
- Get Maximum Log Size
- Debugging Windows Services while starting
- Possible consequences of duplicate ProgId for different classes
- How to chain BCryptEncrypt and BCryptDecrypt calls using AES in GCM mode?
- mingw-64 conflicting declarations when cross-compiling
- I run an EXE program from a Windows Service but I can't see form C#?
- Why is PowerShell "not recognized" when installing Chocolatey?
- How to check if Windows device is phone or tablet/pc?
- How to add directories to Cygwin gcc default search path
- Can't install anything with pip2 on Windows 7 due to UnicodeDecodeError
- Active directory and linux nslcd binding without extending the AD schema
- How To Prevent Over Scrolling in Scroll Viewer Windows Phone 8.1
- Unicode error from pip install
- Where is the 'EnablePinning' property in the ribbon framework's recent items?
- How can I implement the same models and data across ASP.NET and Windows Apps
Related Questions in KINECT
- Cannot get ZXing to work with Kinect ColorFrame
- How to lock on to a particular skeleton in Kinect SDK 2.0?
- Intel Edison with Kinect
- How to get Kinect working with Cinder on a Mac
- In Unity, how to animate upper body with kinect and lower body with mecanim animation
- reading and proceeding data constantly multithreading c# wpf
- Unable to run KinectAvatarsDemo for Kinect version 2 with KinectWapper
- Mouse left click and On-Screen-Keyboard
- Converting .OBJ Wavefront to depth data
- Kinectv2 normalizing depth values
- 3 channel depth image 1 channel
- USB3 Controller & Kinect 2
- Interactions with kinect version 2
- Finding Depth value for Color Pixels in Kinect
- Get depth distance from an object
Related Questions in KINECT-SDK
- Kinectv2 normalizing depth values
- Finding Depth value for Color Pixels in Kinect
- Advanced C++ interfaces -- Tracing Kinect SKD 2.0 code
- Kinect SDK 2.0 has significantly less functionality than 1.8?
- I am *not* missing an assembly or reference
- Kinect-based object Tracking
- How to use a Visual Gesture Builder database with Unity3D Plugin?
- Kinect 4 Windows v2 - Opening recordings
- using Kinect Depth View to show an Object inside the Human Body
- How to get face points in 2D space from Kinect 2 SDK?
- Increase Kinect's limit of people recognition
- Kinect Infrared Camera Not working
- Mapping Depth onto RGB Kinect using MATLAB
- Saving Kinect Frames as screenshots
- Troubles liking libraries on a Win32 dll for VS2013
Related Questions in KINECT-INTERACTION
- Finding the offset(difference between coordinates) for Kinect
- Generate 3D model of a building with kinect sensor?
- Kinect HandPointer loose grip out of the screen
- Finger tracking using Kinect SDK in C++
- Kinect SDK 1.7 - How to work with both hands
- Kinect SDK 1.7 - How to control WPF elements Inside/outside the Kinect Region
- Controlling web browser JS components with Microsoft Kinect
- Reading/Writing ElevationAngle in Kinect throws InvalidOperationException
- As with basic zoom controls kinect for windows v1.8
- Separate noise from skeleton with Kinect
- Kinect v2 Connectivity Issue
- Printing live calculated values onto main window
- Kinect installation error
- Microsoft Kinect and background/environmental noise
- Kinect for Windows v2 hand cursor outside WPF windows
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I don't know of any libraries in c++ that support it out of the box but if you are just looking for a head start or a starting point you might want to look at This or this. Its in c# but it should give you a good idea and it does involve finger detection including directional information.