论文格式
电气工程 会计论文 金融论文 国际贸易 财务管理 人力资源 轻化工程 德语论文 工程管理 文化产业管理 信息计算科学 电气自动化 历史论文
机械设计 电子通信 英语论文 物流论文 电子商务 法律论文 工商管理 旅游管理 市场营销 电视制片管理 材料科学工程 汉语言文学 免费获取
制药工程 生物工程 包装工程 模具设计 测控专业 工业工程 教育管理 行政管理 应用物理 电子信息工程 服装设计工程 教育技术学 论文降重
通信工程 电子机电 印刷工程 土木工程 交通工程 食品科学 艺术设计 新闻专业 信息管理 给水排水工程 化学工程工艺 推广赚积分 付款方式
  • 首页 |
  • 毕业论文 |
  • 论文格式 |
  • 个人简历 |
  • 工作总结 |
  • 入党申请书 |
  • 求职信 |
  • 入团申请书 |
  • 工作计划 |
  • 免费论文 |
  • 合作期刊 |
  • 论文同学网 |
搜索 高级搜索

当前位置:论文格式网 -> 毕业论文 -> 其他专业论文
毕业论文标题:

基于VRML数据的城市级场景渲染系统设计与实现

 本文ID:LWGSW17150 价格:收费积分/100
扫一扫 扫一扫
本站会员可自行下载:下载地址 基于VRML数据的城市级场景渲染系统设计与实现 (收费:5000 积分)  

论文字数:12183,页数:49

摘要

基于VRML数据的城市级场景渲染是虚拟现实、实时仿真以及交互三维设计等的重要应用,也是计算机图形学本身的一个实际应用。本文首先介绍VRML,然后指出实现城市级城市级场景快速绘制的关键,最后介绍在实时绘制的场景里交互操作的实现。
本文所做的研究工作集中在四个方面:
(1) 学习了解VRML,分析VRML的节点结构,提出了一个基于C++的快速解析VRML方法。并在原有VRML文本结构基础上实现部分数据二进制化,这种方法可以有利于文件的压缩和更快速的解析。
根据实际项目需要,在原有VRML基础上增加额外节点,实现在项目中的特殊需求。
(2) 利用OpenGL实现VRML的绘制。利用OpenGL的API函数对应上VRML各个节点的域进行一对一的绘制。
(3) 实现鼠标、键盘和其它外设(如方向盘,手柄等)在场景里漫游,为增加场景的仿真性,加入雨雪雾特效。
(4) 增加系统的可扩展性,对系统的解析器设计上进行扩展,设计实现解析的插件支持。VRML的解析为内置式解析器,增加其它三维数据格式的解析插件支持,已实现Open Flight的数据格式的插件解析支持。

 关键词: VRML,OpenGL,城市级场景,绘制,外设
ABSTRACT

The city-class scene render based on VRML data is the virtual reality rendering scenes, real-time interactive three-dimensional simulation and design of critical applications, computer graphics is a practical application of their own. This paper first introduces VRML, and then pointed out that the city-class to achieve rapid large-scale mapping of the key scenes, and finally introduced in the real-time rendering of scenes in the achievement of interoperability.
In this paper, the research work done by focusing on four areas:
(1) Learn about VRML, analysis of VRML node structure, design a rapid VRML parser based on C + +. VRML in the original text based on the structure of binary data, and this method can be beneficial to file compression and more rapid resolution.
According to the actual needs of the project, the original VRML additional nodes to achieve the project's specific needs.
(2) Use OpenGL to render VRML. Use the API function corresponding VRML node in the OpenGL to one-to-one render.
(3) The realization of the mouse, keyboard and other joystick (such as steering wheel, joystick, etc.) roaming in the scene, in order to increase the simulation scenario, and adding special effects fog, rain and snow.
(4) Increase system Increase system scalability, the system is designed to extend the parser, designed to support plug-ins to achieve resolution. Analytical VRML parser for built-in to increase the other three-dimensional data analysis plug-in format support, has achieved Open Flight data analysis to support the format plug-ins.

 Keywords: VRML, OpenGL, City-class scene, Render, Joystick
