带有 AVFoundation 的 HDR
我想使用 AVFoundation 和/或 CoreImage 获得实时和后处理的 HDR 效果。我假设一旦捕获全帧静态图像,使用 CoreImage 就相对容易,但是有人知道如何使用 AVCaptureVideoPreviewLayer 实现类似 HDR 的效果吗?
I'm like to get both a real-time and post-processed HDR effect with AVFoundation and/or CoreImage. I'm assuming this is relatively easy with CoreImage once a full-frame still image is captured, but does anybody know how to achieve an HDR-like effect using AVCaptureVideoPreviewLayer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 AVCaptureVideoOutput 类和上面提到的委托方法 (captureOutput:didOutputSampleBuffer:fromConnection: ) 从相机获取每个实时帧。从该框架中,您可以创建 CIImage 并使用 CoreImage 框架进行更改;之后,只需使用drawRect:方法绘制输出
You can use
AVCaptureVideoOutput
class and above mentioned delegate method (captureOutput:didOutputSampleBuffer:fromConnection:
) to get each live frame from camera. From that frame, you can create CIImage and make changes using CoreImage framework; After that just draw output using drawRect: method