C# Class LightBuzz.Vitruvius.Gesture

Represents a Kinect Gesture.
Mostra file Open project: ase-lab/SoD_Sensor_v2 Class Usage Examples

Public Methods

Method Description
Gesture ( GestureType type, IGestureSegment segments ) : Microsoft.Kinect
Gesture ( string name, IGestureSegment segments ) : Microsoft.Kinect

Initializes a new instance of Gesture.

Reset ( ) : void

Resets the current gesture.

Update ( Body body ) : void

Updates the current gesture.

Method Details

Gesture() public method

public Gesture ( GestureType type, IGestureSegment segments ) : Microsoft.Kinect
type GestureType
segments IGestureSegment
return Microsoft.Kinect

Gesture() public method

Initializes a new instance of Gesture.
public Gesture ( string name, IGestureSegment segments ) : Microsoft.Kinect
name string The name of gesture.
segments IGestureSegment The segments of the gesture.
return Microsoft.Kinect

Reset() public method

Resets the current gesture.
public Reset ( ) : void
return void

Update() public method

Updates the current gesture.
public Update ( Body body ) : void
body Body The body data.
return void