Fingerprint Verification Terminal of Examination Information Based on Qt Mengtao Huang 1, Mengyao Han 2

Size: px
Start display at page:

Download "Fingerprint Verification Terminal of Examination Information Based on Qt Mengtao Huang 1, Mengyao Han 2"

Transcription

1 2016 International Conference on Information Engineering and Communications Technology (IECT 2016) ISBN: Fingerprint Verification Terminal of Examination Information Based on Qt Mengtao Huang 1, Mengyao Han 2 1 Xi`an University of Science and Technology, Xi an , China 2 Xi`an University of Science and Technology, Xi an , China @qq.com @qq.com Keywords Fingerprint verification; Database; Embedded; The examinee identity; ARM9 Abstract The embedded and fingerprint technology applied in the examination authentication system, through to the fingerprint feature comparing check the examinee identity authenticity. Using ARM9-based architecture Samsung S3C2440 processor as the development platform of the embedded fingerprint verification terminal design scheme, the terminal's fingerprint identification module obtain examinee's fingerprint information, and compare to the fingerprint database fingerprint information. judge the examinee identity authenticity, prevent the phenomenon of shooter and error test, in addition, the terminal statistics the numbers of absence for your reference. Introduction With the development of society and the progress of science and technology, our country pay more attention to the education, the national selection of talents mainly through the examination. It is important for the candidates and the state that the fair, impartial and reasonable of educational examinations. Existing examination and selection system is mainly to print quasi ticket and valid ID to recognize candidates,identification, these authentications, safety factor are not high, easy to counterfeit the shortcomings, so training, error test phenomenon has come[1]. It is the urgent task of the current examination system that how to verify the identity of the candidates in order to prevent a similar phenomenon. Fingerprint recognition technology in into the 21st century develop rapidly and to its undisputed means of authentication application in all aspect of life[2,3], this paper of the embedded fingerprint identification technology research, its application in the examinee identity authentication system. System design Examinee identity certification system gather examinee fingerprint information by finger printer, save in database which has been ported to the processor, after the acquisition to the examinee information transmission to the PC for filing. Before exam, download the different examination candidates information to the ARM development board, through the fingerprint collector directly verify the candidates information, and displayed on the S3C2440 screen. The system hardware device is composed of S3C2440 core processor and its external circuit, LCD touch screen, computer PC server, fingerprint acquisition terminal equipment. Hardware system block diagram is shown in figure 1:

2 Figure 1. Hardware system block diagram. Software includes Qt interface, SQLite database, finger printer three parts. First, port the Qt interface and SQLite database to the core processor, and then touch the S3C2440 screen interface to operate the corresponding instructions directly, and control to realize various functions of fingerprint verification terminal by serial port. After the system is started, first run the main program of Qt, enter the user login window. If verify user login success, the system jump to the selection window. User selects fingerprint entry or fingerprint verification. The user, in the fingerprint input window, achieve the fingerprint information of input, delete, and store the fingerprint image. Fingerprint verification can be carried out under the fingerprint verification window. Uses the FTP transport protocol to download the candidates fingerprint information to verification terminal. Candidates complete the data acquisition through the verification terminal fingerprint sensor. The collected fingerprint information and download the fingerprint information database for comparison to verify, fingerprint verification successfully represented authentication is successful, after gathering the identify information for stating and consulting. Qt embedded interface development and SQLite database A. Qt embedded interface development Qt support the local and cross platform software development, because of its various platforms API are same, so writing program on one program, and complete, link, run on the other platform is ok[4,5]. Designer Qt is a way to see that the income, in the Qt install directory of bin, after start Qt, contains a lot of Qt components of the visual interface, and can use C++ language to write. Open Designer-File/new- Qt to create a new component (such as Form) selects the Main Window dialog box, start the Qt graphics editor, edit the GUI interface[6]. According to the function of fingerprint verification system, the system can be divided into five interface: user login interface; mode select interface; examinee fingerprint input interface; examinee fingerprint verification interface; soft keyboard interface, save and get.ui file, switching function interface can be achieved by function accept() in the code editor[7]. B. SQLite database The SQLite database established by this system is SQLite3, which is an open source embedded relational database, has the advantages of use conveniently, compact structure, high efficiency and reliability. In most cases, you can start creating, connecting, and using the database as long as you make sure that the SQLite's binary files are exist[8]. At the windows system, the SQLite3 will be installed in F:\sql program, running SQLite3, the running instructions as follows: f: cd sql Sqlite3.exe finger.db Creat table quanbu(name,sex,number,id); insert into quanbu values(1,'student1','female',' ','1');

