专门针对 IPAD 的增强现实 API
我正在寻找可以在 IPAD 上使用的 AR API(可能免费)或 SDK。 到目前为止,我已经尝试过 Wikitude,但它暂时不适合 IPAD,而且大多数众所周知的 API 似乎只适用于 iPhone。 关于这个有什么线索吗?
如果这个 API 提供了将 AR 视图添加为子视图的可能性(例如作为选项卡栏的元素..:)),
非常感谢
i'm looking for an AR API (possibly free) or SDK that may be used on IPAD.
I've tried Wikitude so far, but it's not adapted for IPAD for the moment, and most of the well known API seems to be only made for iPhone..
Any clue on this one?
Any chance that this API offer the possibility to add the AR view as a subview (for example as an element of a tab bar..:))
Thanks a lot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你为什么要使用第三方库?您可以使用本地图书馆应用 AR。在您的
ViewController
上创建 2 个UIView
。后面那个实现了Camera View。前面的那个可以实现你想在相机实时预览上显示的任何内容。然后,如果您想捕获屏幕,只需截取屏幕截图即可保存。Why are you going for 3rd party library? You can apply AR using local library. On your
ViewController
make 2UIView
. The one in the back implement Camera View on it. And the one on the front implement whatever you want to show on the live preview of camera. Then if you want to capture the screen just simply take a screenshot and it'll be saved.