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

摘  要

三维模型的网格简化算法提出了挑战,很多不同的技术都试图在大数据的外存访问效率和网格的简化质量中间取得平衡,有的方法只顾及了一方面,有的能做到两者兼顾。本论文的方法能兼顾大数据访问效率和简化质量,相比同类型的方法,它只需要对网格做一次处理,且能处理输出网格无法载入内存的情况。本论文的方法对网格中顶点而非三角形进行分片,同时所使用的边收缩操作对分片中顶点的拓扑结构改变可以保持在分片之内,边界简化因此变得可能。在一次简化处理之内,简化的网格在分片边界处不会出现密度不一致的情况,因此不需再做处理。经测试表明,本论文的算法能够在较短的时间内提供和内存简化算法相比拟的简化质量。

本论文在原先串行单形分割算法的基础上,对分割方法做了简化以减少体数据函数近似产生的误差,并对它做了并行的改进。本论文算法的主要贡献是提供了一套完整的基于GPU并行的八叉树建立与最小边查找方法。它自顶向下分层建立八叉树,并在查找最小边的时候,将当前一层边的分割结果与当前一层八叉树节点所展开的新边、当前一层面分割所引入的新边一起加入到下一层待分割的边中。在实际测试中,本论文的算法能够产生流形且无自交的自适应等值面,并在处理大规模数据时获得了相对于串行算法较高的加速比。

关键词:大规模网格;网格分片;流式处理;单形分割;并行八叉树


Abstract

The grid simplification algorithm of 3 D models poses challenges. Many different techniques try to balance the external access efficiency of big data with the simplified quality of the grid. Some methods take only on one thing, while others can do both. The method of this paper can take into account the efficiency of big data access and the simplified quality. Compared with the same type of method, it only needs to process the grid once, and can handle the situation where the output grid cannot be loaded in memory. The method of this paper sharhes the vertices in the grid, and the edge shrinkage operation can keep the topology change within the grid, so that the boundary simplification becomes possible. Within a simplified process, the simplified grid will not have the density inconsistency at the fragmentation boundary, so there is no further processing.

The is shows that the algorithm in this paper can provide simplified quality compared to the memory simplification algorithm in a short time. Based on the original serial monorphic segmentation algorithm, the segmentation method is simplified to reduce the error caused by the bulk data function and improved in parallel. The main contribution of the algorithm in this paper is to provide a complete set of GPU parallel-based octet tree building with minimal edge finding methods. It establishes the octa tree from top down, and when finding the smallest edge, adds the segmentation result of the current layer edge with the new edge and the new edge introduced by the current layer segmentation of the next layer. In practical testing, the algorithm in this paper is able to produce a manifold without selfing adaptive isosurface and achieves high speed-up ratios relative to the serial algorithm when processing large-scale data.

KEY WORDS:  Massive Mesh; Mesh Cutting; Streaming Processing; Simplicial Partition; Parallel Octree


目  录

第1章 绪论

1.1 研究背景

1.2 三维模型的网格简化算法

1.2.1 分片简化

1.2.2 使用外部数据结构++

1.2.3 网格批处理

1.2.4 流式简化

1.3 论文的主要内容及章节安排

第2章 基于点分片的三维模型的网格简化

2.1 边收缩操作对边界拓扑结构的自动保持

2.2 算法概述

2.3 LRU缓存系统

2.4 分片文件格式设计

2.5 单个分片的简化

2.6 分片合并

2.7 执行结果

第3章 三维模型的网格简化

3.1 算法概述

3.2 等值面生成过程中终结信息的判断

3.3 生成边界的延伸与模型的简化

3.4 顶点拓扑关系的重建与网格数据结构的设计

3.5 执行结果

第4章 基于八叉树单形分割的并行等值面生成

4.1 算法概述

4.2 自适应八叉树的四面体分割

4.3 对偶点的求取

4.4 八叉树的建立

4.5 最小边的查找

4.6 四面体与等值面生成

4.7 执行结果

结    论

参考文献

致  谢


















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

                 

打印本页 | 关闭窗口
本类最新文章
变压器声音信号抗环境噪声干扰技术 高压电网无功补偿装置电气设计 毕 基于微信小程序+JavaSSM+
基于Android+Java后端 基于微信小程序+JavaSSM+ 基于微信小程序+JavaSSM+
| 关于我们 | 友情链接 | 毕业设计招聘 |

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