3 insert into quanbu values(2,'student2','female',' ','2'); insert into quanbu values(3,'student3','female',' ','3'); After the program finishes, create a fingerprint database finger.db. Add executable statements to the database, achieve adding three student name, student number, gender, number ID. After creating SQLite database, modifying the Qt designer s design interface, compiling the project file to achieve the connection. Fingerprint module connection The system uses the Fingerprint Reader UART which is a high precision optical fingerprint sensor module. The fingerprint input, fingerprint matching, fingerprint search and other functions follow the USART protocol, support the two embedded development[9]. Fingerprint module complete communication with the controller through the UART controller to achieve the fingerprint data to send and receive, fingerprint module status information. The system, under the Qt interface, reproduced the fingerprint module function realization, through the corresponding signal and slot mechanism to complete the corresponding functions, including, fingerprint entry, fingerprint data storage, fingerprint images display and delete, fingerprint verification, etc. A. Examinee information entry function In the header file, the different fingerprint operation instructions are defined. Due to system complete much more fingerprint function and need add fpreadercmd.p and fpreaderopt.p source code package to Qt creator head file directory, write fingerprint module of the basic operating instructions, and change the corresponding button name to the instructions defined name for subsequent use convenient[10]. The stufpinputdlg.ui interface is the examinee fingerprint entry interface. First to achieve the user entry function, named the Button key to which the user is entered. btn_user_input, jump slot signal, the command is written as follows: Void stufpinputdlg::on_btn_user_input_ clicked() const QString qid = ui->le_fp_id->text(); QByteArray ba_id = qid.tolatin1(); const char * fp_id_str = ba_id.data(); const QString qname = ui->le_name->text(); QByteArray ba_name = qname.tolatin1(); const char * name_str = ba_name.data(); *** *** /* Define sex and ID number jump */ fp_id_str, name_str, sex_str, stu_id_str); memset(m_name_buf,0,64); memset(m_sex_buf,0,64); memset(m_stu_id_buf,0,64); m_fp_id = atoi(fp_id_str); strcpy(m_name_buf,name_str); strcpy(m_sex_buf,sex_str); strcpy(m_stu_id_buf,stu_id_str); DbgPrintf("input1----user id :%d %s %s %s",m_fp_id, name_str,

4 sex_str, stu_id_str); clean_wind_ret_text(); g_fp_opt->userfpinput(m_fp_id,1); B. Fingerprint image display function This system receive the fingerprint image data (BMP data), to generate picture with BMP format through the serial port to, and stored in the /opt/qt-4.5-fs/bin/fp.directory. Using ordinary image space display this picture, The BMP format bitmap is consists of four parts: file information header, bitmap information header, color palette, bitmap data. The generation code of BMP format image is as follows: void fpreaderopt::writefpbmp() bfh.bftype = 0x4D42; bfh.bfsize = 54+(124*74); bfh.bfreverved1 = 0x0; bfh.bfreverved2 = 0x0; bfh.bfoffbits = 0x436; bmp info head bih.bisize = 0x28; bih.biwidth = 124; bih.biheight = 74; : Defined the BMP format file header, which defined contains the type of generated file, the size is 9230, image width, height, and the amount of the file offset, etc.. bih.biplanes = 0x01; bih.bibitcount = 8; // Bit number and pixel bih.bicompression = 0; bih.bisizeimage = 124*74;//19600; /image size, in bytes bih.bixpelspermeter = 0x60;//0x60; bih.biypelspermeter = 0x60; // pixel and metres bih.biclrused = 0; bih.biclrimportant = 0; The above code define the format of BMP bitmap information header and data, including image width, height (in pixels); definition of the target device bit plane number1, the compression type of image data; image size, horizontal and vertical resolution, etc. /*Palette information*/ int i; for(i=0;i<256;i++) rgbquad[i].rgbblue=i; rgbquad[i].rgbgreen=i; rgbquad[i].rgbred=i; rgbquad[i].rgbreserved=0; /*write information*/ FILE* fp = NULL; int ret = 0; fp = fopen("/opt/qt-4.5-fs/bin/fp.bmp","wb"); if(!fp)

5 return ; ret = fwrite(&bfh,1,sizeof(struct bmp_fileheader),fp); ret = fwrite(&bih,1,sizeof(struct bmp_infoheader),fp); ret = fwrite(&rgbquad[0],1,sizeof(rgb QUAD)*256,fp); ret = fwrite(&fp_img_data[0],1,sizeof(fp_img_data),fp); fclose(fp); return ; Finally, the four part information of the BMP format is written into the FP stream, and the write is recorded as the 1 struct record corresponding to the structure size. C. Fingerprint verification After the successful entry of fingerprint information, the characteristic value is stored in the database. Enter the examinee verification interface, input the fingerprint, match and verify with user information stored in the database, this match is 1:N contrast, the corresponding code segment is as follows: void stufpveridlg::on_btn_fp_reg_ver_ clicked() qdebug()<<"click req verify fp"; clean_wind_text(); //QMessageBox::information(this,"Information",tr("click req verify fp")); g_fp_opt->userfpindent(); Conclusions Through the above software transplant S3C2440 can successfully display the Qt interface, and can perform the examinee information input and delete function. After the function of each module is improved, the software and hardware carried out debugging, and debugged the function of the system. Finally, the system is easy to use, high efficiency and fast, and it has certain practical value.fingerprint image and fingerprint verification image as shown in figure2 and figure3: Figure 2. Fingerprint acquisition interface. Figure 3. Fingerprint verification interface. References [1] Ni Zengchao, Wang Jing. Development and application of automatic fingerprint identification technology [J]. Science and Technology Innovation and Application, 2015 (32): [2] Yang Lan. Analysis of fingerprint identification technology and its application [J]. Journal of Jilin Teachers' College of Engineering and Technology, 2014, 30 (9):

6 [3] Li Tong, Han Haiwei, Shi Junfei. Research on the application of fingerprint identification technology in the campus smart card system [J]. Journal of Henan Mechanical and Electrical Engineering College, 2008,16 (4): [4] Zeng Jianyuan. Research and implementation of embedded GUI based on ARM9 on Qt/Embedded platform [D]. Ji Lin University master's degree thesis [5] Li Yanmin. Research and application of cross platform based on Qt cross platform [D]. Chongqing University Master's Thesis [6] Qt4 Whiter Paper [M]. Trolltech Company, [7] Li Yunsong, Liu Guofan, Cao Shaokun. Design and application of MiniGUI based on embedded ARM-Linux system [J]. Journal of Hunan Institute of Engineering: Natural Science Edition, 2008, 18 (1): [8] Xu Bing, Wu Sheng, Pan Yi. Application of embedded database SQLite in fingerprint identification system [J], Office Automation Journal. 2008, 6 (133): [9] UART Fingerprint Reader user manual.pdf. [10] Yang Lei, Zhang Wenchao, Qin Huibin. Design and implementation of fingerprint identification system based on [J]. STM32 Mechanical and Electrical Engineering (12):

Application of Face Recognition Technology in the Exam Identity Authentication System Li-jun YU 1,a,* and Ke-feng LI 2,b

Application of Face Recognition Technology in the Exam Identity Authentication System Li-jun YU 1,a,* and Ke-feng LI 2,b 2017 3rd International Conference on Social Science and Management (ICSSM 2017) ISBN: 978-1-60595-445-5 Application of Face Recognition Technology in the Exam Identity Authentication System Li-jun YU 1,a,*

More information

Customizing dynamic libraries of Qt based on the embedded Linux Li Yang 1,a, Wang Yunliang 2,b

Customizing dynamic libraries of Qt based on the embedded Linux Li Yang 1,a, Wang Yunliang 2,b Applied Mechanics and Materials Submitted: 2014-11-12 ISSN: 1662-7482, Vol. 740, pp 782-785 Accepted: 2014-12-02 doi:10.4028/www.scientific.net/amm.740.782 Online: 2015-03-09 2015 Trans Tech Publications,

More information

2017 International Conference on Economics, Management Engineering and Marketing (EMEM 2017) ISBN:

2017 International Conference on Economics, Management Engineering and Marketing (EMEM 2017) ISBN: 2017 International Conference on Economics, Management Engineering and Marketing (EMEM 2017) ISBN: 978-1-60595-502-5 Design of Attendance Check System Based on Ethernet Technology and Fingerprint Recognition

