Hi,
i really want to use your .dll. I would safe a lot of time. Is there any way to integrate it in an existing WPF Project, which main parts are:
i really want to use your .dll. I would safe a lot of time. Is there any way to integrate it in an existing WPF Project, which main parts are:
this.sensorChooser = new KinectSensorChooser();
this.sensor = this.sensorChooser.Kinect;
this.sensor.ColorFrameReady += this.SensorColorFrameReady;
this.sensor.DepthFrameReady += this.SensorDepthFrameReady;
this.sensor.SkeletonFrameReady += this.SensorSkeletonFrameReady;
The Problem is that there is a little conflict with your initialisation part: Device d = new Device();
d.NewPerson += NewPerson;
d.Start();
I want to tell the Eventhandlers that there is one Kinect for all of them ...