iPhone 上的实时视频处理
我们需要使用 iPhone 摄像机“读取”LED 脉冲灯。 LED灯根据某些负载条件发光。
有没有相关的iPhone API可以帮助实现这个目标?
非常感谢。
We have a requirement to 'read' an LED Pulse lamp using the iPhone video camera. The LED lamp emits the light based on some load conditions.
Is there any related iPhone API to help achieve this goal?
Thanks much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用AVFoundation框架来阅读并处理来自摄像机的实时视频流。 WWDC 2010 Session 405 为您提供了 AVFoundation 的良好概述。
You can use the AVFoundation framework to read and process the live video stream from the camera. WWDC 2010 Session 405 gives you a good overview of AVFoundation.
有 iOS AV API 可从摄像机获取原始像素位图。检测这些原始位图中的任何特定图像或亮度必须在您自己的代码中完成。
There are iOS AV APIs to get raw pixel bitmaps from the video camera(s). Detecting any specific image or brightness within these raw bitmaps has to be done in your own code.