Network Video Surveillance System Based on Embedded Linux and ARM Technology

Size: px
Start display at page:

Download "Network Video Surveillance System Based on Embedded Linux and ARM Technology"

Transcription

1 Network Video Surveillance System Based on Embedded Linux and ARM Technology Abstract Feng Zhou Information Engineering Department, Suihua University, Suihua , China With development of computer information technology, the network video surveillance system has been widely used in all fields, and attracted more and more attention. In this paper, one network video surveillance system based on embedded Linux system and ARM technology is presented. The system uses a USB camera to capture the video images and can compress and pack the original video image data. The processed data is converted into data streams according to TCP/IP protocol, transmit through Ethernet, and the original video images can be displayed on terminals, realizing long-distance network video surveillance. Keywords: Embedded, Linux, ARM Technology, Network Video Surveillance System. 1. BACKGROUND 1.1 Introduction The video surveillance system can reflect the characteristics of the monitored object vividly in real time for analysis. It is widely used in many fields such as bank monitoring, production management, traffic safety and so on (Chen and Fan, 2014). In particular, the rapid development of computer information technology has led to an increasing demand for network video surveillance systems. The traditional monitoring system realizes monitoring through signal simulation, and has many limitations. After simulation of image information, the information is vulnerable to damage, and the quality of simulated image is low. The cabling project of traditional monitoring system is huge, difficult to meet the monitoring requirements in the transmission distance, and the data query is cumbersome, featuring low stability and reliability. For these disadvantages, the traditional analog signal monitoring system has been eliminated (Xie and Wu, 2013). With the development of computer information technology, the monitoring system is improved and optimized. With embedded technology and ARM technology, the stability and reliability of the network video surveillance system is greatly enhanced with increased surveillance range, effectively making up for the shortcoming of the traditional signal simulation monitoring system (Han et al., 2013). The network video surveillance system based on embedded Linux and ARM technology features stable, convenient installation and maintenance, and modular design, which are also the research direction. 1.2 Purpose This paper studies one network video surveillance system based on embedded Linux and ARM technology to make up for the shortcomings of traditional signal analog monitoring system, so as to improve the network video surveillance system. In view of this, this paper studied the key technologies of this network supervisory system in depth, including embedded Linux, AMR technology, data acquisition and image data compression. The system uses network resources efficiently, and does not require additional equipment, realizing long-distance video surveillance. This system has good scalability/flexibility and low cost, and the installation, maintenance and management is convenient. This system can be applied to remote network monitoring of banks, key laboratories, communities and schools, as well as real-time monitoring and management of production process and medical equipment, with high application value and reference value. 2. OVERVIEW OF NETWORK VIDEO SURVEILLANCE SYSTEM BASED ON EMBEDDED LINUX AND ARM TECHNOLOGY The network video surveillance system based on embedded Linux and ARM technology composes of hardware/software components. The hardware components include peripheral interface circuit, supporting 132

2 hardware and embedded processor. Of which ARM9 embedded processor is a core part. Samsung S3C2410 ARM9 embedded processor is adopted, connected with SDRAM chip and NAND Flash controller, and is the critical control core and storage center of the system. The processor resources are expanded and allocated in the system (Cai, 2014). The embedded processor contains two HOST/DE-VICE USB ports, a serial port, an Ethernet expansion port and a JTAG port. The Ethernet expansion port is connected with the Ethernet control chip CS8900A. Via the JTAG port, the applications, the embedded Linux operating system and Flash memory are connected (Shi et al., 2015). The camera is mounted at the two HOST/DE-VICE USB ports. This system will send the video image data captured by the camera to the Flash memory for storage. The JPEG compression processing program will compress the data in Flash memory buffer and store. The captured video image data is stored in NAND Flash and ready to receive the access from the remote host. The system can send the stored video data directly through the Ethernet expansion port of the Ethernet controller chip CS9800, and the control host in the remote terminal will receive the video data (Du and Cao, 2015). The software of the system consists of three parts: image data JPEG compression, video image data acquisition and network communication. Figure 1 shows the hardware structure diagram of network video surveillance system based on embedded Linux and ARM Technology Figure 1. Hardware Structure Diagram of Network Video Monitoring System Based on Embedded Linux and ARM Technology 3. IMPLEMENTATION OF NETWORK VIDEO SURVEILLANCE AND COMPRESSION OF IMAGE DATA First, load the USB camera driver. Then write the application for video stream acquisition. Video4Linux contains program interface functions for all I/O interfaces of the camera so as to control the I/O interfaces (Wang and Peng, 2015). To write Video4Linux acquisition program, define the data structure first, containing the basic data captured by the camera, all data relevant to the capture area, attribute information of all data sources, all attribute information of the image data captured by the camera, memory mapping data and all input frame information within the camera storage buffer, etc. (Qiao and Li, 2015). 3.1 Start of video acquisition device The open function will be called in the embedded Linux system to start the video acquisition device. If it is displayed that the open function is called successfully, the descriptor of the returned file is vd fd. If it is displayed that the call of open function fails, the descriptor of the returned file is vd fd-1. We can write the following implementation program if((vd fd = open(vd videodevice, 0 RDWR)) 1) exit fatal(error opening V 4L) (1) 3.2 Collection of device and image information The collection of image video data and device status data acquired by the camera can be performed using the control command VIDIOCGCAP in the ioctl function, and the collected image video data and device status data can be stored in the video-capacity structure (Song, 2015). The specific program is 133

