Hello Leap Motion Developers,
I am accessing Leap Motion service in C# using VS2015. I use SDK 3.2. I am successfully getting x,y,z co-ordinates using Finger's stabilizedTipPosition.
Now, rather than capturing data continuously received from the controller, I just want finger's tip coordinates when the finger (finger[1] ) is stable (not moving above certain speed). I use tipVelocity to check the same. However, I am continuously receiving all values even if the finger is moving(I use if(tipVelocity == 0.0) ==> then display the values) .
Looking for all possible help, thanks in advance.