[android-developers] Re: Augmented Reality and Spherical 360º Views

2011-03-28 Thread miguel
Ok, thank you all. I'll try asap to fix the sensors issue. Also, lets try to put a thread invalidating the POIs view layer all the time. If that doesn works... I'll try to figure out by myself. Any other help? Has somebody achieved a smooth move using the orientation sensor? I would even pay for

[android-developers] Re: Augmented Reality and Spherical 360º Views

2011-03-27 Thread Andreas
Hi miguel, Keep the current transformation matrix in a history array (where all(40-50) the past transformations are kept) and on each change add all the past transformations with the current and divide by their number.. Regards, Andreas On Mar 26, 10:01 pm, miguel miguelp...@gmail.com wrote:

[android-developers] Re: Augmented Reality and Spherical 360º Views

2011-03-27 Thread miguel
First of all, thank you all, thank you very much. The kalman filter is something I have to test, I have read some about this and might try. @Andreas, you think that would give an smooth move to the layout objects? It does work for you? If that could be a solution lets try it. Isnt it a little bit

[android-developers] Re: Augmented Reality and Spherical 360º Views

2011-03-27 Thread miguel
If it can help, what I have already implemented is something like this: I have a main activity. This activity instanciates 2 services that feeds the main activity wih data. One is for the location and one is for the sensors. The main activity has a frame view holding the surface for the camera

[android-developers] Re: Augmented Reality and Spherical 360º Views

2011-03-27 Thread Adam Ratana
Hi Miguel, I am working on something similar, although with less of a focus on the camera, maybe we can combine forces a bit here. I found a very smooth filter in the open source code for Marine Compass -- check it out in the market, it's one of the smoothest filters out of the various filtering

[android-developers] Re: Augmented Reality and Spherical 360º Views

2011-03-26 Thread Hari Edo
On Mar 26, 10:01 pm, miguel miguelp...@gmail.com wrote: - Any tip for the sensor noise removal? Low pass filter, threeshold? both? any value for that filters? I tried EVERYTHING but the smooth problem may not be just here (so sad) - Any useful tip to make the overlay views move smooth?