在一个应用程序中使用两个库访问 iPhone 相机
我的 iOS 应用程序应该同时执行以下两个任务:
- 使用 ZBar SDK 扫描 QR 标签,
- 使用 QCAR SDK 扫描增强现实标记。
或者换句话说:我正在寻找被 AR 标记包围的 QR 标签。
这两个任务都应该“实时”运行。我的第一个天真的方法表明,将两个 SDK 组合在一个应用程序中将导致第一个初始化的 SDK 在初始化第二个 SDK 时停止工作。
有人有建议吗?谢谢。
My iOS app is supposed to perform the following two tasks at the same time:
- scan for QR tags using the ZBar SDK,
- scan for augmented reality markers using the QCAR SDK.
Or in other words: I'm looking for QR tags surrounded by AR marker.
Both tasks should run in "real time". My first naive approach showed that combining both SDKs in one app will cause the SDK which was initialized first to stop working when the second SDK is initialized.
Does anybody have suggestions? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我设法完成了这件事。如果有人想知道:
QCAR 仅适用于完全摄像头访问。因此,必须按照其文档中所示对其进行初始化和启动。幸运的是,它提供了对处理后的相机图像作为原始 RGB 数据的访问。我使用此代码将原始数据转换为 UIImage:
现在,您可以使用 ZBar 的 ZBarImageScanner 类,如下所示:
I managed to get that done. In case someone likes to know:
QCAR only works with full camera access. Therefore, it has to be initialized and started as shown in its documentation. Luckily, it provides access to the processed camera image as raw RGB data. I used this code to convert the raw data into an UIImage:
Now, you can use ZBar's ZBarImageScanner class like this:
您一次只能运行一个相机会话,因此您需要弄清楚如何让 ZBar 和 QCar 使用同一个相机会话。
You can only have one camera session running at a time so you'll need to figure out how to get ZBar and QCar to use the same one.