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

摘  要
随着网络通信技术的快速发展,人们对通信的要求越来越高,可视电话应运而生。现有的基于PC的网络视频图像采集与显示系统存在成本高、体积大、资源得不到充分利用的缺点。而嵌入式系统所具有的功耗低、体积小、成本低等优点恰好可以弥补上述的不足,随着嵌入式技术的发展,该系统与嵌入式技术的结合成为其未来发展的趋势之一,具有广阔的应用前景和实用价值。
本文给出一种基ARM9平台和Linux操作系统的嵌入式可视电话终端解决方案。主要工作有对嵌入式Linux开发环境的搭建方法进行说明,在宿主机上建立嵌入式Linux开发的交叉编译环境。针对S3C2440处理器硬件特性,进行Linux系统移植。研究Linux系统的视频、音频相关的设备驱动,研究图片的压缩编码等。并编码实现图像的采集压缩传输和显示,实现音频的采集、传输和播放。针对嵌入式系统的硬件特点,对可视电话系统的结构进行优化设计。此外,通过采用Linux多线程技术,有效提高系统的数据吞吐量和运行效率。并对可视电话的基本功能和性能进行测试。
测试结果表明,本文设计的基于ARM的网络可视电话运行稳定。可以实现网络视频通信的基本要求。
关键词:ARM;Linux;可视电话;嵌入式系统;图像编码
ABSTRACT
  With the development of communication technique,people had more requests for telecom services.Thus,video phone emerged the times require.But the existing system of network video image capture and display based on PC has some disadvantages as follows,high cost,bulky and resource not fully utilized.Meanwhile,the embedded system with low power consumption,small size and low cost can make up for the lack of personal computer.The combination of this system with embedded technology has wide application prospect and practical value with the development of the embedded technology.It becomes one of ifs development trends.
  This paper mainly completed the following works: A solution to embedded video phone terminal based on ARM9 platform and Linux OS is proposed;.building a cross compiler for embedded Linux development environment builded in the host, we transplant system boot program U-Boot,finish transplanting Linux OS kernel on target board successfully, and making the root file system for S3C2440 processor hardware features; we study and research the Video and Audio related equipment driver on Linux OS,and research the image compression coding.And coding to realize the collection of the image compression, according to the transmission and realizes the audio collection, transmission and playing.The structure of video phone system is optimized to match the feature of embedded system hardware.System data throughput and efficiency is improved by multi-threaded;We tested function and performance of the system.
  The experimental results show in this paper: the design of the system acquires the
image quality well and can operate steadily,and it has a good real-time.
Key Words:ARM;Linux;videophone;Embedded System;Image Coding
目  录
第一章 绪论 1
1.1课题研究的背景及意义 1
1.2国内外研究现状 2
1.3项目开发平台简介 2
1.3.1嵌入式系统与ARM微处理器 2
1.3.2嵌入式Linux 3
1.3.3Qt图形库 3
1.4论文主要研究内容 4
第二章 系统总体设计 5
2.1系统设计的要求 5
2.2系统的硬件设计 5
2.2.1Mini2440开发板介绍 5
2.3 系统软件设计 7
第三章 嵌入式Linux系统移植以及开发环境的搭建 9
3.1Linux操作系统 9
3.1.1为何要使用Linux操作系统 9
3.1.2Linux操作系统内核 9
3.1.3Linux操作系统文件管理 10
3.2 系统开发环境的搭建 11
3.2.1交叉开发环境搭建 12
3.3Linux系统的移植 12
第四章 视频图像的采集、压缩和显示模块实现 14
4.1系统视频图像的采集和编码 14
4.1.1Video4Linux2介绍 14
4.1.2RGB颜色编码和摄像头介绍 15
4.1.3视频图像的编码 17
4.1.4图像采集的实现 17
4.2图像数据网络传输的实现 23
4.2.1TCP/UDP协议介绍 23
4.2.2socket套接字编程 24
4.3视频图像的显示 26
4.3.1Linux帧缓冲设备介绍 26
4.3.2图片数据的接收和显示 27
第五章 音频的采集、传输和回放 30
5.1音频模块的设计 30
5.2音频录制、传输和回放的实现 31
第六章 系统测试和分析 35
6.1系统模块单元测试 35
6.1.1系统界面模块测试 35
6.1.2系统图像模块测试 35
6.1.3系统音频模块测试 37
6.2系统整合测试 37
第七章 总结与展望 38
7.1全文总结 38
7.2展望 38
参考文献 39
致  谢 41










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

                 

打印本页 | 关闭窗口
本类最新文章
基于西门子S7-200智能照明控 太阳能光伏并网电站电气部分初步设 基于分布式光纤测振的侵入智能识别
基于人工智能与区块链的果蔬分拣与 基于人工智能的稻田监控系统 毕业 基于鸿蒙系统的智能家庭照明控制系
| 关于我们 | 友情链接 | 毕业设计招聘 |

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