More information

Intelligent Computer Room Management Platform Based on RF Card

Intelligent Computer Room Management Platform Based on RF Card 2017 2 nd International Conference on Artificial Intelligence and Engineering Applications (AIEA 2017) ISBN: 978-1-60595-485-1 Intelligent Computer Room Management Platform Based on RF Card LI ZHANG and

More information

RESEARCH ON CROSS PLATFORM DEVELOPMENT MODEL BASED ON QUICK QT Xiaohua Zhang1, a, Bo Huang2, b

RESEARCH ON CROSS PLATFORM DEVELOPMENT MODEL BASED ON QUICK QT Xiaohua Zhang1, a, Bo Huang2, b 6th International Conference on Information Engineering for Mechanics and Materials (ICIMM 2016) RESEARCH ON CROSS PLATFORM DEVELOPMENT MODEL BASED ON QUICK QT Xiaohua Zhang1, a, Bo Huang2, b 1 Department

More information

Network Video Surveillance System Based on Embedded Linux and ARM Technology

Network Video Surveillance System Based on Embedded Linux and ARM Technology Network Video Surveillance System Based on Embedded Linux and ARM Technology Abstract Feng Zhou Information Engineering Department, Suihua University, Suihua 152061, China With development of computer

More information

Design of Smart home System Based on Basic Radio Frequency Wireless Sensor Network

Design of Smart home System Based on Basic Radio Frequency Wireless Sensor Network Design of Smart home System Based on Basic Radio Frequency Wireless Sensor Network https://doi.org/10.3991/ijoe.v14i04.8389 Fang Tian!! " Hunan Institute of Science and Technology, Yueyang, China 3151088628@qq.com

More information

Research on Computer Network Virtual Laboratory based on ASP.NET. JIA Xuebin 1, a

Research on Computer Network Virtual Laboratory based on ASP.NET. JIA Xuebin 1, a International Conference on Advances in Mechanical Engineering and Industrial Informatics (AMEII 2015) Research on Computer Network Virtual Laboratory based on ASP.NET JIA Xuebin 1, a 1 Department of Computer,

More information

Remote Supervising of Power Plant

Remote Supervising of Power Plant 2017 2nd International Conference on Computer, Mechatronics and Electronic Engineering (CMEE 2017) ISBN: 978-1-60595-532-2 Remote Supervising of Power Plant Hui-ran WANG 1 and Rui-fang MA 2, * 1 College

More information

Serial Communication Based on LabVIEW for the Development of an ECG Monitor

Serial Communication Based on LabVIEW for the Development of an ECG Monitor Advanced Materials Research Online: 2013-08-16 ISSN: 1662-8985, Vols. 734-737, pp 3003-3006 doi:10.4028/www.scientific.net/amr.734-737.3003 2013 Trans Tech Publications, Switzerland Serial Communication

More information

The Design of Electronic Color Screen Based on Proteus Visual Designer Ting-Yu HOU 1,a, Hao LIU 2,b,*

The Design of Electronic Color Screen Based on Proteus Visual Designer Ting-Yu HOU 1,a, Hao LIU 2,b,* 2016 Joint International Conference on Service Science, Management and Engineering (SSME 2016) and International Conference on Information Science and Technology (IST 2016) ISBN: 978-1-60595-379-3 The

More information

The Design of Distributed File System Based on HDFS Yannan Wang 1, a, Shudong Zhang 2, b, Hui Liu 3, c

The Design of Distributed File System Based on HDFS Yannan Wang 1, a, Shudong Zhang 2, b, Hui Liu 3, c Applied Mechanics and Materials Online: 2013-09-27 ISSN: 1662-7482, Vols. 423-426, pp 2733-2736 doi:10.4028/www.scientific.net/amm.423-426.2733 2013 Trans Tech Publications, Switzerland The Design of Distributed

More information

Remote Monitoring System of Ship Running State under Wireless Network

Remote Monitoring System of Ship Running State under Wireless Network Journal of Shipping and Ocean Engineering 7 (2017) 181-185 doi 10.17265/2159-5879/2017.05.001 D DAVID PUBLISHING Remote Monitoring System of Ship Running State under Wireless Network LI Ning Department

More information

Research on the Application of Digital Images Based on the Computer Graphics. Jing Li 1, Bin Hu 2

Research on the Application of Digital Images Based on the Computer Graphics. Jing Li 1, Bin Hu 2 Applied Mechanics and Materials Online: 2014-05-23 ISSN: 1662-7482, Vols. 556-562, pp 4998-5002 doi:10.4028/www.scientific.net/amm.556-562.4998 2014 Trans Tech Publications, Switzerland Research on the

More information

Design of point to multi-point wireless communication system based on ZigBee

Design of point to multi-point wireless communication system based on ZigBee Design of point to multi-point wireless communication system based on ZigBee Tinting Meng, Chengdong Wu, Bo Shang, Chengxi Goo, unzhou Zhang College of Information Science and Engineering Northeastern

More information

Published by: PIONEER RESEARCH & DEVELOPMENT GROUP (www.prdg.org) 1

Published by: PIONEER RESEARCH & DEVELOPMENT GROUP (www.prdg.org) 1 Enhancing Security in Identity Documents Using QR Code RevathiM K 1, Annapandi P 2 and Ramya K P 3 1 Information Technology, Dr.Sivanthi Aditanar College of Engineering, Tiruchendur, Tamilnadu628215, India

More information

The Design of Supermarket Electronic Shopping Guide System Based on ZigBee Communication

The Design of Supermarket Electronic Shopping Guide System Based on ZigBee Communication The Design of Supermarket Electronic Shopping Guide System Based on ZigBee Communication Yujie Zhang, Liang Han, and Yuanyuan Zhang College of Electrical and Information Engineering, Shaanxi University

More information

Image Contour Extraction Method based on Computer Technology Li Huanliang

Image Contour Extraction Method based on Computer Technology Li Huanliang 4th National Conference on Electrical, Electronics and Computer Engineering (NCEECE 2015) Image Contour Extraction Method based on Computer Technology Li Huanliang Linyi University, Linyi, Shandong, 276400

More information

A Tentative Study on Ward Monitoring System based on Zigbee Technology Jifeng Liang