目录

摘要 I
ABSTRACT II
第1章 绪论 1
 1.1 背景 1
 1.2 VRML概述 2
 1.3 OpenGL概述 3
 1.4 研究内容 4
第2章 VRML解析技术 5
 2.1 VRML2.0文件的结构 5
 2.2 VRML2.0域说明 6
 2.2.1 SFBool 6
 2.2.2 SFColor和MFColor 6
 2.2.3 SFFloat和MFFloat 7
 2.2.4 SFInt32和MFInt32 8
 2.2.5 SFNode和MFNode 8
 2.2.6 SFRotation和MFRotation 8
 2.2.7 SFString和MFString 9
 2.2.8 SFTime和MFTime 9
 2.2.9 SFVec2f和MFVec2f 9
 2.2.10 SFVec3f和MFVec3f 10
 2.3 VRML类设计 11
 2.4 解析器详细设计 12
 2.4.1 ReadWord 14
 2.4.2 ReadTransform和ReadGroup 15
 2.4.3 ReadShape 19
 2.5 本章小结 22
第3章 场景绘制技术 23
 3.1 VRML的绘制 23
 3.1.1 Transform的绘制 23
 3.1.2 IndexedFaceSet的绘制 25
 3.2 场景绘制加速技术 26
 3.3 本章小结 27
第4章 场景交互技术 28
 4.1 漫游实现 28
 4.1.1 四元数 29
 4.1.2 动态坐标轴 30
 4.1.3 球面上的移动 31
 4.2 外设支持 32
 4.3 本章小结 35
第5章 系统实现和可扩展性 36
 5.1 插件设计 36
 5.2 软件界面 38
 5.3 系统整体流程 41
 5.4 本章小结 41
第6章 结论 42
 6.1 总结 42
 6.2 对未来的展望 42
致谢 44
参考文献 45


相关论文
本论文在其他专业论文栏目,由论文格式网整理,转载请注明来源www.lwgsw.com,更多论文,请点论文格式范文查看
上一篇:家居智能环境控制系统 下一篇:基于PB的酒店客房管理系统的设计..
Tags:基于 VRML 数据 市级 场景 渲染 系统 设计 实现 【收藏】 【返回顶部】
会计论文
电子机电论文
金融论文
电气自动化论文
模具设计
化学工程与工艺
机械设计
电子通信论文
英语论文
行政管理论文
物流论文
电子商务论文
法律论文
国际贸易论文
财务管理论文
人力资源论文
市场营销论文
土木工程论文
工商管理论文
工程管理论文
汉语言文学论文
教育管理论文
测控专业论文
交通工程论文
旅游管理论文
新闻专业论文
艺术设计
教育技术学论文
应用物理学论文
轻化工程论文
德语专业论文
给水排水工程
服装设计与工程
食品生物技术
材料科学与工程
电视制片管理
工业工程论文
文化产业管理
包装工程论文
印刷工程论文
信息管理论文
制药工程论文
生物工程论文
电子信息工程
信息计算科学
电气工程论文
通信工程论文
财务会计毕业论文
电子商务毕业论文
现代教育技术
信息管理专业
心理学专业
数学与应用数学
数学教育
护理学毕业论文
其他专业论文
历史学论文
学前教育毕业论文
小学教育毕业论文
教育管理毕业论文
法律专业毕业论文
汉语言文学毕业论文
工商管理毕业论文
人力资源毕业论文
营销专业毕业论文
物流专业毕业论文
计算机论文
最新文章
热门文章
计算机论文
推荐文章

本站部分文章来自网络,如发现侵犯了您的权益,请联系指出,本站及时确认删除 E-mail:349991040@qq.com

论文格式网(www.lwgsw.com--论文格式网拼音首字母组合)提供其他专业论文毕业论文格式,论文格式范文,毕业论文范文

Copyright@ 2010-2018 LWGSW.com 论文格式网 版权所有 蜀ICP备09018832号