Skip to content

NickHolder/OpenFlKinect

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OpenFlKinect

Openfl / Haxe native extension for Microsoft Kinect for Windows SDK

To build ndll library:

haxelib run hxcpp Build.xml

To compile samples:

[haxelib run] openfl build project.xml windows

Copy KinectInteraction180_32.dll from %KINECT_TOOLKIT_DIR%/bin into same directory as .exe

Usage

// Set options
d = new DeviceOptions();
d.depthEnabled = true;
d.depthResolution = ImageResolution.NUI_IMAGE_RESOLUTION_640x480;

// Create a Kinect references
k = new Kinect(d);
k.start();

// Add the image stream display list
addChild(k.bmDepth);

// call update each frame
addEventListener(Event.ENTER_FRAME, function(e)
{
  k.update();
});

Dependencies

Depth Stream

Colour Stream

IR Stream

User Tracking

Skeleton Stream

Interactions

About

Openfl Native Extension for Microsoft Kinect for Windows SDK

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Haxe 56.5%
  • C++ 42.4%
  • Other 1.1%