A Tentative Study on Ward Monitoring System based on Zigbee Technology Jifeng Liang 7th International Conference on Education, Management, Computer and Medicine (EMCM 2016) A Tentative Study on Ward Monitoring System based on Zigbee Technology Jifeng Liang Xi an Fanyi University, Xi an

More information

Design and Implementation of unified Identity Authentication System Based on LDAP in Digital Campus

Design and Implementation of unified Identity Authentication System Based on LDAP in Digital Campus Advanced Materials Research Online: 2014-04-09 ISSN: 1662-8985, Vols. 912-914, pp 1213-1217 doi:10.4028/www.scientific.net/amr.912-914.1213 2014 Trans Tech Publications, Switzerland Design and Implementation

More information

A Hybrid Architecture for Video Transmission

A Hybrid Architecture for Video Transmission 2017 Asia-Pacific Engineering and Technology Conference (APETC 2017) ISBN: 978-1-60595-443-1 A Hybrid Architecture for Video Transmission Qian Huang, Xiaoqi Wang, Xiaodan Du and Feng Ye ABSTRACT With the

More information

A New Method Of VPN Based On LSP Technology

A New Method Of VPN Based On LSP Technology 2nd Joint International Information Technology, Mechanical and Electronic Engineering Conference (JIMEC 2017) A New Method Of VPN Based On LSP Technology HaiJun Qing 1, 2 1, 2, ChaoXiang Liang, LiPing

More information

BIOMETRIC BASED VOTING MACHINE

BIOMETRIC BASED VOTING MACHINE Impact Factor (SJIF): 5.301 International Journal of Advance Research in Engineering, Science & Technology e-issn: 2393-9877, p-issn: 2394-2444 Volume 5, Issue 4, April-2018 BIOMETRIC BASED VOTING MACHINE

More information

Development and Application of Database System for Rubber Material

Development and Application of Database System for Rubber Material 4th International Conference on Information Systems and Computing Technology (ISCT 2016) Development and Application of Database System for Rubber Material Ningfei WU, Yan CAO, Yu BAI, Hu QIAO Department

More information

Design and Implementation of Inspection System for Lift Based on Android Platform Yan Zhang1, a, Yanping Hu2,b

Design and Implementation of Inspection System for Lift Based on Android Platform Yan Zhang1, a, Yanping Hu2,b 2nd Workshop on Advanced Research and Technology in Industry Applications (WARTIA 2016) Design and Implementation of Inspection System for Lift Based on Android Platform Yan Zhang1, a, Yanping Hu2,b 1

More information

Research and design on boxing-teaching robot of embedded system and pressure sensor

Research and design on boxing-teaching robot of embedded system and pressure sensor Acta Technica 62 No. 3A/2017, 149 156 c 2017 Institute of Thermomechanics CAS, v.v.i. Research and design on boxing-teaching robot of embedded system and pressure sensor Zhengxian Huang 1 Abstract. As

More information

Personalized Search for TV Programs Based on Software Man

Personalized Search for TV Programs Based on Software Man Personalized Search for TV Programs Based on Software Man 12 Department of Computer Science, Zhengzhou College of Science &Technology Zhengzhou, China 450064 E-mail: 492590002@qq.com Bao-long Zhang 3 Department

More information

The Internet of Things for Petroleum Transportation

The Internet of Things for Petroleum Transportation 2017 2nd International Conference on Applied Mechanics and Mechatronics Engineering (AMME 2017) ISBN: 978-1-60595-521-6 The Internet of Things for Petroleum Transportation Hui-ran WANG 1 and Rui-fang MA

More information

Construction of the Library Management System Based on Data Warehouse and OLAP Maoli Xu 1, a, Xiuying Li 2,b

Construction of the Library Management System Based on Data Warehouse and OLAP Maoli Xu 1, a, Xiuying Li 2,b Applied Mechanics and Materials Online: 2013-08-30 ISSN: 1662-7482, Vols. 380-384, pp 4796-4799 doi:10.4028/www.scientific.net/amm.380-384.4796 2013 Trans Tech Publications, Switzerland Construction of

More information

Qingdao, , China. China. Keywords: Deep sea Ultrahigh pressure, Water sound acquisition, LabVIEW, NI PXle hardware.

Qingdao, , China. China. Keywords: Deep sea Ultrahigh pressure, Water sound acquisition, LabVIEW, NI PXle hardware. 2016 International Conference on Control and Automation (ICCA 2016) ISBN: 978-1-60595-329-8 Research and Design on Water Sound Acquisition System of Deep Sea Ultrahigh Pressure Environment Gang TONG 1,

More information

Design and Implementation of the Application Layer Communication Protocol Based on Wireless Sensor Network

Design and Implementation of the Application Layer Communication Protocol Based on Wireless Sensor Network TELKOMNIKA, Vol. 11, No. 8, August 2013, pp. 4788~4793 e-issn: 2087-278X 4788 Design and Implementation of the Application Layer Communication Protocol Based on Wireless Sensor Network Changshun Chen College

More information

HUMAN-COMPUTER INTERFACE DEVELOPMENT OF WIRELESS MONITORING SYSTEM BASED ON MINIGUI

HUMAN-COMPUTER INTERFACE DEVELOPMENT OF WIRELESS MONITORING SYSTEM BASED ON MINIGUI HUMAN-COMPUTER INTERFACE DEVELOPMENT OF WIRELESS MONITORING SYSTEM BASED ON MINIGUI Zhihua Diao 1, Chunjiang Zhao 1, 2, Xiaojun Qiao 2,*, Cheng Wang 2, Gang Wu 1, Xin Zhang 2 1 2 University of Science

More information

Information Push Service of University Library in Network and Information Age

Information Push Service of University Library in Network and Information Age 2013 International Conference on Advances in Social Science, Humanities, and Management (ASSHM 2013) Information Push Service of University Library in Network and Information Age Song Deng 1 and Jun Wang

More information

Design of Intelligent System for Watering Flowers Based on IOT

Design of Intelligent System for Watering Flowers Based on IOT 4th International Conference on Computer, Mechatronics, Control and Electronic Engineering (ICCMCEE 2015) Design of Intelligent System for Watering Flowers Based on IOT Hong-Jun GU a, Shi-Dong Zhu, Yan-Fen

More information

Research on function and design of virtual instrument based on LabVIEW Technology

Research on function and design of virtual instrument based on LabVIEW Technology Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research, 2014, 6(6):1099-1104 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 Research on function and design of virtual instrument

More information

Research and Design of Distributed Remote Upgrade Technology for Voltage Monitoring Terminal. Yi-qin BAO

