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

当前位置:论文格式网 -> 毕业论文 -> 电子通信论文
毕业论文标题:

镜像驱动截屏技术在数字语音教室中的应用

 本文ID:LWGSW66034 字数:11313,页数:42 价格:收费积分/100
扫一扫 扫一扫
本站会员可自行下载: 

论文编号:TX256  论文字数:11313,页数:42 有开题报告,任务书

摘 要
 数字语音教学、远程教学等网络应用要求实时高效快捷地捕获PC系统上的屏幕信息。采用传统的API截屏方式,通过调用windows系统拷贝函数来截取屏幕信息的方法会耗费大量的CPU资源, 本文采用镜像驱动程序,在只耗费5%—10%的CPU资源情况下每秒截取10至20帧屏幕图像,达到实时捕获PC系统屏幕信息的目的。
 这些新型业务的另一特点是,服务端会有流媒体视频文件播放,接收端要能有连贯的视觉效果。在这种方式下,用传统API截屏方式就会有以下几个缺陷:1. 可能捕获不到流媒体视频画面,这是因为视频文件在播放过程中系统往往调用DirectDraw来加速视频的播放,由于DirectDraw的特殊性,直接采用API函数来截屏的话,会捕获不到视频画面信息。本文采用镜像驱动,在设备层中就能捕获到屏幕信息,Mirror Drive的好处就是可以直接利用硬件,达到用户模式下让人难以企及的“实时”,这是因为使用BitBlt拷贝屏幕内容,其数据需要从显存传输到系统内存,经过低速繁忙的系统总线,自然比从内存到内存的数据拷贝慢得多。2. 严重浪费网络资源,一张1024*768屏幕位图约为4M,每秒20帧就是80M,如此大的数据量在一些带宽较低的链路上,极可能引起严重的通信瓶颈。本文采用JPEG图像压缩算法在视觉上不损图像质量的情况下将捕获的位图高效的压缩,再将压缩后的图像传输给客户端,即使有成千上万的客户端,也不会造成网络崩溃。
 
关键字:镜像驱动;位图;API;DirectDraw;JPEG图像压缩算法
 
 
 
 
 The Application of Mirror-driven Screen Capture Technology in Digitized Voice Classrooms
 
                               Abstract
 Digitized Voice classrooms, distance learning and other network applications require real-time high speed to catch on the PC screen information. Traditional API methods, By calling the Windows system function to copy the interception of the screen information will consume lots of CPU resources, In this paper, mirror driver, only 5% -10% of the cost of CPU resources per second interception of 10-20 screen images, achieve real-time PC screen capture information purposes.
 Another feature of these new businesses is the server will be Video Streaming Media Player, receiver must have a coherent visual effect. In this way, using traditional API methods will have the following shortcomings: 1. Can not catch the streaming media video images. This is because video broadcast in the process of systems are often called DirectDraw to accelerate video broadcast Due to the special nature of DirectDraw, the API used directly to the province, Video capture will not screen information. In this paper, mirror-driven, the equipment will be able to capture layer of the screen information, Mirror Driver advantage is the direct use of hardware, user mode to make the enterprises and the "real-time", it is because the use BitBlt copy screen contents Its data transmission needs from memory to memory, after low-speed busiest bus, natural than from memory to memory to copy data much slower. 2. A serious waste of network resources, a 1024 * 768 pixel screen bitmap is about 4M, 20 per second is 80M. Such a large volume of data transport in some low bandwidth link, is very likely to lead to a serious bottleneck in communications. In this paper, using the JPEG image compression algorithm in the visual without compromising the quality of images will be captured under the bitmap efficient compression, and then compressed image transmission to the client, even if there are thousands of clients, will not cause the collapse of the network.
 
Keywords: Mirror drive; Bitmap; API; DirectDraw; JPEG image compression algorithm

目录
1 绪论 1
1.1 课题来源 1
1.2 课题目的和意义 1
1.3 课题解决的问题 2
1.4 本文的组织结构 2
2 相关技术知识介绍 3
2.1镜像驱动截屏技术 3
2.1.1 Mirror driver简介 3
2.1.2 Mirror driver驱动原理 5
2.2 位图文件格式 6
2.2.1 位图文件头 7
2.2.2 位图信息头 7
2.2.3 调色板 8
2.2.4 图像数据 9
2.3 图像压缩算法 9
2.3.1 图像压缩步骤 9
2.3.1 普通JPEG压缩算法 11
3 系统模块功能的实现 13
3.1安装Mirror driver 13
3.2 屏幕捕获 16
3.2.1 全屏捕获 16
3.2.2 位图的保存 17
3.2.3 区域截屏 19
3.2.4 截屏效果 20
3.3 位图压缩及显示 22
3.3.1 按指定质量将位图压缩为JPEG图像 22
3.3.2 压缩后图像的显示 27
3.3.3 位图压缩效果 28
3.4 图像的连续显示 29
3.4.1 使用定时器SetTimer 29
3.4.2 使用Sleep( time )函数 30
3.5 图像连续显示效果 32
结论 34
致谢 35
参考文献 36

 

 


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

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

论文格式网(www.lwgsw.com--论文格式网拼音首字母组合)提供电子通信论文毕业论文格式,论文格式范文,毕业论文范文

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