List
Single ImageTrackable to add 30 2dmapfiles tracking data in array
Posted Date: 2019-11-19 11:19     Edited Date: 2019-11-20 8:03     Writer: duraidk9

Please provide your development details as below;

1. SDK Version:4.14
2. Development Environment: Unity-Android, Unity-iOS,
3. Tracker/Scanner: ImageTrackable
4. License Type(Free / Pro-One Time Fee / Pro-Subscription / Enterprise): free 
5. Target Device(Optional): 

 

 I have 30 2dmapfiles . so create 30 image tracable  in hierachy . so possible to add 30 2dmapfiles in array 

Posted Date: 2019-11-20 5:47     Edited Date: 2019-11-20 5:47     Writer: inactive

Now you can track 30 images.

 

Leo

Maxst Support Team

Posted Date: 2019-11-20 6:53     Edited Date: 2019-11-20 6:55     Writer: duraidk9

i want add 30 .2d map file in  array

Posted Date: 2019-11-20 8:03     Edited Date: 2019-11-20 8:03     Writer: inactive

trackable contains information about the objects that are currently tracked.

If you want to get the name of the 30 trackers you want, you can use the trackable.GetName () function.

See the for statement below as part of the example.

for (int i = 0; i <trackingResult.GetCount (); i ++)
{
Trackable trackable = trackingResult.GetTrackable (i);
imageTrackablesMap [trackable.GetName ()]. OnTrackSuccess (
trackable.GetId (), trackable.GetName (), trackable.GetPose ());
}

 

Leo

Maxst Support Team