Research and Design of Distributed Remote Upgrade Technology for Voltage Monitoring Terminal. Yi-qin BAO 2017 2nd International Conference on Artificial Intelligence: Techniques and Applications (AITA 2017) ISBN: 978-1-60595-491-2 Research and Design of Distributed Remote Upgrade Technology for Voltage Monitoring

More information

A QR code identification technology in package auto-sorting system

A QR code identification technology in package auto-sorting system Modern Physics Letters B Vol. 31, Nos. 19 21 (2017) 1740035 (5 pages) c World Scientific Publishing Company DOI: 10.1142/S0217984917400358 A QR code identification technology in package auto-sorting system

More information

Application and Research of Integrated Information Exchange System Between Substation and Dispatch Center

Application and Research of Integrated Information Exchange System Between Substation and Dispatch Center International Conference on Energy, Power and Electrical Engineering (EPEE 2016) Application and Research of Integrated Information Exchange System Between Substation and Dispatch Center Ning Jiang1, Lin

More information

Wireless Smart Home Security System Based on Android

Wireless Smart Home Security System Based on Android 2017 2 nd International Conference on Artificial Intelligence and Engineering Applications (AIEA 2017) ISBN: 978-1-60595-485-1 Wireless Smart Home Security System Based on Android LIANGYU CHEN, SEN ZHANG

More information

Research of Traffic Flow Based on SVM Method. Deng-hong YIN, Jian WANG and Bo LI *

Research of Traffic Flow Based on SVM Method. Deng-hong YIN, Jian WANG and Bo LI * 2017 2nd International onference on Artificial Intelligence: Techniques and Applications (AITA 2017) ISBN: 978-1-60595-491-2 Research of Traffic Flow Based on SVM Method Deng-hong YIN, Jian WANG and Bo

More information

An Example of Network Video Monitoring System Based on DM6446. ChaoJun Yan

An Example of Network Video Monitoring System Based on DM6446. ChaoJun Yan 3rd International Conference on Management, Education, Information and Control (MEICI 2015) An Example of Network Video Monitoring System Based on DM6446 ChaoJun Yan College of Computer and Information

More information

Design on Students Score Management System based on Asp.net Zhe Li1,a, Jiahui Wang2,b, Shuang Wei3,c

Design on Students Score Management System based on Asp.net Zhe Li1,a, Jiahui Wang2,b, Shuang Wei3,c 5th International Conference on Social Science, Education and Humanities Research (SSEHR 2016) Design on Students Score Management System based on Asp.net Zhe Li1,a, Jiahui Wang2,b, Shuang Wei3,c 1 College

More information

The Design Of Private Cloud Platform For Colleges And Universities Education Resources Based On Openstack. Guoxia Zou

The Design Of Private Cloud Platform For Colleges And Universities Education Resources Based On Openstack. Guoxia Zou 4th National Conference on Electrical, Electronics and Computer Engineering (NCEECE 2015) The Design Of Private Cloud Platform For Colleges And Universities Education Resources Based On Openstack Guoxia

More information

A Digital Menu System Based on the Cloud client Technology Lin Dong 1, a, Weibo Li 1, b, Ping He 2,c,Jia Liu 1,d

A Digital Menu System Based on the Cloud client Technology Lin Dong 1, a, Weibo Li 1, b, Ping He 2,c,Jia Liu 1,d Applied Mechanics and Materials Online: 2012-11-29 ISSN: 1662-7482, Vol. 235, pp 389-393 doi:10.4028/www.scientific.net/amm.235.389 2012 Trans Tech Publications, Switzerland A Digital Menu System Based

More information

Study of Smart Home System based on Zigbee Wireless Sensor System. Jie Huang 1

Study of Smart Home System based on Zigbee Wireless Sensor System. Jie Huang 1 2nd Workshop on Advanced Research and Technology in Industry Applications (WARTIA 2016) Study of Smart Home System based on Zigbee Wireless Sensor System Jie Huang 1 1 College of Mechanical and Electronic

More information

The design and implementation of UML-based students information management system

The design and implementation of UML-based students information management system The design and implementation of UML-based students information management system Abstract Yunli Cheng 1, a, ChuanQin Li 2, b 1 Guangzhou Nanyang Polytechnic, Guangzhou 510925, China 2 Guangzhou Huaxia

More information

Research of Multi-axis NC Machining Method of Cylindrical Cam Based on UG NX

Research of Multi-axis NC Machining Method of Cylindrical Cam Based on UG NX Research of Multi-axis NC Machining Method of Cylindrical Cam Based on UG NX Qianhua Liang Electro-machinery Engineering Department, Chengdu Industrial Vocational Technical College, Sichuan, China Corresponding

More information

Research Article. Three-dimensional modeling of simulation scene in campus navigation system

Research Article. Three-dimensional modeling of simulation scene in campus navigation system Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research, 2013, 5(12):103-107 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 Three-dimensional modeling of simulation scene

More information

Keywords: Cloud computing, ZigBee, Smart home, Security cloud

Keywords: Cloud computing, ZigBee, Smart home, Security cloud 2016 International Conference on Information Engineering and Communications Technology (IECT 2016) ISBN: 978-1-60595-375-5 Design of the Smart-home Security System based on Cloud Computing Yan Wang 1,a,

More information

Research into a Wireless Smart Parking System

Research into a Wireless Smart Parking System 241 A publication of CHEMICAL ENGINEERING TRANSACTIONS VOL. 46, 2015 Guest Editors: Peiyu Ren, Yancang Li, Huiping Song Copyright 2015, AIDIC Servizi S.r.l., ISBN 978-88-95608-37-2; ISSN 2283-9216 The

More information

Design and Implementation of CNC Operator Panel Control Functions Based on CPLD. Huaqun Zhan, Bin Xu

Design and Implementation of CNC Operator Panel Control Functions Based on CPLD. Huaqun Zhan, Bin Xu Advanced Materials Research Online: 2013-07-31 ISSN: 1662-8985, Vol. 722, pp 428-432 doi:10.4028/www.scientific.net/amr.722.428 2013 Trans Tech Publications, Switzerland Design and Implementation of CNC

More information

Design of Coal Mine Power Supply Monitoring System

Design of Coal Mine Power Supply Monitoring System 2nd International Conference on Electronics, Network and Computer Engineering (ICENCE 2016) Design of Coal Mine Power Supply Monitoring System Lei Shi 1, Guo Jin 2 and Jun Xu 3 1 2 Department of electronic

