Using the JS library I'm seeing unexpected values on the gamma axis for stabilizedPalmPosition.
Alpha and beta seem to track very closely to palmPosition, but gamma does not. Is this expected behavior?
Take a look at these charts. palmPosition is blue, stabilizedPalmPosition is green. You can barely see the latter peeking out on the alpha and beta charts be it is way off on gamma:
Bigger Here:
https://plus.google.com/+DonovanBuckDtex/posts/fzt3bMAoQC2
I made these by waving my hand around over the leap on each axis while tracking both positions.
Just in case, here's the code I used to capture the data:
<script src="http://js.leapmotion.com/0.3.0-beta2/leap.min.js"></script>
<script type="text/javascript">
var timer = Date.now(), values = [];
var controller = new Leap.Controller();
controller.on('frame', function(f){
if (f.hands.length > 0) {
var vals = {
t: Date.now(),
pP: f.hands[0].palmPosition,
sPP: f.hands[0].stabilizedPalmPosition
};
values.push(vals);
}
});
controller.connect();
</script>
Thanks