3 if(ioctl(vd fd, VIDIOCGCAP, &(vd vi deocap)) = 1 exit fatal(error get videode vice capacity) (2) 3.3 Setting of camera image parameters Before image data acquisition by the camera, modify the image parameters and resolution of the camera and other parameters in accordance with the performance of the system and the requirements of designers. Assign new value to each component of the program, and then call the function icotl(-fd, VIDIOCSPICT, & picture) (Xu et al., 2013). For example: picture. color = 65256; picture. depth = 4; if(icotl(_fd, VIDIOscpict, &picture) < 0) {perror(vidiocspict)return 1} (3) 3.4 Video acquisition After the above initialization is completed, the video image data acquisition by the camera is realized. In general, there are two methods for video image data acquisition: read (reading) and mmap (memory mapping). Compared with read method, mmap method conducts mutual mapping between processes to share the memory for the same ordinary files. When the address space in the process receives another mapping of ordinary files, the process accesses the mapped common file in the same way as a normal memory access without read/write (Zhong and Hu, 2017). In this way, the mmap method is easier than read method. Therefore, the network video surveillance system based on embedded Linux and ARM technology may adopt mmap method for video image data acquisition. The video acquisition using mmap method includes three steps. First, call the control command VIDIOCGFBUF in the ioctl function to get the parameters related to the camera and other data acquisition devices, such as frame buffer parameters. Then initialize the parameter video_m buf. The program for this step is if(ioctl(vd fd, VIDIOCGMBUF, &(vd videom buf) < 0 perror(error init VIDIOCGMBUF/n) (4) After calling the function, bind video-mbuf and mmap to get the function prototype void mmap (voidaddr, int prot, int f lags, int fd, off_toffset. Using this function prototype, mmap may correspond to the pointer in the memory mapping area on successful return, and the returned value decreases by 1 if fails. Then the application is run to read the area accordingly. After completing the above operation, video image data acquisition using mmap method will be performed using the control command VIDIOCMCAPTURE in the ioctl function. 3.5 Compression of image data Compression of image data means compressing the color image data captured by the camera into JPEG format. The basic elements of the JPEG algorithm are encoder, decoder and exchange format (Qiu et al., 2016). The acquired image data and various tables can be compressed according to the specified flow in the encoder. The decoder is able to decompress the compressed image data and the tables according to a predetermined flow so that the image data can be reconstructed. The compressed image data is exchanged for different application environment in the exchange format. The data compression process is described. First, the format of the image data to be compressed is initialized and called. After calling, initialize the compressed JPEG image quality and then perform compression. After the compression is completed, the compressed image data is copied and entered into the JPEG data variables. The memory is freed and the data variables are destroyed, returning to the initial state. 4. IMPLEMENTATION OF NETWORK VIDEO SURVEILLANCE SYSTEM BASED ON EMBEDDED LINUX AND ARM TECHNOLOGY The network video surveillance system based on embedded Linux and ARM technology is realized via network programming through the Socket interface. The Socket interface is a file descriptor and a special I/O serial port. 134

4 All Socket interfaces in the system contain the description protocol, local ports and local addresses (Wang et al., 2012). The socket shall contain description protocol, local port, remote port, local address and remote address. There is a function similar to the open file in Socket for calling. Through calling of this function, the subsequent data transmission, connection establishment and other related operations can be achieved using Socket. In general, image transmission through Ethernet using UDP is superior to Socket in view of real-time performance. However, the shortcoming is that the network cannot be connected and the function of error checking and correcting is not available. When UDP is adopted, in the event of network congestion, many packets will be lost. JPEG standard is adopted for the encoder/decoder in this system. The image data is compressed in the form of frames. During transmission of the compressed images, blurring of images will occur (Wan and Wan, 2012). To avoid problems such as image blurring after transmission and improve the correctness of image data transmission, it is necessary to implement relevant protocols in application layer in the network video surveillance system. By using the TCP/IP protocol during communication, the above problems can be solved, and the real-time transmission is good. The network transmission process of the system includes the following steps. First, a connection request from the client is listened via Socket interface. Then the connection is established. The image data is compressed according to the client's needs, and sent via TCP/IP protocol. Figure 2 shows the network transmission process of network video surveillance system based on embedded Linux and ARM Technology. Figure 2. Network Transmission Process of Network Video Surveillance System Based on Embedded Linux and ARM Technology As can be seen from Figure 2, the system creates a Socket using the web server, and then initializes it into a complete TCP socket. The Socket will bind the port, and listen to the connection request from the client. When the Socket interface receives a connection request from the client, the server will respond quickly and create a new thread, then send the video data required by the client using the TCP/IP protocol (Gu and Wang, 2012). The sent video data consists of two parts: data and frame header. The system will call the read/write programs to read the video data. The software of the system is developed on PCs. After the development of software/hardware platform is completed, the software will be transplanted to establish the system. After the system is established, the corresponding testing environment should be constructed. 5. EXPERIMENTS ON NETWORK VIDEO SURVEILLANCE SYSTEM BASED ON EMBEDDED LINUX AND ARM TECHNOLOGY 5.1 Construction of the test environment The test environment consists of two parts: the browser and the hardware platform. The hardware platform is built using the PC and the development board. FriendlyARM SBC2410 development board is adopted. The embedded Linux system and the applications related to the terminal are transplanted. Connect the USB camera, and connect the cable with the development board to construct the local network, so as to complete the construction of a hardware platform. The browser environment is built using the Firefox browser, and the Java plug-in is used so that the browser can support the Java program. 5.2 Testing the system The testing process is as follows: start the server and the USB camera. Enter the Website in the browser to authenticate the user. After verification, run the program. After authenticating the identity of the user, the program will call the JAVA program in the browser, and the video images captured by the USB camera will be transmitted to the browser window. The test results show that, the size of the monitoring window formed by the USB camera is The video image in the browser window is clear. The quality of still object images is good, and the image is not distorted. Moving objects can be displayed clearly, to achieve real-time monitoring under the visual network. 135

5 6. BRIEF CONCLUSION In summary, the network video surveillance system based on embedded Linux and ARM technology runs well, more stable compared with the traditional monitoring system, featuring excellent scalability and reliability. The main advantage of this monitoring system is low cost and simple to operate, no additional equipment. As long as the browser supports, we can provide users with clear and real-time video surveillance screen. The network video monitoring system developed in this paper is just a basic form that can realize the monitoring function of the video system. However, there are still many areas that need improvement, such as video storage, multi-path video capture, pan control and alarm functions, etc. Through the improvement and optimization of these functions, the network video surveillance system based on embedded Linux and ARM technology can be further improved and will be more stable. ACKNOWLEDGEMENTS This work was supported by a grant from the Science and Technology Plan Program of Suihua Science and Technology Bureau (SHKJ , SHKJ ). REFERENCES Cai Q. (2 014). Design of network video surveillance system based on Linux, Electronic production, (23), Du W.L., Cao J.T. (2015). Design of wireless video surveillance system based on ARM-Linux, Measurement and control technology, 34 (03), Chen L.Y., Fan D.G. (2014). The acquisition and transmission of embedded microprocessor under the environment of the video stream, The science and technology, 12 (05), Gu S., Wang J.H. (2012). 3G wireless video surveillance system based on ARM Linux, Modern electronic technology, 35 (23), Han W., Pei C.M., Wang Y.Q., Yang X.Q. (2 013). Design of wireless video surveillance system based on ARM technology, Modern electronic technology, 36 (20), Qiu X.J., Chen M.S., Huang G.J. (2016). The design and implementation of video monitoring system based on Cortex-A8 tracking, Computer and digital engineering, 44 (03), Qiao R.A., Li X.H. (2015). Design and implementation of multi-channel video surveillance system based on embedded Linux platform, Computer and digital engineering, 43 (07), Shi Q.S., Fan D.Y., Chai X., Cao P.F., Geng Y.H. (2015). The construction and analysis of embedded Linux root file system, Computer measurement and control, 23 (02), Song L.T. (2015). Research on embedded network video surveillance system based on Web technology, Information communication, (07), Wan T., Wan S.M. (2012). The design and implementation of embedded Web remote video monitoring system, Modern computer (Professional Edition), (21), Wang H.Z., Peng H. (2015). Design and implementation of embedded video surveillance system terminal software, Microcomputer and application, 34 (06), Wang L.L., Qi S., Zhu L.L. (2012). Design of smart home monitoring system based on embedded Linux, Electronic design engineering, 20 (03), Xie J.B., Wu B.N. (2 013). Research on video acquisition and transmission system based on ARM11-Linux, Microcomputer and application, 32 (08), Xu X.F., Li L.S., Yan Q.S. (2013). Application of ARM11 and Linux in network video real time monitoring system, Journal of Yunnan University of Nationalities (NATURAL SCIENCE EDITION), 22 (05), Zhong W.L., Hu W. (2017). Design of network video surveillance system based on embedded system, Research on Urban Construction Theory (Electronic Edition), (01),

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

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

The Analysis and Research of IPTV Set-top Box System. Fangyan Bai 1, Qi Sun 2

The Analysis and Research of IPTV Set-top Box System. Fangyan Bai 1, Qi Sun 2 Applied Mechanics and Materials Online: 2012-12-13 ISSN: 1662-7482, Vols. 256-259, pp 2898-2901 doi:10.4028/www.scientific.net/amm.256-259.2898 2013 Trans Tech Publications, Switzerland The Analysis and

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

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

Battery Energy Storage System Information Modeling Based on IEC 61850

Battery Energy Storage System Information Modeling Based on IEC 61850 Journal of Power and Energy Engineering, 2014, 2, 233-238 Published Online April 2014 in SciRes. http://www.scirp.org/journal/jpee http://dx.doi.org/10.4236/jpee.2014.24033 Battery Energy Storage System

More information

Design of Underground Current Detection Nodes Based on ZigBee

Design of Underground Current Detection Nodes Based on ZigBee MATEC Web of Conferences 22, 0104 5 ( 2015) DOI: 10.1051/ matecconf/ 20152201045 C Owned by the authors, published by EDP Sciences, 2015 Design of Underground Current Detection Nodes Based on ZigBee Deyu

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

Application of Theory and Technology of Wireless Sensor Network System for Soil Environmental Monitoring

Application of Theory and Technology of Wireless Sensor Network System for Soil Environmental Monitoring Sensors & Transducers 2013 by IFSA http://www.sensorsportal.com Application of Theory and Technology of Wireless Sensor Network System for Soil Environmental Monitoring 1,2,3 Xu Xi, 3 Xiaoyao Xie, 4 Zhang

More information

Research and Implementation of Software Used for the Remote Control for VM700T Video Measuring Instrument

Research and Implementation of Software Used for the Remote Control for VM700T Video Measuring Instrument MATEC Web of Conferences 22, 03001 ( 2015) DOI: 10.1051/ matecconf/ 20152203001 C Owned by the authors, published by EDP Sciences, 2015 Research and Implementation of Software Used for the Remote Control

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

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY A PATH FOR HORIZING YOUR INNOVATIVE WORK IMAGE ACQUISITION, COMPRESSION AND DECOMPRESSION USING ARM9 S. N. KALE 1, R. D.

More information

Design and Implementation of Aquarium Remote Automation Monitoring and Control System

Design and Implementation of Aquarium Remote Automation Monitoring and Control System Design and Implementation of Aquarium Remote Automation Monitoring and Control System Yinchi Ma 1,2,* and Wen Ding 1,2 1 Beijing Fisheries Research Institute, Beijing, 100068, China 2 National Engineering

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

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

Design of Remote Video Monitoring and Motion Detection System Based on ARM-Linux Platform and HTTP Protocol with SMS Capability

Design of Remote Video Monitoring and Motion Detection System Based on ARM-Linux Platform and HTTP Protocol with SMS Capability Design of Remote Video Monitoring and Motion Detection System Based on ARM-Linux Platform and HTTP Protocol with SMS Capability B.Saidulu M.Tech (ES) Dept of ECE, Aurora s, Technological and Research Institute,

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

Design of Temperature and Humidity Data Acquisition System. Based on ARM

Design of Temperature and Humidity Data Acquisition System. Based on ARM 2017 International Conference on Computational Science and Engineering (ICCSE 2017) Design of Temperature and Humidity Data Acquisition System Based on ARM Pei-xue Liu 1, a, Yu-jie Chen 1, b, Bao-hua Jiang

More information

DELIVERY SERVER FOR INTEGRATING DIFFERENT VIDEO SURVEILLANCE NETWORK SYSTEMS

DELIVERY SERVER FOR INTEGRATING DIFFERENT VIDEO SURVEILLANCE NETWORK SYSTEMS DELIVERY SERVER FOR INTEGRATING DIFFERENT VIDEO SURVEILLANCE NETWORK SYSTEMS Shi Fang Bachelor of Computer Engineering/Master of Biomedical Engineering University of New South Wales, Australia fang.sam@gmail.com

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

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

Temperature Measurement and Control System Based on Embedded WEB

Temperature Measurement and Control System Based on Embedded WEB Temperature Measurement and Control System Based on Embedded WEB Limin Cai College of Physics and Information Engineering, Jianghan University Wuhan 430056, China Tel: 86-27-8422-6780 E-mail: cailm@yahoo.cn

More information

The Design and Implementation of Visual Intelligent Doorbell System Xiao LIU 1,a,Fensu SHI 1,b,Pan SHI 1,Zicong LI 1

The Design and Implementation of Visual Intelligent Doorbell System Xiao LIU 1,a,Fensu SHI 1,b,Pan SHI 1,Zicong LI 1 5th International Conference on Information Engineering for Mechanics and Materials (ICIMM 2015) The Design and Implementation of Visual Intelligent Doorbell System Xiao LIU 1,a,Fensu SHI 1,b,Pan SHI 1,Zicong

More information

Design of analog acquisition and storage system about airborne flight data recorder

Design of analog acquisition and storage system about airborne flight data recorder 3rd International Conference on Mechatronics, Robotics and Automation (ICMRA 2015) Design of analog acquisition and storage system about airborne flight data recorder Changyou Li 1, a, Pengfei Sun 1, b

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

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

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

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

Fingerprint Verification Terminal of Examination Information Based on Qt Mengtao Huang 1, Mengyao Han 2 2016 International Conference on Information Engineering and Communications Technology (IECT 2016) ISBN: 978-1-60595-375-5 Fingerprint Verification Terminal of Examination Information Based on Qt Mengtao

More information

The Implement of MPEG-4 Video Encoding Based on NiosII Embedded Platform

The Implement of MPEG-4 Video Encoding Based on NiosII Embedded Platform The Implement of MPEG-4 Video Encoding Based on NiosII Embedded Platform Fugang Duan School of Optical-Electrical and Computer Engineering, USST Shanghai, China E-mail: dfgvvvdfgvvv@126.com Zhan Shi School

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

Design of Tourism Information System with B/S and C/S Architecture based on Android and Web Platform

Design of Tourism Information System with B/S and C/S Architecture based on Android and Web Platform with B/S and C/S Architecture based on Android and Web Platform Tianjin University of Science & Technology, Tianjin, China E-mail: douxuechen@mail.tust.edu.cn Yonggang Yang a ; Weibin Zhou 1b ; Zilong

More information

Information Acquisition System Based on ZigBee and ARM

Information Acquisition System Based on ZigBee and ARM 295 A publication of CHEMICAL EGIEERIG TRASACTIOS VOL. 46, 2015 Guest Editors: Peiyu Ren, ancang Li, Huiping Song Copyright 2015, AIDIC Servizi S.r.l., ISB 978-88-95608-37-2; ISS 2283-9216 The Italian

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

Research on IOT Intelligent Gateway Service Mechanism and System Implementation

Research on IOT Intelligent Gateway Service Mechanism and System Implementation Research on IOT Intelligent Gateway Service Mechanism and System Implementation Qian XiaoJun*, Fan DongPing, Ji GengLin Nanjing Normal University, Nanjing, Jiangsu, China Abstract This paper discusses

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 Application of CAN Bus in Intelligent Substation Automation System Yuehua HUANG 1, a, Ruiyong LIU 2, b, Peipei YANG 3, C, Dongxu XIANG 4,D

The Application of CAN Bus in Intelligent Substation Automation System Yuehua HUANG 1, a, Ruiyong LIU 2, b, Peipei YANG 3, C, Dongxu XIANG 4,D International Power, Electronics and Materials Engineering Conference (IPEMEC 2015) The Application of CAN Bus in Intelligent Substation Automation System Yuehua HUANG 1, a, Ruiyong LIU 2, b, Peipei YANG

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 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

Jacquard Control System of Warp Knitting Machine Based on Embedded System

Jacquard Control System of Warp Knitting Machine Based on Embedded System IOP Conference Series: Materials Science and Engineering PAPER OPEN ACCESS Control System of Warp Knitting Machine Based on Embedded System To cite this article: Li Ce et al 2018 IOP Conf. Ser.: Mater.

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

Development of Home Remote Monitoring System Based on Mini2440 Board

Development of Home Remote Monitoring System Based on Mini2440 Board Development of Home Remote Monitoring System Based on Mini2440 Board Hongliang Song a, Jinxiao Cao b, Tongzhuang Liu c, Jinsong Li d College of Mechanical and Electronic Engineering, Shandong University

More information

Research and Realization of HART Protocol Based on Wireless Short Range Network Technology Kaiyuan Meng 1, a, Qingnian Cao 2, b

Research and Realization of HART Protocol Based on Wireless Short Range Network Technology Kaiyuan Meng 1, a, Qingnian Cao 2, b 2nd International Conference on Electrical, Computer Engineering and Electronics (ICECEE 2015) Research and Realization of Protocol Based on Short Range Network Technology Kaiyuan Meng 1, a, Qingnian Cao

More information

Research and Design of Universal Proportional Valve Controller

Research and Design of Universal Proportional Valve Controller Open Access Library Journal 2018, Volume 5, e4588 ISSN Online: 2333-9721 ISSN Print: 2333-9705 Research and Design of Universal Proportional Valve Controller Qiyu Zhang, Xiaoxiao Cao, Minghai Duan, Xiaohui

More information

Design and Implementation of Remote Medical Monitoring System for. Homecare

Design and Implementation of Remote Medical Monitoring System for. Homecare 2nd International Conference on Electronics, Network and Computer Engineering (ICENCE 2016) Design and Implementation of Remote Medical Monitoring System for Homecare Juan Zhong1, a, * Hua Liao2, b 1 College

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

Design and application of interface circuit of coal mine equipment intelligent management system TCP/IP module Xingshan LI1, a, Jian LU 2

Design and application of interface circuit of coal mine equipment intelligent management system TCP/IP module Xingshan LI1, a, Jian LU 2 6th International Conference on Machinery, Materials, Environment, Biotechnology and Computer (MMEBC 2016) Design and application of interface circuit of coal mine equipment intelligent management system

More information

Application of Redundant Backup Technology in Network Security

Application of Redundant Backup Technology in Network Security 2018 2nd International Conference on Systems, Computing, and Applications (SYSTCA 2018) Application of Redundant Backup Technology in Network Security Shuwen Deng1, Siping Hu*, 1, Dianhua Wang1, Limin

More information

Research and Implementation of the Key Technology of UAV Aerial Image. Transmission

Research and Implementation of the Key Technology of UAV Aerial Image. Transmission Research and Implementation of the Key Technology of UAV Aerial Image Transmission Fan Yijun No.1 Institute of Geological & Mineral Resources Survey of Henan Lluoyang, 471023, Henan Provincial Key Laboratory

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

The Design of the Embedded WEB Server Based on ENC28J60

The Design of the Embedded WEB Server Based on ENC28J60 Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 2670 2674 Advanced in Control Engineering and Information Science The Design of the Embedded WEB Server Based on ENC28J60 Shisheng

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

Design and Implementation of Real-Time Data Exchange Software of Maneuverable Command Automation System

Design and Implementation of Real-Time Data Exchange Software of Maneuverable Command Automation System Design and Implementation of Real-Time Data Exchange Software of Maneuverable Command Automation System Shi Chuan, Zhang Yang and Zhou Yuefei 1 Introduction Command automation system provides an effective

More information

Intelligent Three-dimensional Layout Design of Video Cameras in Substations

Intelligent Three-dimensional Layout Design of Video Cameras in Substations 6th International Conference on Electronic, Mechanical, Information and Management (EMIM 2016) Intelligent Three-dimensional Layout Design of Video Cameras in Substations Zhengwei Chang1, a * and Xiaona

More information

The Design of Embedded Remote Intelligent Automotive Monitoring System based on GSM. Lijun Gao

The Design of Embedded Remote Intelligent Automotive Monitoring System based on GSM. Lijun Gao 2nd International Conference on Electrical, Computer Engineering and Electronics (ICECEE 2015) The Design of Embedded Remote Intelligent Automotive Monitoring System based on GSM Lijun Gao Beijing Information

More information

An Solution of Network Service Oriented Operator Network Intrusion Prevention

An Solution of Network Service Oriented Operator Network Intrusion Prevention International Symposium on Computers & Informatics (ISCI 2015) An Solution of Network Service Oriented Operator Network Intrusion Prevention Jie Li, Yang Li DIGITAL CHINA(CHINA)LIMITED, Beijing, China

More information

A Unified Data Publishing Protocol in Health Big Data Processing

A Unified Data Publishing Protocol in Health Big Data Processing 2017 2 nd International Conference on Computer Science and Technology (CST 2017) ISBN: 978-1-60595-461-5 A Unified Data Publishing Protocol in Health Big Data Processing Hui-jie ZHOU 1, a,* and Yong WANG

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

Research on Multi-service Unified Bearing Electric Power Communication Access Network Bao Feng1,a, Yang Li1, Yang Hu1, Yan Long2, Yongzhong Xie3

Research on Multi-service Unified Bearing Electric Power Communication Access Network Bao Feng1,a, Yang Li1, Yang Hu1, Yan Long2, Yongzhong Xie3 4th International Conference on Mechatronics, Materials, Chemistry and Computer Engineering (ICMMCCE 2015) Research on Multi-service Unified Bearing Electric Power Communication Access Bao Feng1,a, Yang

More information

Study on Jabber Be Applied to Video Diagnosis for Plant Diseases and Insect Pests

Study on Jabber Be Applied to Video Diagnosis for Plant Diseases and Insect Pests Study on Jabber Be Applied to Video Diagnosis for Plant Diseases and Insect Pests Wei Zhang *, JunFeng Zhang, Feng Yu, JiChun Zhao, and RuPeng Luan Agriculture and Forestry Academy of Beijing; Beijing

More information

Research and Design of Crypto Card Virtualization Framework Lei SUN, Ze-wu WANG and Rui-chen SUN

Research and Design of Crypto Card Virtualization Framework Lei SUN, Ze-wu WANG and Rui-chen SUN 2016 International Conference on Wireless Communication and Network Engineering (WCNE 2016) ISBN: 978-1-60595-403-5 Research and Design of Crypto Card Virtualization Framework Lei SUN, Ze-wu WANG and Rui-chen

More information

Performance Comparison and Analysis of Power Quality Web Services Based on REST and SOAP

Performance Comparison and Analysis of Power Quality Web Services Based on REST and SOAP 5th International Conference on Mechatronics, Materials, Chemistry and Computer Engineering (ICMMCCE 2017) Performance Comparison and Analysis of Power Quality Web Services Based on REST and SOAP Suxia

More information

Design of Wireless Sensing Virtual Cloud Desktop System Based on ARM-Linux

Design of Wireless Sensing Virtual Cloud Desktop System Based on ARM-Linux Design of Wireless Sensing Virtual Cloud Desktop System Based on ARM-Linux https://doi.org/10.3991/ijoe.v13i10.7743 Chunqing Han!! ", Lin Li Binzhou Tobacco Monopoly Bureau, Shandong, China hanchunqing0807@163.com

More information

Geospatial Information Service Based on Ad Hoc Network

Geospatial Information Service Based on Ad Hoc Network I. J. Communications, Network and System Sciences, 2009, 2, 91-168 Published Online May 2009 in SciRes (http://www.scirp.org/journal/ijcns/). Geospatial Information Service Based on Ad Hoc Network Fuling

More information

Hardware/Software Based a Smart Sensor Interface Device for Water Quality Monitoring in IoT Environment

Hardware/Software Based a Smart Sensor Interface Device for Water Quality Monitoring in IoT Environment Hardware/Software Based a Smart Sensor Interface Device for Water Quality Monitoring in IoT Environment Gaurav Tiwari 1 Dr. D. Y. Patil SOE/E&TC Department, Pune, India Email: gauravshyamjitiwari@gmail.com

More information

RESEARCH OF SLUICE MONITORING SYSTEM BASED ON GPRS AND PLC

RESEARCH OF SLUICE MONITORING SYSTEM BASED ON GPRS AND PLC RESEARCH OF SLUICE MONITORING SYSTEM BASED ON GPRS AND PLC Qiulan Wu *, Yong Liang, Xia Geng, Wenjie Li, Yanling Li School of Information Science and Engineering, Shandong Agricultural University, Taian,

More information

Design in the Authentication and Billing System Based on Radius and 802.1x Protocol

Design in the Authentication and Billing System Based on Radius and 802.1x Protocol International Symposium on Computers & Informatics (ISCI 2015) Design in the Authentication and Billing System Based on Radius and 802.1x Protocol Chaoyi Chen 1, a,jianyong Zhang 2,b,Junli Liu 3,c 1,2,3

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

GLOBAL COMMAND Security Anywhere MANAGEMENT SYSTEM

GLOBAL COMMAND Security Anywhere MANAGEMENT SYSTEM GLOBAL Security COMMAND Anywhere MANAGEMENT SYSTEM UNISIGHT Software SUMMARY SYSTEM FEATURES SYSTEM FUNCTIONS GCMS INTRODUCTION DVR SOFTWARE COMPONENTS Summary The Global Command Management System (GCMS)

More information

Realization of IEC Protocol in DTU

Realization of IEC Protocol in DTU Realization of IEC 60870-5-104 Protocol in DTU Weiqing Tao, Xiong Chen and Qiaoyun Zhang Abstract According to the IEC 60870-5-101 and IEC 60870-5-104 telecontrol protocol published by IEC, the corresponding

More information

Design and Implementation of Smart Gateway Based on Wireless Communication Technique

Design and Implementation of Smart Gateway Based on Wireless Communication Technique International Conference on Education, Management and Computer Science (ICEMC 2016) Design and Implementation of Smart Gateway Based on Wireless Communication Technique Zhongxiang Xiao1, a, Tengxue Rong1,

More information

Network Implementation

Network Implementation CS 256/456: Operating Systems Network Implementation John Criswell! University of Rochester 1 Networking Overview 2 Networking Layers Application Layer Format of Application Data Transport Layer Which

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

RECONFIGURABLE SMART SENSOR INTERFACE for INDUSTRIES USING ARMBASED ON IOT

RECONFIGURABLE SMART SENSOR INTERFACE for INDUSTRIES USING ARMBASED ON IOT RECONFIGURABLE SMART SENSOR INTERFACE for INDUSTRIES USING ARMBASED ON IOT Prof. V.L.Jogdand 1, Pallavi P. Karamkar 2, 1 Asst. Prof, E&TC, DPCOE PUNE 2 ME STUDENT, E & TC, DPCOE PUNE, ABSTRACT Configurable

More information

Research on Socket Communication System Based on Zigbee Wireless Sensor Network

Research on Socket Communication System Based on Zigbee Wireless Sensor Network Research on Socket Communication System Based on Zigbee Wireless Sensor Network Yujia Wang School of Electrical and Information Engineering;Beijing University of Civil Engineering and Architecture Beijing,

More information

AN WIRELESS COLLECTION AND MONITORING SYSTEM DESIGN BASED ON ARDUINO. Lu Shaokun 1,e*

AN WIRELESS COLLECTION AND MONITORING SYSTEM DESIGN BASED ON ARDUINO. Lu Shaokun 1,e* Advanced Materials Research Online: 2014-06-25 ISSN: 1662-8985, Vols. 971-973, pp 1076-1080 doi:10.4028/www.scientific.net/amr.971-973.1076 2014 Trans Tech Publications, Switzerland AN WIRELESS COLLECTION

More information

Cemetery Navigation and Information Query System Based on Android and Java Web

Cemetery Navigation and Information Query System Based on Android and Java Web 2017 3rd International Conference on Computational Systems and Communications (ICCSC 2017) Cemetery Navigation and Information Query System Based on Android and Java Web Chao Ding1, a, Yongjie Yang1, b,

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

Application of Co-simulation Technology Based on LabVIEW and Multisim in Electronic Design

Application of Co-simulation Technology Based on LabVIEW and Multisim in Electronic Design Application of Co-simulation Technology Based on LabVIEW and Multisim in Electronic Design Yuan Wang 1, *, Liangcheng Wang 1,Xiaolan Liu 2,3, *, Mi Zhou 1 1. School of Science and Technology, Sanya College,

More information

A High-Speed Wireless Transmission Scheme for Wireless Sensor Network

A High-Speed Wireless Transmission Scheme for Wireless Sensor Network A High-Speed Wireless Transmission Scheme for Wireless Sensor Network College of Information Engineering, North China University of Technology Beijing, 100144, China Email: mali@ncut.edu.cn Abstract Along

More information

Analysis and Design of the Client in the Supervision System Based on Android

Analysis and Design of the Client in the Supervision System Based on Android 2015 AASRI International Conference on Industrial Electronics and Applications (IEA 2015) Analysis and Design of the Client in the Supervision System Based on Android Shifeng Wu, Luo Zhong, Manli Hu, Huazhu

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

The Application of Wireless Sensor in Aquaculture Water Quality Monitoring

The Application of Wireless Sensor in Aquaculture Water Quality Monitoring The Application of Wireless Sensor in Aquaculture Water Quality Monitoring Wen Ding, Yinchi Ma Beijing Fisheries Research Institute, Beijing, 100068, China {dingwen, mayinchi}@bjfishery.com Abstract. The

More information

Design And Implementation of Remote Video-Audio Communication Module in The Commanding-Dispatching System of Transmitting Stations

Design And Implementation of Remote Video-Audio Communication Module in The Commanding-Dispatching System of Transmitting Stations International Forum on Management, Education and Information Technology Application (IFMEITA 2016) Design And Implementation of Remote Video-Audio Communication Module in The Commanding-Dispatching System

More information

International Conference on Information Sciences, Machinery, Materials and Energy (ICISMME 2015)

International Conference on Information Sciences, Machinery, Materials and Energy (ICISMME 2015) International Conference on Information Sciences, Machinery, Materials and Energy (ICISMME 2015) ARINC - 429 airborne communications transceiver system based on FPGA implementation Liu Hao 1,Gu Cao 2,MA

More information

An Efficient Image Processing Method Based on Web Services for Mobile Devices

An Efficient Image Processing Method Based on Web Services for Mobile Devices An Efficient Image Processing Method Based on Web Services for Mobile Devices Yi Liang a,b a Tianjin Key Lab of Intelligent Computing & Novel Software Technology, Tianjin University of Technology Tianjin,

More information

Design and Implementation of Intelligent Home Control System under the Concept of IoT

Design and Implementation of Intelligent Home Control System under the Concept of IoT 2018 2nd International Conference on Systems, Computing, and Applications (SYSTCA 2018) Design and Implementation of Intelligent Home Control System under the Concept of IoT Weiliang Li1, Hao Yu2, Yantong

More information

A Design of Greenhouse Remote Monitoring System Based on WSN and WEB

A Design of Greenhouse Remote Monitoring System Based on WSN and WEB A Design of Greenhouse emote Monitoring System Based on WSN and WEB Jun Wang 1,2 and Gang Liu 1 1 Key Laboratory for Modern Precision Agriculture System Integration esearch, Ministry of Education, China

More information

A smart Home Security system based on ARM9

A smart Home Security system based on ARM9 A smart Home Security system based on ARM9 B. Srinivasa sarma, Dr. P. Sudhakar Reddy, IEEE member Department of Electronics and communications engineering, Sri Kalahastheeswara Institute of Technology,

More information

BioTechnology. An Indian Journal FULL PAPER. Trade Science Inc. Study on secure data storage based on cloud computing ABSTRACT KEYWORDS

BioTechnology. An Indian Journal FULL PAPER. Trade Science Inc. Study on secure data storage based on cloud computing ABSTRACT KEYWORDS [Type text] [Type text] [Type text] ISSN : 0974-7435 Volume 10 Issue 22 BioTechnology 2014 An Indian Journal FULL PAPER BTAIJ, 10(22), 2014 [13778-13783] Study on secure data storage based on cloud computing

More information

Design and Implementation of Embedded Bluetooth Multicast System

Design and Implementation of Embedded Bluetooth Multicast System Design and Implementation of Embedded Bluetooth Multicast System T. Yashoda Vani #1, S. Srinivasa Rao *2, G. S. Kedarnath #3 # 1 Student,Dept of ECE, Aurora s Technological and Research Institute, Hyderabad.

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 of Embedded web Video Monitoring System Based on DaVinci Technology

Design of Embedded web Video Monitoring System Based on DaVinci Technology IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, Volume 11, Issue 6 Ver. II (Nov. Dec. 2016), PP 37-44 www.iosrjournals.org Design of Embedded web

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 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

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

Image Quality Assessment-Oriented Frame Capture of Video Phone over 3G system

Image Quality Assessment-Oriented Frame Capture of Video Phone over 3G system Image Quality Assessment-Oriented Frame Capture of Video Phone over 3G system Chao Feng, Lianfen Huang*, Jianan Lin and Jinjin Li School of Information Science and Technology, Xiamen University Xiamen,

More information

Realization of Time Synchronization Server Based on C/S

Realization of Time Synchronization Server Based on C/S Computer System Networking and Telecommunications Original Research Article Realization of Time Synchronization Server Based on C/S Jidong Zhou,Yanyan Zheng,Yonghui Guo School of Computer and Information,

More information

A Reconfigurable Smart Sensor Interface for Industrial WSN in IOT Environment

A Reconfigurable Smart Sensor Interface for Industrial WSN in IOT Environment A Reconfigurable Smart Sensor Interface for Industrial WSN in IOT Environment 1 R N S Sunil Veda ; 2 N.Veeraih & 3 S.Neelima 1 M.Tech (VLSI & Embedded System), 2 Asst.Professor, 3 HOD, Assoc.Proffesor,

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

Design and Implementation of LED Display Screen Controller based on STM32 and FPGA Chi Zhang 1,a, Xiaoguang Wu 1,b and Chengjun Zhang 1,c

Design and Implementation of LED Display Screen Controller based on STM32 and FPGA Chi Zhang 1,a, Xiaoguang Wu 1,b and Chengjun Zhang 1,c Applied Mechanics and Materials Online: 2012-12-27 ISSN: 1662-7482, Vols. 268-270, pp 1578-1582 doi:10.4028/www.scientific.net/amm.268-270.1578 2013 Trans Tech Publications, Switzerland Design and Implementation

More information