设计 任务书 文档 开题 答辩 说明书 格式 模板 外文 翻译 范文 资料 作品 文献 课程 实习 指导 调研 下载 网络教育 计算机 网站 网页 小程序 商城 购物 订餐 电影 安卓 Android Html Html5 SSM SSH Python 爬虫 大数据 管理系统 图书 校园网 考试 选题 网络安全 推荐系统 机械 模具 夹具 自动化 数控 车床 汽车 故障 诊断 电机 建模 机械手 去壳机 千斤顶 变速器 减速器 图纸 电气 变电站 电子 Stm32 单片机 物联网 监控 密码锁 Plc 组态 控制 智能 Matlab 土木 建筑 结构 框架 教学楼 住宅楼 造价 施工 办公楼 给水 排水 桥梁 刚构桥 水利 重力坝 水库 采矿 环境 化工 固废 工厂 视觉传达 室内设计 产品设计 电子商务 物流 盈利 案例 分析 评估 报告 营销 报销 会计
 首 页 机械毕业设计 电子电气毕业设计 计算机毕业设计 土木工程毕业设计 视觉传达毕业设计 理工论文 文科论文 毕设资料 帮助中心 设计流程 
垫片
您现在所在的位置:首页 >>计算机毕业设计 >> 文章内容
                 
垫片
   我们提供全套毕业设计和毕业论文服务,联系微信号:biyezuopinvvp QQ:1015083682   
基于图像的光照 论文初稿word+pdf版本初稿
文章来源:www.biyezuopin.vip   发布者:毕业作品网站  

摘 要

绚烂多彩的自然界光照渲染是计算机图形学的永恒追求。传统的基于几何模型的渲染方法无法很好的处理复杂动态的场景,于是基于图像的渲染方法被提出,尤其是基于图像的光照技术,极大的增强了渲染场景的真实感。

传统的 IBL 技术使用预计算辐照度贴图的方法计算漫反射光照,高效快速。但由于镜面反射光照的复杂性,传统的 IBL 技术无法应用预计算等方式有效快速的处理,导致传统 IBL 技术渲染时间较多,一般多用于离线渲染。本文在传统的 IBL 工作基础之上, 改进了间接光照中镜面反射的计算,提高了渲染质量,极大的提升了渲染效率,达到了实时渲染的要求。

本文使用分割求和近似方法,拆解了镜面反射的积分计算,分别预计算处理镜面反射光照与 BRDF 部分,保证了镜面反射的实时计算。除此之外,由于镜面反射并非均匀分布,故均匀采样不适用于此,效率过低。基于镜面反射光照分布依赖于表面粗糙度, 多集中于高光波瓣这一观察,本文使用 GGX 重要性采样技术处理镜面反射光照的卷积运算,定位偏移,使得采样向量多集中在高光波瓣范围内,加快收敛速度。

实验证明本文算法在渲染质量和渲染效率上均远高于传统 IBL 技术,降低了镜面反射的计算开销,提升了渲染质量和渲染效率,能够快速进行实时渲染。

关键词:基于图像的光照;实时渲染;重要性采样;分割近似求和



Abstract

Abstract

Colorful natural lighting rendering is the eternal pursuit of computer graphics.The tradi- tional rendering method based on geometric model can not deal with the complex dynamic scene well, so the image based rendering, especially the image-based lighting technique, is proposed to greatly enhance the realism of the rendering scene.

The traditional IBL technology uses the method of pre-calculated irradiance map to cal- culate diffuse lighting, which is efficient and fast. However, due to the complexity of specular reflection lighting, traditional IBL technology cannot apply pre-calculation and other methods to effectively and quickly process, resulting in a long rendering time of traditional IBL tech- nology, which is generally used for offline rendering. Based on the traditional IBL work, this paper improves the calculation of specular reflection in indirect lighting, improves the render- ing quality, greatly improves the rendering efficiency, and meets the requirements of real-time rendering.

In this paper, the split-sum approximation method is used to disassemble the integral cal- culation of the specular reflection, and separately pre-calculate the lighting and the BRDF part to ensure the real-time calculation of the specular reflection. In addition, since the specular re- flection is not uniformly distributed, uniform sampling is not suitable for this, and the efficiency is too low. Based on the observation that the specular reflection light distribution depends on the surface roughness and mostly focuses on the specular lobe, our paper uses GGX importance sampling technology to process the convolution operation of the specular reflection light, and through the positioning offset, the sampling vector is mostly concentrated in the specular lobe, to speed up the convergence process.

Experiments have proved that the algorithm in this paper is much higher than the tradi- tional IBL technology in terms of rendering quality and rendering efficiency, which reduces the computational cost of specular reflection, improves rendering quality and rendering efficiency, and can quickly perform real-time rendering.

Keywords: 关键词的英文翻译要准确



目 录

摘 要 I

Abstract III

第 1 章 绪论 1

1.1 课题研究背景及意义 1

1.2 国内外研究现状 2

1.3 本文主要工作 3

1.4 本文组织结构 3

第 2 章 相关技术概述 5

2.1 渲染方程 5

2.2 基于物理的渲染 6

2.2.1 微平面表面模型 6

2.2.2 能量守恒 7

2.2.3 基于物理的 BRDF 7

第 3 章 本文算法 9

3.1 算法概述 9

3.1.1 问题分析 (大而全 version,后期根据创新点精细化) 9

3.1.2 本文算法基本思想 9

3.1.3 本文算法流程 10

3.2 算法核心细节 11

3.2.1 GGX 重要性采样 11

3.2.2 分割求和近似 12

第 4 章 实验结果与分析 15

4.1 实验概述 15

4.2 实验环境 15

4.3 实验结果与分析 15

4.3.1 实验一 15

4.3.2 实验二 15

第 5 章 总结与展望 17

参考文献 19














  全套毕业设计论文现成成品资料请咨询微信号:biyezuopinvvp QQ:1015083682     返回首页 如转载请注明来源于www.biyezuopin.vip  

                 

打印本页 | 关闭窗口
  下一篇文章:暂时没有
本类最新文章
基于图像的光照 论文初稿word 多类型脑电数据单试次分析的预处理 基于Vulkan的虚拟纹理实现
基于Monte Carlo方法的 基于深度卷积网络的图像去噪研究 SSL VPN加密算法研究 毕业
| 关于我们 | 友情链接 | 毕业设计招聘 |

Email:biyeshejiba@163.com 微信号:biyezuopinvvp QQ:1015083682  
本站毕业设计毕业论文资料均属原创者所有,仅供学习交流之用,请勿转载并做其他非法用途.如有侵犯您的版权有损您的利益,请联系我们会立即改正或删除有关内容!