带有 AVFoundation 的 HDR

发布于 2024-12-15 23:08:40 字数 141 浏览 3 评论 0原文

我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哥,最终变帅啦 2024-12-22 23:08:41

您可以使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文