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

当前位置:论文格式网 -> 毕业论文 -> 计算机论文
毕业论文标题:

图片浏览系统的设计与实现论文

 本文ID:LWGSW13788 价格:收费积分/100
扫一扫 扫一扫
本站会员可自行下载:下载地址 图片浏览系统的设计+源代码 (收费:3000 积分)  

包括论文,设计,论文字数:31323,页数:58

摘 要
八十年代中期,随着硬件设备的发展,使得图像技术和多媒体技术得到了长足的发展,计算机处理的内容由当初的单一文字扩大到了动画、文字、声音、视频、图像等多种媒体形式。目前,伴随着网络技术和Internet的发展,图像技术的功能得到了更好的发挥。本文详细描述了图像和图形技术的产生,发展以及在现实生活中的实际应用;分析了表示媒体、显示媒体、存储媒体和传输媒体间互相如何协同工作的运做过程;阐述了有关图像技术的关键点,开发技术和应用前景。本文以自主开发的图像系统为基点,论述了软件开发的过程,模式和技术点。对于图像技术的编码格式,格式转换,数据压缩和流媒体技术结合等应用进行的详细论述。软件系统采用了大量的设计模式和软件工程方法,解决了内聚与耦合的问题,实现了软件的易扩展与易维护,文中也对设计模式做了详细的叙述,并且对现今流行的图片格式和这些格式的开发进行了介绍。同时,本文围绕着图像浏览系统的剖析进行展开,列出了一些如BMP转AVI等关键技术的代码,以及一些框架的设计,以十六个本系统主要功能为框架,对每个功能以及相关技术的历史,发展和开发做了论述。对一些相关的技术和技术点也做了解释和说明。解决的图像浏览技术方面一些问题。
关键词:图像编码 图像浏览 图像压缩 设计模式 框架设计
Abstract
In the middle of the 1980’s, with the development of the hardware and computer device, graphic technology and multimedia technology are developing more and more quickly. The contents which computers are able to process extend from the single style of characters to the motivation, sound, video and graphics. Nowadays, with the aid of the Internet, graphic technology and image manipulation are easily bringing into play in our daily life. This paper detailedly describes the generation and the development of the image technology and graphics technology; analyses the relations of the perception medium, representation medium, presentation medium, storage medium and the transmission medium; discourses upon the key point, developing technology and the application prospect. This paper is based on the graphic system, which is developed by the author. It not only dissertates the common procedure, patterns and technical points in developing of the software. But also it discussed the coding, format exchange and data compressing in the graphics. This graphic system exercises lots of design patterns and software engineering methods and solves the problems of cohesion and coupling. It achieves the extendibility and usability of software. All above especially the design pattern are depicted in the paper. Meanwhile the paper introduces the popular formats of pictures and with the analysis of this graphic browsing system; we discuss the framework of this system and some key codes such as BMP converting to AVI. There are 16 main parts in the paper. In each part, we discourse and explain on the history, development and exploitation of the related technology.
Key words:image coding   image browsing   image compressing   design pattern
framework design
目 录
摘 要 I
Abstract II
目 录 III
引 言 1
第1章 图像技术概述 2
1.1 图像技术的发展 2
1.2 图像技术的基本概念 2
1.2.1 图片格式 2
1.2.2 图片分辨率 3
1.2.3 RGB与CMYK 4
1.2.4 色彩位数 5
1.2.5 Pixel与DPI 5
1.2.6 FM网屏技术 5
1.3 图像技术的应用 6
第2章 开发工具与系统界面设计 8
2.1 开发工具的选择 8
第3章 图像的编码与解码 9
3.1 经典图像编码技术 9
3.2 第二代编码技术 10
3.3 编码技术的标准化 11
3.4 编码技术的发展方向 13
3.5 解码技术及本系统实例 13
3.5.1 关于MPEG的解码的介绍 13
第4章 屏幕截取及部分屏幕截取 20
4.1 整个屏幕截取及实现 20
4.2 部分屏幕截取及实现 21
第5章 图像压缩 25
5.1 有损压缩与无损压缩 25
5.2 压缩编码压缩概述 26
5.3 压缩编码的方法 26
5.6 LZW算法 30
5.7 JPEG编码标准 31
5.8 本系统中利用JPEG编码实现压缩 35
第6章 图像的局部放大技术及实现 37
6.1 实用价值 37
6.2 算法原理 37
6.3 实现步骤 37
6.4 技术剖析 41
第7章 本系统中的设计模式 43
7.1 什么是模式 43
7.2 模式的作用 45
7.3 模式的解决的问题 47
7.4 本系统中使用的模式 48
结 论 51
参考文献 52
谢 辞 53


相关论文
本论文在计算机论文栏目,由论文格式网整理,转载请注明来源www.lwgsw.com,更多论文,请点论文格式范文查看
上一篇:设备保养管理系统 下一篇:图书馆光盘管理系统
Tags:图片 浏览 系统 设计 实现 论文 【收藏】 【返回顶部】
最新文章
热门文章
计算机论文
推荐文章

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

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

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