三维数字产品汉字水印技术的实现[独家原创].docx

   
约53页DOCX格式手机打开展开

三维数字产品汉字水印技术的实现[独家原创],三维数字产品汉字水印技术的实现2万字自己原创的毕业论文,已经通过校内系统检测,重复率低,仅在本站独家出售,大家放心下载使用摘要 信息的数字化使信息表达更加准确,网络的普及使信息传递更加便捷,计算机图形处理能力的增强可以让人们更加生动形象地表达世界,同时,信息化和网络化也使得信息安全、版权保护等问题更为严峻。源于信息隐藏...
编号:150-423107大小:812.75K
分类: 论文>通信/电子论文

内容介绍

此文档由会员 淘宝大梦 发布

三维数字产品汉字水印技术的实现

2万字
自己原创的毕业论文,已经通过校内系统检测,重复率低,仅在本站独家出售,大家放心下载使用

摘 要 信息的数字化使信息表达更加准确,网络的普及使信息传递更加便捷,计算机图形处理能力的增强可以让人们更加生动形象地表达世界,同时,信息化和网络化也使得信息安全、版权保护等问题更为严峻。源于信息隐藏的数字水印是目前国际上的热门研究方向之一,数字水印技术是通过一定的算法将一些标志性信息直接嵌入到多媒体内容当中,但不影响原内容的价值和使用,并且不能被人的知觉系统觉察或注意到,只有通过专用的检测器或阅读器才能提取。其中的水印信息可以是作者的序列号、公司标志、有特殊意义的文本等 ,可用来识别文件、图像或音乐制品的来源、版本、原作者、拥有者、发行人、合法使用人对数字产品的拥有权。
本文主要对常见的三维水印嵌入算法与认证算法加以总结,并给出自己的三维水印嵌入与认证算法的设计与实现;本算法嵌入的信息为中文汉字,而水印算法接受的水印信息为零一编码,所以将汉字转换为对应的编码作为嵌入的水印信息,嵌入到三维模型中,我们采用三维模型各个顶点到中心的距离作为嵌入基元,并且在嵌入水印后加入了模型中心恢复算法。整个系统的设计使用C语言作为理论实现的基础,并最终在VC的环境下,给出其MFC的框架设计,完成该系统。

关键词 数字水印 三维模型 水印嵌入 顶点范数 鲁棒性

Research and implementation of three-dimensional digital Chinese character watermarking technology products

Abstract Digital information make the information express more accurately, the popularity of the Internet enables the transmission of information more convenient,the increase of the ability of computer graphics processing make people express the world more vividly,at the same time, information and networking also makes information security, copyright protection and other issues more severe.digital watermarking from Information hiding is one of the most popular current international research,the digital watermarking technology is that makeing some iconic information directly embedded into multimedia content by a certain algorithm,but does not affect the value and use of the original content, and can not be being aware or noticed human perception system, only through a dedicated detector or reader it can be extracted. The watermark information can be the serial number of the author,company logo, text, etc.which have a special meaning,can be used to identify files, images or music source product, version, author, owner, issuer,ownership of people on the legitimate use of digital products.
This paper summarizes the common watermark assess algorithm at the first, and then gives my own algorithm design and implementation, This algorithm's embedded information are Chinese characters,but the watermarking algorithm accepts 01 sequence only,so we converted the characters into the corresponding coding as an embedded watermark sequence embedded into the three-dimensional model,we use the distance from the center to each vertex of the three-dimensional model as an embedded primitives, and adding the model center watermarked recovery algorithm after.Design of the entire system using C language as the basis for the theory to achieve, and ultimately in the VisualStudio environment, given its MFC framework designed to complete the system.

Keywords Digital watermarking Three-dimensional media Watermark authentication Vertex norm Robustness

目录
第一章 绪论 1
1.1 背景及研究意义 1
1.2 数字水印的基本概念 2
1.3 数字水印的主要应用领域 3
1.4 数字水印研究现状 5
1.5 本文的章节安排 6
第二章 三维模型数字水印技术概述 7
2.1 三维模型相对于二维模型存在的研究难点 7
2.2 三维模型数字水印基本原理 8
2.2.1 水印产生 8
2.2.2 水印嵌入 9
2.2.3 水印检测 9
2.3 三维模型数字水印的特点与分类 10
2.3.1 数字水印的特点 10
2.3.2 数字水印的分类 11
2.4 三维模型数字水印嵌入和认证的的主要算法 12
2.4.1 三维模型数字水印的嵌入算法 12
2.4.2 三维模型数字水印的认证算法 15
2.4.3 算法存在的主要问题 16
2.5 三维模型数字水印的攻击问题 16
2.6 三维模型数字水印的性能评价 18
2.7 三维模型数字水印的发展展望 19
第三章 三维数字产品的汉字水印算法综述 20
3.1数字水印算法的思想 20
3.2 数字水印嵌入方法 24
3.2.1 嵌入基元的选择 24
3.2.2 对数据的预处理 24
3.2.3 对顶点的分区操作 25
3.2.4 分区内顶点范数的归一化处理 25
3.2.5 数字水印的嵌入 26
3.2.6 模型中心的恢复 30
3.3 数字水印的提取算法 30
第四章 三维指纹数字水印系统的实现 32
4.1 汉字至二值水印信息的转变 32
4.2 水印转换程序运行界面 33
4.3 数字水印嵌入的实现 35
4.3.1 数字水印嵌入源程序 35
4.3.2 数字水印嵌入程序的实现 40
4.4 数字水印提取的实现 41
4.4.1 数字水印提取源程序 41
4.4.2 数字水印提取程序的实现 44
第五章 总结 45
致 谢 46
参考文献 47