List
ImageTrackerSample start tracking with Extended tracking by default.
Posted Date: 2017-12-01 11:10     Edited Date: 2017-12-02 23:34     Writer: inactive

How can I modify the ImageTrackerSample to start tracking with TrackerManager.TrackingOption.EXTEND_MODE as the default mode?

In the sample there is already a SetExtendedMode method but when do I need to call this to make sure it start in extended mode without having to press a button?

Posted Date: 2017-12-02 6:10     Edited Date: 2017-12-02 23:34     Writer: inactive

Hi,

You can start with the extended mode by calling SetTrackingOption function right after StartTracker like below.

TrackerManager.GetInstance().StartTracker(TrackerManager.TRACKER_TYPE_IMAGE);

TrackerManager.GetInstance().SetTrackingOption(TrackerManager.TrackingOption.EXTEND_MODE);

Thanks a lot.

Maxst support team.