Reputation: 63
I load a model in the AR environment and add an ARAnchor to stabilize the model. When I place the device on the desktop and picked up later. The model’s position is not changed, but it will fly away soon. The coordinate system of ARKit will fly and be unstable.
How to avoid or deal with this situation
Upvotes: 2
Views: 687
Reputation: 58563
ARKit
/RealityKit
world tracking system is based on a combination of five sensors:
Three latter ones are known as Inertial Measurement Unit
(IMU) that operates at 1000 fps. But what sees your RGB Camera (running at 60 fps) and LiDAR (also at 60 fps) is very important too.
Hence, a stability of world tracking greatly depends on camera image.
Here are some recommendations for high-quality tracking:
If you follow these recommendations, coordinate system in ARKit will be stable.
And look at the picture in this SO post – there are a good example of tracking and a bad one.
Upvotes: 4