对 iPhone 相机变化做出反应
我正在寻找一种实时分析相机视图的方法。 iPhone 应该能够识别亮度的突然变化并做出反应。我该怎么办?
I'm searching for a way to analyze the camera's view live. The iPhone should recognize and react to sudden changes in brightness. How should I go about it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 iOS4,您可以通过 AVCaptureVideoDataOutput 访问原始视频帧。
获得视频帧后,您可以分析其亮度并做出相应反应。
查找 AVCam 示例。
With iOS4 you can gain access to the raw video frames via AVCaptureVideoDataOutput.
Once you have the video frame, you can analyze its brightness and react accordingly.
Look for the AVCam sample.