指紋識(shí)別網(wǎng)絡(luò)通信設(shè)計(jì)(含外文翻譯).doc
約54頁DOC格式手機(jī)打開展開
指紋識(shí)別網(wǎng)絡(luò)通信設(shè)計(jì)(含外文翻譯),頁數(shù):54字?jǐn)?shù):17561摘要:指紋識(shí)別過程中的網(wǎng)絡(luò)通信是整個(gè)識(shí)別系統(tǒng)的靈魂,只有建立合理的通信機(jī)制,才能夠滿足系統(tǒng)大數(shù)據(jù)量交互的要求,構(gòu)建一個(gè)成熟的指紋識(shí)別系統(tǒng)。本文以參與開發(fā)的指紋識(shí)別系統(tǒng)為基礎(chǔ),基于c/s(client/server)構(gòu)架研究其采用udp通信時(shí)指紋采集部分的網(wǎng)絡(luò)通...
內(nèi)容介紹
此文檔由會(huì)員 Facebook 發(fā)布
指紋識(shí)別網(wǎng)絡(luò)通信設(shè)計(jì)(含外文翻譯)
頁數(shù):54 字?jǐn)?shù):17561
摘要:指紋識(shí)別過程中的網(wǎng)絡(luò)通信是整個(gè)識(shí)別系統(tǒng)的靈魂,只有建立合理的通信機(jī)制,才能夠滿足系統(tǒng)大數(shù)據(jù)量交互的要求,構(gòu)建一個(gè)成熟的指紋識(shí)別系統(tǒng)。本文以參與開發(fā)的指紋識(shí)別系統(tǒng)為基礎(chǔ),基于C/S(Client/Server)構(gòu)架研究其采用UDP通信時(shí)指紋采集部分的網(wǎng)絡(luò)通信設(shè)計(jì)和實(shí)現(xiàn),主要包括客戶端和服務(wù)器端各自數(shù)據(jù)收發(fā)的實(shí)現(xiàn)以及指紋采集、正否響應(yīng)等服務(wù)的實(shí)現(xiàn),并將這些服務(wù)與整個(gè)指紋識(shí)別系統(tǒng)集成,成功完成了該系統(tǒng)指紋采集模塊的開發(fā),達(dá)到了項(xiàng)目要求。
關(guān)鍵詞:指紋識(shí)別系統(tǒng), UDP通信, socket編程, 指紋采集
ABSTRACT
Abstract: In the process of fingerprint identification, network communication is the soul. Only a reasonable communication structure can satisfy large volumes of data interaction and build a mature fingerprint identification system. This paper involved in the development of fingerprint identification system, using C/S (Client/Server) structure to research the network communication of fingerprints collection which based on UDP protocol, mainly including the realization of data interaction between the client and the server, the realization of fingerprint collection service and response service. At the same time, these services integrated with the fingerprint identification system and successfully completed the fingerprint collection of the system module, reached the requirements of the project.
Key words: The fingerprint identification system, UDP Network communication, Socket programming, Fingerprint collection
目錄
第1章 引言 1
1.1 課題背景和意義 1
1.1.1 課題背景 1
1.1.2 課題研究意義 1
1.2 指紋識(shí)別國內(nèi)外發(fā)展?fàn)顩r 2
1.2.1 指紋識(shí)別概述 2
1.2.2 指紋識(shí)別發(fā)展?fàn)顩r 3
1.3 計(jì)算機(jī)網(wǎng)絡(luò)通信發(fā)展?fàn)顩r 4
1.3.1 計(jì)算機(jī)網(wǎng)絡(luò)通信概述 4
1.3.2 計(jì)算機(jī)網(wǎng)絡(luò)通信發(fā)展?fàn)顩r 5
1.4 論文章節(jié)安排 7
第2章 指紋識(shí)別系統(tǒng) 8
2.1 指紋識(shí)別系統(tǒng)概述 8
2.1.1 系統(tǒng)開發(fā)平臺(tái)和硬件介紹 8
2.1.2 系統(tǒng)結(jié)構(gòu)描述 8
2.1.3 系統(tǒng)工作流程描述 10
2.2 課題任務(wù) 12
第3章 指紋采集通信模塊實(shí)現(xiàn) 14
3.1 網(wǎng)絡(luò)通信原理 14
3.1.1 報(bào)路、地址和端口 14
3.1.2 Winsock2 簡介 14
3.2 客戶端通信模塊 15
3.2.1 客戶端通信框架 15
3.2.2 構(gòu)造函數(shù)和析構(gòu)函數(shù)的實(shí)現(xiàn) 18
3.2.3 套接字定義和網(wǎng)絡(luò)連接處理 18
3.2.4 指紋采集和正否響應(yīng)服務(wù) 20
3.3 服務(wù)器端通信模塊 23
3.3.1 服務(wù)器端通信框架 23
3.2.2 構(gòu)造函數(shù)和服務(wù)器通信建立 26
3.2.3 數(shù)據(jù)接受和發(fā)送功能實(shí)現(xiàn) 27
3.2.4 指紋數(shù)據(jù)處理實(shí)現(xiàn) 29
第4章 系統(tǒng)集成 32
4.1 系統(tǒng)集成概述 32
4.2 集成效果演示 32
4.2.1 客戶端界面 32
4.2.2 服務(wù)器端界面 33
4.2.3 通信過程演示 33
第5章 總結(jié) 37
參考文獻(xiàn) 38
致謝 39
附錄 40
附錄A:客戶端集成實(shí)現(xiàn) 40
附錄B: 服務(wù)器端集成實(shí)現(xiàn) 42
外文資料原文 45
外文資料譯文 47
頁數(shù):54 字?jǐn)?shù):17561
摘要:指紋識(shí)別過程中的網(wǎng)絡(luò)通信是整個(gè)識(shí)別系統(tǒng)的靈魂,只有建立合理的通信機(jī)制,才能夠滿足系統(tǒng)大數(shù)據(jù)量交互的要求,構(gòu)建一個(gè)成熟的指紋識(shí)別系統(tǒng)。本文以參與開發(fā)的指紋識(shí)別系統(tǒng)為基礎(chǔ),基于C/S(Client/Server)構(gòu)架研究其采用UDP通信時(shí)指紋采集部分的網(wǎng)絡(luò)通信設(shè)計(jì)和實(shí)現(xiàn),主要包括客戶端和服務(wù)器端各自數(shù)據(jù)收發(fā)的實(shí)現(xiàn)以及指紋采集、正否響應(yīng)等服務(wù)的實(shí)現(xiàn),并將這些服務(wù)與整個(gè)指紋識(shí)別系統(tǒng)集成,成功完成了該系統(tǒng)指紋采集模塊的開發(fā),達(dá)到了項(xiàng)目要求。
關(guān)鍵詞:指紋識(shí)別系統(tǒng), UDP通信, socket編程, 指紋采集
ABSTRACT
Abstract: In the process of fingerprint identification, network communication is the soul. Only a reasonable communication structure can satisfy large volumes of data interaction and build a mature fingerprint identification system. This paper involved in the development of fingerprint identification system, using C/S (Client/Server) structure to research the network communication of fingerprints collection which based on UDP protocol, mainly including the realization of data interaction between the client and the server, the realization of fingerprint collection service and response service. At the same time, these services integrated with the fingerprint identification system and successfully completed the fingerprint collection of the system module, reached the requirements of the project.
Key words: The fingerprint identification system, UDP Network communication, Socket programming, Fingerprint collection
目錄
第1章 引言 1
1.1 課題背景和意義 1
1.1.1 課題背景 1
1.1.2 課題研究意義 1
1.2 指紋識(shí)別國內(nèi)外發(fā)展?fàn)顩r 2
1.2.1 指紋識(shí)別概述 2
1.2.2 指紋識(shí)別發(fā)展?fàn)顩r 3
1.3 計(jì)算機(jī)網(wǎng)絡(luò)通信發(fā)展?fàn)顩r 4
1.3.1 計(jì)算機(jī)網(wǎng)絡(luò)通信概述 4
1.3.2 計(jì)算機(jī)網(wǎng)絡(luò)通信發(fā)展?fàn)顩r 5
1.4 論文章節(jié)安排 7
第2章 指紋識(shí)別系統(tǒng) 8
2.1 指紋識(shí)別系統(tǒng)概述 8
2.1.1 系統(tǒng)開發(fā)平臺(tái)和硬件介紹 8
2.1.2 系統(tǒng)結(jié)構(gòu)描述 8
2.1.3 系統(tǒng)工作流程描述 10
2.2 課題任務(wù) 12
第3章 指紋采集通信模塊實(shí)現(xiàn) 14
3.1 網(wǎng)絡(luò)通信原理 14
3.1.1 報(bào)路、地址和端口 14
3.1.2 Winsock2 簡介 14
3.2 客戶端通信模塊 15
3.2.1 客戶端通信框架 15
3.2.2 構(gòu)造函數(shù)和析構(gòu)函數(shù)的實(shí)現(xiàn) 18
3.2.3 套接字定義和網(wǎng)絡(luò)連接處理 18
3.2.4 指紋采集和正否響應(yīng)服務(wù) 20
3.3 服務(wù)器端通信模塊 23
3.3.1 服務(wù)器端通信框架 23
3.2.2 構(gòu)造函數(shù)和服務(wù)器通信建立 26
3.2.3 數(shù)據(jù)接受和發(fā)送功能實(shí)現(xiàn) 27
3.2.4 指紋數(shù)據(jù)處理實(shí)現(xiàn) 29
第4章 系統(tǒng)集成 32
4.1 系統(tǒng)集成概述 32
4.2 集成效果演示 32
4.2.1 客戶端界面 32
4.2.2 服務(wù)器端界面 33
4.2.3 通信過程演示 33
第5章 總結(jié) 37
參考文獻(xiàn) 38
致謝 39
附錄 40
附錄A:客戶端集成實(shí)現(xiàn) 40
附錄B: 服務(wù)器端集成實(shí)現(xiàn) 42
外文資料原文 45
外文資料譯文 47