Martin wrote:The raw unfiltered data does contain noise, this is effectively reduced with our processing filter but as you've notice it introduces a bit of lag. It becomes a trade-off between making the UI more noise tolerant (e.g. larger elements) or accepting the processing delay. You could of course implement your own smoothing filter to have complete control of the parameters but it is a lot of work (more than a simple moving-window average)
Running 60 FPS makes interaction a lot "snappier" but I guess you already have tested this?
Yeah, the framerate I am using is 60FPS, which is really faster. But the problem is what I mentioned above, using smoothed data, a little bit lag.
Where exactly are you calculating the smoothedCoordinates or it is directly given by the device. I am not quite satisfied with the smoothedCoordinates and was hoping to use some ML algorithms on the rawCoordinates to compute smoothedCoordinates. I'm aware that it might create some lag but I can figure out how much lag is acceptable.
And how exactly are you calculating the smootherCoordinates ? Is it average of previous coordinate and current coordinate ?