I’m switching back and forth between Image tracking, Air anchoring & Face tracking in my App (I’m appropriately changing the camera direction and ARSession tracking mode while I do that). The image tracking stops working. Is there a recommended way to do this?
May this be the case for you?
I’m actually setting the Tracking mode to rotation only in Selfie mode like you suggested. This is happening only on Android. I think this is a different issue.
Figured out how to fix the issue, restart the ARTrackedImageManager with a link to the reference library:
ARTrackedImageManager.enabled = false;
ARTrackedImageManager.referenceLibrary = yourReferenceLibrary;
ARTrackedImageManager.enabled = true;