Yes, you can start tracking with some parameters that will make the movement smoother.
The following is sample code:
var parameters = new TransformSmoothParameters
{
Smoothing = 0.2f,
Correction = 0.0f,
Prediction = 0.0f,
JitterRadius = 1.0f,
MaxDeviationRadius = 0.5f
};
this._sensor.SkeletonStream.Enable(parameters);
You can change the Smoothing, Correction, Prediction, JitterRadiusand MaxDeviationRadiusto any number you want.
Fixus source
share