使用 SceneKit 同时检测和跟踪多个对象

Multiple object detection and tracking simultaneously using SceneKit

我正在关注此处的示例项目:https://github.com/yshrkt/VuforiaSampleSwift

通过在 VuforiaManager.mm 的 initTracker() 方法中添加以下行,我能够增加它同时跟踪的图像目标的数量:

Vuforia::setHint(Vuforia::HINT_MAX_SIMULTANEOUS_IMAGE_TARGETS, 4);

示例项目可以同时检测多个图像目标,但只能跟踪一个对象,并显示一个 3d SceneKit 对象作为跟踪对象。我们如何同时跟踪多个对象并同时显示多个 SceneKit 对象?

请尝试使用 Vuforia+SceneKit(同步对象检测)...

https://github.com/zihad2010/-Vuforia-SceneKit-simultaneous-object-detection-