More information

Design of Centralized Remote-reading Meter System and Intelligent Network Water Meter

Design of Centralized Remote-reading Meter System and Intelligent Network Water Meter International Conference on Mechatronics, Electronic, Industrial and Control Engineering (MEIC 2014) Design of Centralized Remote-reading Meter System and Intelligent etwork Water Meter Chuanfeng Li lichuanfeng@sina.com

More information

The Design and Implementation of Electronic Program Guide In Digital TV Set-Top-Box

The Design and Implementation of Electronic Program Guide In Digital TV Set-Top-Box I.J. Education and Management Engineering, 2012, 11, 56-61 Published Online November 2012 in MECS (http://www.mecs-press.net) DOI: 10.5815/ijeme.2012.11.11 Available online at http://www.mecs-press.net/ijeme

More information

Adaptive Zoom Distance Measuring System of Camera Based on the Ranging of Binocular Vision

Adaptive Zoom Distance Measuring System of Camera Based on the Ranging of Binocular Vision Adaptive Zoom Distance Measuring System of Camera Based on the Ranging of Binocular Vision Zhiyan Zhang 1, Wei Qian 1, Lei Pan 1 & Yanjun Li 1 1 University of Shanghai for Science and Technology, China

More information

Computer Life (CPL) ISSN: Design of the Multifunctional Writing Robot based on Arduino

Computer Life (CPL) ISSN: Design of the Multifunctional Writing Robot based on Arduino Computer Life (CPL) ISSN: 1819-4818 Delivering Quality Science to the World Design of the Multifunctional Writing Robot based on Arduino Xin Lai a, *, Zhiqiang Liu b, Hang Zhang c, Xuemei Liu d, Jianmin

More information

Implementation of Aadhaar Based EVM

Implementation of Aadhaar Based EVM Implementation of Aadhaar Based EVM Kiran Chavan 1, Kashinath Raut 2, Ashish Bhingardive 3, Yogesh Kolape 4, D. M. Ujalambkar 5 1, 2, 3, 4, 5 Computer Department, Savitribai Phule Pune University Abstract:

More information

Improvement of the Communication Protocol Conversion Equipment Based on Embedded Multi-MCU and μc/os-ii

Improvement of the Communication Protocol Conversion Equipment Based on Embedded Multi-MCU and μc/os-ii Improvement of the Communication Protocol Conversion Equipment Based on Embedded Multi-MCU and μc/os-ii P. Sai Chaitanya & T. Sandeep ECE Department, Varadha Reddy College of Engineering, Hasanparthy,

More information

PORTING 3GP PLAYER ANDROID APPLICATION ON ARM9 WITH HIGH SECURITY (USING BIOMETRICS)

PORTING 3GP PLAYER ANDROID APPLICATION ON ARM9 WITH HIGH SECURITY (USING BIOMETRICS) Journal of Computer Networking, Wireless and Mobile Communications (JCNWMC) Vol.2, Issue 1 Sep 2012 39-44 TJPRC Pvt. Ltd., PORTING 3GP PLAYER ANDROID APPLICATION ON ARM9 WITH HIGH SECURITY (USING BIOMETRICS)

More information

Design of Campus one-finger Service System Based on Fingerprint Identification

Design of Campus one-finger Service System Based on Fingerprint Identification Design of Campus one-finger Service System Based on Fingerprint Identification Shouxi Zhu Aviation Information Technology R&D Center Binzhou University Binzhou, China Wenlai Ma Flying College of Binzhou

More information

Design and Implementation of Dual-Mode Wireless Video Monitoring System

Design and Implementation of Dual-Mode Wireless Video Monitoring System Sensors & Transducers 2014 by IFSA Publishing, S. L. http://www.sensorsportal.com Design and Implementation of Dual-Mode Wireless Video Monitoring System BAO Song-Jian, YANG Shou-Liang ChongQing University

More information

PORTING 3GP PLAYER ANDROID APPLICATION ON ARM9 WITH HIGH SECURITY (USING BIOMETRICS)

PORTING 3GP PLAYER ANDROID APPLICATION ON ARM9 WITH HIGH SECURITY (USING BIOMETRICS) PORTING 3GP PLAYER ANDROID APPLICATION ON ARM9 WITH HIGH SECURITY (USING BIOMETRICS) G.Harika 1, PG Scholar, BVC Engg.College, A. Pravin 2, M.Tech, Assoc. Professor, BVCEngg.College, K.sivaram 3, Asst.

More information

Torque Sensor Data Acquisition System of Motor Test Bench. Based on LabVIEW

Torque Sensor Data Acquisition System of Motor Test Bench. Based on LabVIEW International Journal of Research in Engineering and Science (IJRES) ISSN (Online): 2320-9364, ISSN (Print): 2320-9356 Volume 4 Issue 6 ǁ June. 2016 ǁ PP. 01-06 Torque Sensor Data Acquisition System of

More information

Design and Implementation of a Multi-Function Data Acquisition System based on Android Platform

Design and Implementation of a Multi-Function Data Acquisition System based on Android Platform 2017 International Conference on Computer Science and Application Engineering (CSAE 2017) ISBN: 978-1-60595-505-6 Design and Implementation of a Multi-Function Data Acquisition System based on Android

More information

Design of Smart Home System Based on ZigBee Technology and R&D for Application

Design of Smart Home System Based on ZigBee Technology and R&D for Application Energy and Power Engineering, 2016, 8, 13-22 Published Online January 2016 in SciRes. http://www.scirp.org/journal/epe http://dx.doi.org/10.4236/epe.2016.81002 Design of Smart Home System Based on ZigBee

More information

The design and implementation of data exchange based on XML

The design and implementation of data exchange based on XML International Conference on Information Sciences, Machinery, Materials and Energy (ICISMME 2015) The design and implementation of data exchange based on XML Yiqiu Fang a, Xiaolong Gu b and Junwei Ge c

More information

Design And Implementation Of USART IP Soft Core Based On DMA Mode

Design And Implementation Of USART IP Soft Core Based On DMA Mode Design And Implementation Of USART IP Soft Core Based On DMA Mode Peddaraju Allam 1 1 M.Tech Student, Dept of ECE, Geethanjali College of Engineering & Technology, Hyderabad, A.P, India. Abstract A Universal

More information

BioTechnology. An Indian Journal FULL PAPER. Trade Science Inc. Research on motion tracking and detection of computer vision ABSTRACT KEYWORDS

BioTechnology. An Indian Journal FULL PAPER. Trade Science Inc. Research on motion tracking and detection of computer vision ABSTRACT KEYWORDS [Type text] [Type text] [Type text] ISSN : 0974-7435 Volume 10 Issue 21 BioTechnology 2014 An Indian Journal FULL PAPER BTAIJ, 10(21), 2014 [12918-12922] Research on motion tracking and detection of computer

More information

On Design and Implementation of Locomotive Video Monitoring System. Haifeng Yuan, Jie Peng

On Design and Implementation of Locomotive Video Monitoring System. Haifeng Yuan, Jie Peng 4th National Conference on Electrical, Electronics and Computer Engineering (NCEECE 2015) On Design and Implementation of Locomotive Video Monitoring System Haifeng Yuan, Jie Peng Xinjiang Railway Vocational

More information

BMP file format - Wikipedia

BMP file format - Wikipedia Page 1 of 3 Bitmap file header This block of bytes is at the start of the file and is used to identify the file. A typical application reads this block first to ensure that the file is actually a BMP file

More information

International Conference on Electromechanical Control Technology and Transportation (ICECTT 2015)

International Conference on Electromechanical Control Technology and Transportation (ICECTT 2015) International Conference on Electromechanical Control Technology and Transportation (ICECTT 015) The Analysis and Implementation of Edge Detection Algorithms in Image Processing Based on Matlab Yang Bao-liang1,a*,

More information

Test Analysis of Serial Communication Extension in Mobile Nodes of Participatory Sensing System Xinqiang Tang 1, Huichun Peng 2

Test Analysis of Serial Communication Extension in Mobile Nodes of Participatory Sensing System Xinqiang Tang 1, Huichun Peng 2 International Conference on Automation, Mechanical Control and Computational Engineering (AMCCE 2015) Test Analysis of Serial Communication Extension in Mobile Nodes of Participatory Sensing System Xinqiang

More information

Research of tooling test signal collection and analysis Guozhuang Liang 1, a, Xuan Chen 1,b,Yufeng Yao 2,c

Research of tooling test signal collection and analysis Guozhuang Liang 1, a, Xuan Chen 1,b,Yufeng Yao 2,c 5th International Conference on Information Engineering for Mechanics and Materials (ICIMM 2015) Research of tooling test collection and analysis Guozhuang Liang 1, a, Xuan Chen 1,b,Yufeng Yao 2,c 1 School

More information

Hardware design of a submerged buoy system based on electromagnetic inductive coupling

Hardware design of a submerged buoy system based on electromagnetic inductive coupling Hardware design of a submerged buoy system based on electromagnetic inductive coupling 1 Dalei Song, Shan Gao 1, Ming Xu 2, Xiangdong Wang 1 and Yutao Wang 2 1 Department of Automation, Engineering College,

More information

Design on Data Storage Structure for Course Management System Li Ma

Design on Data Storage Structure for Course Management System Li Ma 3rd International Conference on Education, Management and Computing Technology (ICEMCT 2016) Design on Data Storage Structure for Course Management System Li Ma School of Education and Sports, Bohai University,

More information

A Design of Remote Monitoring System based on 3G and Internet Technology

A Design of Remote Monitoring System based on 3G and Internet Technology National Conference on Information Technology and Computer Science (CITCS 2012) A Design of Remote Monitoring System based on 3G and Internet Technology Shouxian WEN Lei XU Xingguo SUN Xiaohui LI* Abstract

More information

The Research and Design of the Android-Based Facilities Environment Multifunction Remote Monitoring System*

The Research and Design of the Android-Based Facilities Environment Multifunction Remote Monitoring System* The Research and Design of the Android-Based Facilities Environment Multifunction Remote Monitoring System* Lutao Gao, Linnan ang, Lin Peng, ingjie Chen, and ongzhou u College of Basic Science & Information

More information

Mobile Positioning System Based on the Wireless Sensor Network in Buildings

Mobile Positioning System Based on the Wireless Sensor Network in Buildings Communications and Network, 2009, 1, 96-100 doi:10.4236/cn.2009.12015 Published Online November 2009 (http://www.scirp.org/journal/cn). Mobile Positioning System Based on the Wireless Sensor Network in

More information

Research on Heterogeneous Communication Network for Power Distribution Automation

Research on Heterogeneous Communication Network for Power Distribution Automation 3rd International Conference on Material, Mechanical and Manufacturing Engineering (IC3ME 2015) Research on Heterogeneous Communication Network for Power Distribution Automation Qiang YU 1,a*, Hui HUANG

More information

Research on Software Scheduling Technology Based on Multi-Buffered Parallel Encryption

Research on Software Scheduling Technology Based on Multi-Buffered Parallel Encryption International Conference on Manufacturing Science and Engineering (ICMSE 2015) Research on Software Scheduling Technology Based on Multi-Buffered Parallel Encryption Zeng Rong 1, a, Xia Wei 2, Wang Hongkai

More information

The Key Technology and Algorithm Design for the Development of Intelligent Examination System

The Key Technology and Algorithm Design for the Development of Intelligent Examination System 6th International Conference on Electronics, Mechanics, Culture and Medicine (EMCM 2015) The Key Technology and Algorithm Design for the Development of Intelligent Examination System Kai Lu1, a * and Mingrui

More information

Recognition of Human Body Movements Trajectory Based on the Three-dimensional Depth Data

Recognition of Human Body Movements Trajectory Based on the Three-dimensional Depth Data Preprints of the 19th World Congress The International Federation of Automatic Control Recognition of Human Body s Trajectory Based on the Three-dimensional Depth Data Zheng Chang Qing Shen Xiaojuan Ban

More information

Realization of Automatic Keystone Correction for Smart mini Projector Projection Screen

Realization of Automatic Keystone Correction for Smart mini Projector Projection Screen Applied Mechanics and Materials Online: 2014-02-06 ISSN: 1662-7482, Vols. 519-520, pp 504-509 doi:10.4028/www.scientific.net/amm.519-520.504 2014 Trans Tech Publications, Switzerland Realization of Automatic

More information

Communication Stability Experiment of IOT Car Based on WIFI and Bluetooth

Communication Stability Experiment of IOT Car Based on WIFI and Bluetooth Communication Stability Experiment of IOT Car Based on WIFI and Bluetooth Xiaojia Lin 1, a, Junxing Li 1, b, Yushang Du 2, c and Yuhong Lin 1, d 1School of Electromechanical Engineering, Guangdong University

More information

Research on Power Quality Monitoring and Analyzing System Based on Embedded Technology

Research on Power Quality Monitoring and Analyzing System Based on Embedded Technology 2010 China International Conference on Electricity Distribution 1 Research on Power Quality Monitoring and Analyzing System Based on Embedded Technology Zhang Hong-tao, Ye Ying, An Qing China Zhoukou Power

More information

The Research about Embedded Soft PLC Running System Based on ARM

The Research about Embedded Soft PLC Running System Based on ARM Sensors & Transducers 2014 by IFSA Publishing, S. L. http://www.sensorsportal.com The Research about Embedded Soft PLC Running System Based on ARM Fang Ding, Suzhuo Wu College of Aeronautical Automation,

More information

REAL TIME IMAGE PROCESSING BASED ON EMBEDDED LINUX

REAL TIME IMAGE PROCESSING BASED ON EMBEDDED LINUX REAL TIME IMAGE PROCESSING BASED ON EMBEDDED LINUX 1 S. M. GRAMOPADHYE, 2 R. T. PATIL RIT Sakharale Email: sgswapnilsmg328@gmail.com, ramesh.patil@ritindia.edu Abstract: The continuous improvement in development

More information

Embedded Surveillance System using Multiple Ultrasonic Sensors

Embedded Surveillance System using Multiple Ultrasonic Sensors IJSRD - International Journal for Scientific Research & Development Vol. 3, Issue 05, 2015 ISSN (online): 2321-0613 Embedded Surveillance System using Multiple Ultrasonic Sensors Harshad S. Patil 1 Dr.

More information

The Construction of Digital Campus with Virtual Reality. Technology--Taking Xinhua College of Sun Yat-sen University As an.

The Construction of Digital Campus with Virtual Reality. Technology--Taking Xinhua College of Sun Yat-sen University As an. International Conference on Education, Management, Commerce and Society (EMCS 2015) The Construction of Digital Campus with Virtual Reality Technology--Taking Xinhua College of Sun Yat-sen University As

More information

Research and Application of E-Commerce Recommendation System Based on Association Rules Algorithm

Research and Application of E-Commerce Recommendation System Based on Association Rules Algorithm Research and Application of E-Commerce Recommendation System Based on Association Rules Algorithm Qingting Zhu 1*, Haifeng Lu 2 and Xinliang Xu 3 1 School of Computer Science and Software Engineering,

More information

AET60 BioCARDKey. Application Programming Interface. Subject to change without prior notice

AET60 BioCARDKey. Application Programming Interface.  Subject to change without prior notice AET60 BioCARDKey Application Programming Interface Subject to change without prior notice Table of Contents 1.0. Introduction... 3 2.0. Application Programming Interface... 4 2.1. Overview...4 2.2. Data

More information

Research on Image Sensor System Acquisition Based on ARM

Research on Image Sensor System Acquisition Based on ARM Sensors & Transducers, Vol. 161, Issue 1, December 013, pp. 86-91 Sensors & Transducers 013 by IFSA http://www.sensorsportal.com Research on Image Sensor System Acquisition Based on ARM Yao NAN The Information

More information

The Design and Development of Database in Electrician s Digital Assistant

The Design and Development of Database in Electrician s Digital Assistant International Journal of Advanced Computer Science, Vol. 2, No. 3, Pp.99-104, Mar. 2012. The Design and Development of Database in Electrician s Digital Assistant Jingzhao Li Manuscript Received: 18,Jun.,

More information

An adaptive container code character segmentation algorithm Yajie Zhu1, a, Chenglong Liang2, b

An adaptive container code character segmentation algorithm Yajie Zhu1, a, Chenglong Liang2, b 6th International Conference on Machinery, Materials, Environment, Biotechnology and Computer (MMEBC 2016) An adaptive container code character segmentation algorithm Yajie Zhu1, a, Chenglong Liang2, b

More information

Embedded Smart Home System Based on ZigBee Song Chi

Embedded Smart Home System Based on ZigBee Song Chi International Conference on Intelligent Systems Research and Mechatronics Engineering (ISRME 2015) Embedded Smart Home System Based on ZigBee Song Chi Liaoning Jidian Polytechnic North Gold and Jewelry

More information

Design of Monitoring System Software Based on Hadoop. Technology. Shijie Luo, Dong Xie*, WeiLin Qiu, Hui Wang, Minzhi He

Design of Monitoring System Software Based on Hadoop. Technology. Shijie Luo, Dong Xie*, WeiLin Qiu, Hui Wang, Minzhi He 7th International Conference on Applied Science, Engineering and Technology (ICASET 2017) Design of Monitoring System Software Based on Hadoop Technology Shijie Luo, Dong Xie*, WeiLin Qiu, Hui Wang, Minzhi

More information

TQ2440 Development Platform Manual

TQ2440 Development Platform Manual TQ2440 Development Platform Manual 0 Directory Directory... 1 Chapter 1 Introduction... 7 11Appearance of TQ2440 development platform... 7 12Hardware resource of TQ2440... 7 13Software introduction of

More information

Design and Development of Coal Mining Equipment Inspection Instrument Application System

Design and Development of Coal Mining Equipment Inspection Instrument Application System Sensors & Transducers 2014 by IFSA Publishing, S. L. http://www.sensorsportal.com Design and Development of Coal Mining Equipment Inspection Instrument Application System Chenguang Zhao, Boqiang Shi, *

More information

The Design of CAN Bus Communication System Based on MCP2515 and S3C2440 Jinmei Liu, Junhong Wang, Donghui Sun

The Design of CAN Bus Communication System Based on MCP2515 and S3C2440 Jinmei Liu, Junhong Wang, Donghui Sun Advanced Materials Research Online: 2014-05-21 ISSN: 1662-8985, Vol. 933, pp 516-520 doi:10.4028/www.scientific.net/amr.933.516 2014 Trans Tech Publications, Switzerland The Design of CAN Bus Communication

More information

Pupil Localization Algorithm based on Hough Transform and Harris Corner Detection

Pupil Localization Algorithm based on Hough Transform and Harris Corner Detection Pupil Localization Algorithm based on Hough Transform and Harris Corner Detection 1 Chongqing University of Technology Electronic Information and Automation College Chongqing, 400054, China E-mail: zh_lian@cqut.edu.cn

More information