Slow method loadTarget

0 votes
asked Dec 13, 2017 by daniil (320 points)

Hi, how can I speed up the load of targets?
Loading 200 targets takes about 60 seconds, it's very slow, is there a way to load faster?
Please see my code:

        let targets = ImageTarget.setupAll(path, StorageType.Json.rawValue)

        for target in targets {

            tracker.loadTarget(target, { (target, status) in

                print("load target (\(status)): \(target.name()) (\(target.runtimeID()))")

            })

        }

 

I tried to use the method loadTargetBlocked, but it takes the same amount of time

1 Answer

Welcome to EasyAR SDK Q&A, where you can ask questions and receive answers from other members of the community.
...