It has 5 star rating and when I use Vuforia's app it recognizes it fine. What have I done wrong? Im using ARchitect Viewer app on android. Ive set the target to 100 width. Any clues?
W
Wolfgang Damm
said
over 10 years ago
I had a quick look at the code.
You are using your own tracker with 1 target that is named "a1", but you are creating the Trackable2DObject with a target name of "WikitudeLogo".
var trackable2DObject = new AR.Trackable2DObject(logoTracker, "WikitudeLogo", { drawables: { cam: overlay} )
Changing this to:
var trackable2DObject = new AR.Trackable2DObject(logoTracker, "a1", { drawables: { cam: overlay} )
or whatever the name of the target is, should solve your problem.
Maciej Binder