毕业设计视频监控系统的客户端设计
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
视频监控系统的客户端设计
摘要
随着人们对安全的需求日益强烈,视频监控系统作为一种安全防范的有效手段,越来越受到各界的广泛关注。且随着信息、网络、通信及多媒体等技术渗透到人类生活的各个领域的同时,视频监控也开始走进人们的生活,对视频监控的研究由此成为热点。
基于嵌入式的网络数字视频监控技术与互联网有机结合,且融合了信息技术、计算机技术、网络技术以及流媒体技术,己成为监控领域的一个发展趋势。因此嵌入式网络数字视频监控软件的研究将有着广阔的应用前景和巨大的社会效益及经济效益。
文章的核心内容是客户端软件系统的设计与实现。本文基于面向对象的设计思想和模块化的软件设计思想对客户端软件系统进行了模块的划分和细化,依次介绍了各子系统的设计和主要功能函数的设计,其中包括以下重要内容:网络客户端登陆;网络客户端视频预览;网络客户端视频下载;网络客户端视频播放。
文章中的视频监控系统客户端的编程实现使用VC++语言开发,结合视频标准的相关知识,并且采用海康威视的采集卡和开发包。
本文涉及的工作是对监控中心的实现进行研究和实践,它提出的设计思想和实现方式有一定代表性,对相关领域的设计是具有一定借鉴意义的。
关键词:视频监控,客户端,视频预览,视频下载
Abstract
As people increasingly strong demand for security, Video Surveillance as a safe and effective means of prevention is becoming more and more public attention. With the information, network, communications and multimedia technologies permeate all areas of human life, video surveillance has also begun into people's lives。Video Surveillance is becoming a hot spot.
Based on embedded digital and network , video surveillance technology combine the Internet and the advanced information technology, computer technology, network technology and streaming media technology. Video surveillance has been becoming a trend in the monitoring field. Therefore, digital video surveillance software embedded network research will have broad application prospects and enormous social and economic benefits.
The core content of the article is the client software system design and implementation. Based on object-oriented design and modular software design software on the client system and refining division of the module, in turn, introduced the various subsystems of the design and main functions of the design function, including the following key elements: Network Client Login; Network Client main interface design; main interface of the system settings; video file playback; video file retrieval.
The video surveillance system client programming use VC++ means. Combined with knowledge of video standards, skilled use of DirectX, and using Hikvision capture card and Development Kit.
This work involved monitoring center is the realization of research and practice, it raises the design and implementation methods have some representation on the design of related fields is a certain reference significance.
Keywords: Video Surveillance, Client ,Video Preview,Video Download
目录
摘要.............................................................. I Abstract .......................................................... I I 1 绪论 . (1)
1.1课题背景及意义 (1)
1.2监控系统的发展历程 (1)
1.3视频监控系统的现状和发展方向 (3)
1.4论文内容 (4)
2视频监控系统介绍 (5)
2.1视频监控系统的开发环境 (5)
2.1.1视频监控系统播放器开发硬件环境 (5)
2.1.2视频监控系统播放器开发操作系统选择 (5)
2.1.3视频监控系统播放器开发工具选择 (6)
2.2视频监控系统简介 (6)
2.3视频监控系统客户端介绍 (7)
2.3.1用户登录功能 (8)
2.3.2视频预览(实时监控)功能 (8)
2.3.3视频下载功能 (8)
2.3.4视频播放功能 (9)
3视频监控系统客户端分析与设计 (10)
3.1系统总体功能需求 (10)
3.2系统客户端函数设计 (10)
3.2.1客户端函数说明 (10)
3.2.2客户端函数调用顺序说明 (13)
3.3客户端关键技术 (13)
3.3.1基类CVideoCaptureCard的设计 (14)
3.3.2关键类DownloadThread的设计 (14)
4视频监控系统客户端的开发实现 (16)
4.1客户端登录 (16)