dcraw 的 gamma_curve 中实现的算法的名称是什么?
DCraw 包含以下算法来处理图像颜色:https://gist.github.com/1047302。< br> 它是正式的(命名的)图像处理算法吗?
如果不是,我应该读什么来理解其背后的推理?
Dcraw contains a following algorithm to process image colors: https://gist.github.com/1047302.
Is it a formal (named) image processing algorithm?
If not, what should I read to understand reasoning behind it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它不是处理图像。它生成一个查找表 (
curve[]
),用于执行伽玛校正。It's not processing an image. It's generating a lookup table (
curve[]
) used to perform gamma correction.