All Projects → ReiiYuki → Intel-Realsense-Hand-Toolkit-Unity

ReiiYuki / Intel-Realsense-Hand-Toolkit-Unity

Licence: MIT license
Intel Realsense Toolkit for Hand tracking and Gestural Recognition on Unity3D

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to Intel-Realsense-Hand-Toolkit-Unity

mapbox-gestures-android
The Mapbox Gestures for Android library makes it easy to detect and handle user gestures on an Android device.
Stars: ✭ 25 (-65.28%)
Mutual labels:  gesture, gesture-detection, gesture-recognition
gesture-recognition-for-human-robot-interaction
Gesture Recognition For Human-Robot Interaction with modelling, training, analysing and recognising gestures based on computer vision and machine learning techniques. This work was done at Distributed Artificial Intelligence Lab (DAI Labor), Berlin.
Stars: ✭ 62 (-13.89%)
Mutual labels:  gesture-recognition, depth-camera, hand-gestures
GIMLeT
GIMLeT – Gestural Interaction Machine Learning Toolkit
Stars: ✭ 33 (-54.17%)
Mutual labels:  gesture, gesture-recognition
costmap depth camera
This is a costmap plugin for costmap_2d pkg. This plugin supports multiple depth cameras and run in real time.
Stars: ✭ 26 (-63.89%)
Mutual labels:  depth-camera, realsense
simple gesture detector
Easy to use, reliable and lightweight gesture detector for Flutter apps, exposing simple API for basic gestures
Stars: ✭ 26 (-63.89%)
Mutual labels:  gesture, gesture-detection
Handgator
✋ Navigating desktop with hand gesture
Stars: ✭ 13 (-81.94%)
Mutual labels:  hand-gestures, hand-tracking
StructureNet
Markerless volumetric alignment for depth sensors. Contains the code of the work "Deep Soft Procrustes for Markerless Volumetric Sensor Alignment" (IEEE VR 2020).
Stars: ✭ 38 (-47.22%)
Mutual labels:  depth-camera, realsense
yoha
A practical hand tracking engine.
Stars: ✭ 1,762 (+2347.22%)
Mutual labels:  hand-recognition, hand-tracking
OpenDepthSensor
Open library to support Kinect V1 & V2 & Azure, RealSense and OpenNI-compatible sensors.
Stars: ✭ 61 (-15.28%)
Mutual labels:  depth-camera, realsense
spockpy
✊ ✋ ✌️ ☝️ 🖖 A Python hand gesture recognition library for Kinetic User Interface (KUI).
Stars: ✭ 50 (-30.56%)
Mutual labels:  gesture, hand-gestures
gest
Hand gestures as an input device
Stars: ✭ 37 (-48.61%)
Mutual labels:  gesture-recognition, hand-gestures
realsense-processing
Intel RealSense 2 support for the Processing framework.
Stars: ✭ 70 (-2.78%)
Mutual labels:  intel, realsense
gesto
You can set up drag, pinch events in any browser.
Stars: ✭ 47 (-34.72%)
Mutual labels:  gesture, gesture-recognition
JetScan
JetScan : GPU accelerated portable RGB-D reconstruction system
Stars: ✭ 77 (+6.94%)
Mutual labels:  intel, realsense
btt
Low level MacOS management in JavaScript via BetterTouchTool
Stars: ✭ 92 (+27.78%)
Mutual labels:  gesture, gesture-recognition
xconfigure
High-Performance configuration patterns and recipes.
Stars: ✭ 42 (-41.67%)
Mutual labels:  intel
Gesture-Recognition
Recognize gestures using a simple webcam.
Stars: ✭ 27 (-62.5%)
Mutual labels:  gesture-recognition
Skimcaffe
Caffe for Sparse Convolutional Neural Network
Stars: ✭ 230 (+219.44%)
Mutual labels:  intel
scikit-learn-intelex
Intel(R) Extension for Scikit-learn is a seamless way to speed up your Scikit-learn application
Stars: ✭ 887 (+1131.94%)
Mutual labels:  intel
Asm Cli
Interactive shell of assembly language(X86/X64) based on unicorn and keystone
Stars: ✭ 211 (+193.06%)
Mutual labels:  intel

Intel Realsense Hand Toolkit for Unity

realsense.jpg

Intel Realsense Hand Toolkit for Unity is toolkit for developing on hand tracking feature in Unity application with Intel Realsense camera easier.

Latest Unity3D Package

Download Unity Package

Intel Realsense SDK

Download Intel Realsense SDK

Requirement

Unity3D
Intel Realsense SDK
Intel Realsense Full Hand Tracking and Gesture Recognition SDK
F200/SR300 Camera Driver

Noted: R200 is not supported, because Intel Realsense Full Hand Tracking and Gesture Recognition SDK is not available in R2.

Initialization

Setup

  1. Connect depth camera by USB 3.0+

  2. Drag DepthCameraManager Prefabs in Assets/IRToolkit/Prefabs to Scene

  3. Write Script !

Configuration

Hand Position Manager

Sign is number that will be multiply with x-axis of hand's position. User can adjust it to 1 or -1.

  • 1 is worked for Head Mounted Display Device
  • -1 is worked for Normal Display Device

Gestural Manager

Is Enable All Gesture is boolean for enable all of gesture in system.

If Is Enable All Gesture is false, system will enable all of gesture those mention in Gesture Actions.

See gesture information

Usage

Hand Positioning

Initialize

void Start()
{
  GameObject.Find("DepthCameraManager").GetComponent<HandPositionManager>().AddSubscriber(gameObject);
}

Receive Hand Position

void OnLeftHandChange(Vector3 handPosition)
{
  // Do your work when left hand position is updated
}

void OnRightHandChange(Vector3 handPosition)
{
  // Do your work when right hand position is updated
}

Notify Hand State Change

void OnLeftHandAppear()
{
  // Do your work when left hand is appeared
}

void OnLeftHandDisappear()
{
  // Do your work when left hand is disappeared
}

void OnRightHandAppear()
{
  // Do your work when right hand is appeared
}

void OnRightHandDisappear()
{
  // Do your work when right hand is disappeared
}

Hand Gesture

Initialize

void Start()
{
  GameObject.Find("DepthCameraManager").GetComponent<GesturalManager>().AddSubscriber(gameObject);
}

Method Pattern

  • void On+GestureName()
  • void On+HandSide+Hand+GestureName()

Receive Gesture

void OnGesture(GestureData data){
  // Do your work
  // data.name is gesture name
}

void OnThumbUp(){
  // Do your work here when current gesture is thumb up
}

void OnLeftHandThumbUp(){
  // Do your work here when left hand gesture is thumb up
}

void OnRightVSign(){
  //Do your work here when right hand gesture is v sign
}

MIT License

MIT License

Copyright (c) 2017 Voraton Lertrattanapaisal

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Reference

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].