I am working on a WPF application with the Kinect and I have subclassed the KinectTileButton to create my own version with a timed click.
However, I have been using the Hand Enter listener and found that it is being called multiple times when the hand is hovering (showing steady) in the bounds of the button.
I have modified the smoothing of the kinect to the following values:
args.NewSensor.SkeletonStream.Enable(new TransformSmoothParameters() {
Smoothing = 0.95f,
Correction = 0.0f,
Prediction = 0.0f,
JitterRadius = 0.01f,
MaxDeviationRadius = 0.08f
});
But I cannot imagine that would have an impact (unless the jitteriness is now now being shown on screen but the readings in the background mean that the hand is all over the place).
I welcome any thoughts. Thanks!