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

Size: px
Start display at page:

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

Transcription

1 Applied Mechanics and Materials Online: ISSN: , Vols , pp doi: / Trans Tech Publications, Switzerland Research on the Application of Digital Images Based on the Computer Graphics Jing Li 1, Bin Hu 2 1 Zhejiang Business Technology Institute, Ningbo, China 2 Jiangxi College of Applied Technology, Ganzhou, China lijing424@yeah.net Keywords: ARM; Linux; Digital art images; Frame difference Abstract. Digital art images which is based on the computer graphics is integrated with computer graphics technology and network transmission technology. The design of the system is a new application in the field of digital art. This paper chooses ARM9 (S3C2440) processor as the hardware platform, and computer graphics Linux operating system as the software platform. Then it puts forward an improved algorithm of digital art images based on frame difference, and completes the design of digital art images system that can be applied to the community monitoring or bank safety unattended. The experimental results show that the system can extract the background images from the sequence video, so as to improve the quality of digital art images. Introduction With social progress and economic development, people's sense of security is more and more strong, and the safety of property required is gradually increased [1]. Due to the traditional video surveillance system is very complicated, and has higher power consumption and spending, also needs people on duty, yet it hasn t been unable to meet the modern requirements of video monitoring field. Digital art image system which is on the basis of computer graphics has been widely applied in real life with the development of computer, the mature of computer graphics technology and the innovation of communication technology [2]. The core processor of this system is ARM9, the operating system is computer graphics Linux, and the core algorithm is the improved algorithm of digital art images, which can implement the digital art images for the scene, and achieve the goal of unattended. Software Platform Linux operating system has provided basis for the system software platform, built the cross compile environment in the PC machine, and installed cross compiler arm-linux-gcc, so as to complete cross-compiler [3]. The boot loader is transplanted on the ARM board. Flash storage device has stored almost all of the data in computer graphics system, and obtained the transplanted kernel of the target board, and the kernel is compiled according to the ARM architecture. YAFFS computer graphics file system which is designed for Flash, has a fast storage speed, a less memory consumption, and a better portability, further it can store the program and the module into the root file system, so that the successfully compiled application program in the PC which is ported to the ARM board, has a normal operation, and also can be restored after power-off [4,5]. It can make YAFFS file system image by mkyaffsimage. In the process of system operation, the storage space of Nor Flash can t meet the long time work state with the stored images being more and more, so the detected moving target image should be transmitted to the monitoring terminal through network to achieve storage, which can save resources and improve the utilization rate. The flow chart of system software is shown in Figure 1. All rights reserved. No part of contents of this paper may be reproduced or transmitted in any form or by any means without the written permission of Trans Tech Publications, (# , Pennsylvania State University, University Park, USA-17/09/16,00:39:58)

2 Applied Mechanics and Materials Vols Linux PC operating system Network transmission Real time alarm Audio player Image processing Video capture Camera driver Hardware Platform Fig. 1 Flow chart of system software ARM9 processor S3C3440 which is chose as the system processor has the high frequency of 533MHz, the interface of digital camera, the interface of AC97 codec, and independent 16KB instruction cache and 16KB data cache. Processor integrates a complete hardware resources including NOR Flash, NAND Flash, IDE interface, 10M card CS8900, 100M card DM9000, extended serial chip 16C2550, SDRAM, a channel USB equipment, etc. The structure of system hardware is as shown in Figure 2. Fig. 2 The structure of system hardware NAND Flash is used to save the data of system operating in the process of operating system, application program, user data. This system NAND Flash adopts K9F1208U0M that has 64MB capacity and 2.7V-3.6V programming voltage, and can automatically program and erase command, address, and data reuse IO port, protect hardware data, also has a good reliability, and is easily operated [6]. In this system, bootloader guiding operation programs, Linux kernel source code and Yaffs computer graphics file system are stored in the NAND Flash storage device. SDRAM is with a dual storage structure. In the system, after the power is on, the kernel source code is copied from Flash to SDRAM, read, storage and execution of program are in SDRAM, so the speed of reading and writing CPU data can be greatly improved. Algorithm of Digital Art Image Background difference method, optical flow method, frame difference method are commonly used algorithms for digital art images. Generally, optical flow which has a big time-consuming, and

3 5000 Mechatronics Engineering, Computing and Information Technology complex calculation, can t satisfy the requirements of accuracy and real-time. Background subtraction has a simple principle that can fast and accurately detect moving targets, and can extract a complete moving target, but it is not easy to directly obtain the background images, and it is also influenced by the variation of light, temperature and other external conditions [7]. The algorithm of frame difference is easy to be implemented, and that complexity of programming is low, which can adapt to changes in the external environment condition, and has a good stability. The interval of time between frames decides the extracted moving object region. In the stationary camera, this paper adopts an improved digital art images algorithm which chooses frame difference as the core [8]. The algorithm mainly includes 4 parts: (a) the background image modeling; (b) algorithm detection to obtain the moving target; (c) frame difference between moving target and background image; (d) get the complete moving target image from the initial moving object. Flow chart of the algorithm is shown in Figure 3. Start Background extraction Original image Frame difference Changed area Changed area and background difference Background area Morphological processing Moving target End Background area No To determine whether the foreground area Yes Fig. 3 Flow chart of the algorithm (1) the background image modeling: the RGB color image sequence is treated by graying, so as to obtain the gray-scale image sequence, then it calculates the occurred maximum frequency of each pixel in the gray-scale image sequences, and the maximum frequency is denoted as the gray value, finally it obtains the background image. (2) extraction of moving target: frame difference is carried out between two adjacent frames in the video image sequence to get image of moving target areas, then the image is processed by difference with background image sequence to get moving target image, finally the calculation between moving target image and the selected threshold is carried out to get the binarized image. (a) adjacent two frames of each pixel in Mk(i,j) are carried out the difference, so it gets the frame difference image Nk(i,j): Nk(i,j)= Mk(i,j)- Mk-1(i,j). (1) (b) difference is carried out between frame difference image Mk(i,j) and background image Bk(i,j)to get the moving target Wk(i,j): Wk(i,j)= Mk(i,j)- Nk(i,j). (2) (c) moving target Wk(i,j)is changed into the binarized image S(i,j): S(i,j)= 0 (Wk(i,j) Th). (3) S(i,j)= 1 (Wk(i,j)<Th). (4)

4 Applied Mechanics and Materials Vols Where S denotes the binarized output image, 0 and 1 respectively denotes the foreground and background, and Th denotes the threshold. (3) to obtain the complete moving target image: the obtained binarized image will have the edge point and the target lost, so it is necessary to get the binarized image to be removed the noise by median filtering, and then using mathematical treatment to eliminate the target hole, finally it can obtain the complete moving target image. This paper uses TCP/IP protocol of the socket to transmit image data, which is a collection of a lot of network protocols. TCP/IP protocol adopts the request / response mode, and the concrete realization process is that firstly, the client calls the socket function to establish a socket, and then it calls bind () function to bind the local IP address and port number, at last, it calls listen () function to monitor the connection request sent by host computer. TCP/IP protocol uses "three handshake" method to complete a connection when it needs to establish the connection. After the image data is transmitted and received through the send () function and recv () function, the pictures stored in the development board are copied to the main contents of client, so the client browser can access the pictures that come from the main contents of server to see the moving target image. Experimental Results The whole system has been made experiments within the scene. After the system power is on, and the system is stable, the image in camera view is changed, which makes the monitoring picture produce contrast, so as to the system would play music alarm [9]. The displayed pictures are shown in Figure 3. Figure4(a) denotes the extracted original background image. Figure4(b) denotes the moving image of the next frame. Figure4(c) denotes the extracted target image after the extraction of target and morphological processing. Figure4(d) denotes the results of detecting Figure(b) algorithm by traditional frame difference method. (a) Background image (b) Moving area image (c) Moving target image (d) Traditional frame difference method Fig. 4 Experimental results

5 5002 Mechatronics Engineering, Computing and Information Technology The experimental results show the detection of the improved moving target algorithm of random screenshots from video sequences image. The moving target extracted by traditional frame difference method is vague and incomplete [10]. The algorithm proposed in the paper can completely lock the moving targets, and the detection has a good effect, which can realize the intelligent monitoring purposes. In addition, the client can download the pictures in the storage device by HTTP protocol, view the results, and implement remote video monitoring. Summary The digital art image system designed in this paper which chose ARM9 as the core chip, computer graphics Linux as operating system, the traditional frame difference method as the basis, realized the improvement of digital art images algorithm. After the background extraction, target extraction, noise filtering, morphological processing, and repeated experiments, the algorithm could well segment the foreground target of motion, which demonstrated the robustness of the method. This method had a better detection effects and high accuracy, and was easy to implement and achieved unattended goal. The system had some characteristics with low cost, low power consumption, small size, extensible function, which was applicable to the field of intelligent monitoring, video analysis, and had great application prospect. References [1] Dongshan Wei. Computer graphics Linux application development completely manual [M]. Beijing: People's Posts and Telecommunications Press, 2011: [2] Jianquan Yang, Hua Liang, Chengyou Wang. Development and current status of video surveillance technology [J]. Modern electronics technique, 2012(1): [3] Shichong Dong, Tianzhen Wang, Gang Xu. The motion detection in video images [J]. Journal of Wuhan University of Technology, 2011(3): [4] Jie Yu. Development of USB camera driver in Linux system [J]. Application of electronic technique, 2011(11): [5] Zhongmei Ma, Guangyun Ma, Yinghui Xu. ARM computer graphics processor architecture and application [M]. Beijing: Beihang University press, 2011: [6] Gang Li, Shangbin Qiu, Ling Lin, etc. Digital art image method based on background difference method and frame difference method [J]. Chinese Journal of scientific instrument, 2012(1): [7] Zhiling Yang, Kai Wang. Digital image acquisition and processing and application [M]. Beijing: People's Posts and Telecommunications Press, 2011: [8] Tianmiao Wang. Design and development of computer graphics system [M]. Beijing: Tsinghua University press, 2011: [9] Hai Han. Computer graphics implementation of digital art images and tracking system [D]. Dalian: Dalian University of Technology, 2012: [10] Ruijuan Zhang. Research on digital art image and tracking algorithm based on video image [D]. Dalian: Dalian University of Technology, 2011:36-74.

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

Research Of Data Model In Engineering Flight Simulation Platform Based On Meta-Data Liu Jinxin 1,a, Xu Hong 1,b, Shen Weiqun 2,c

Research Of Data Model In Engineering Flight Simulation Platform Based On Meta-Data Liu Jinxin 1,a, Xu Hong 1,b, Shen Weiqun 2,c Applied Mechanics and Materials Online: 2013-06-13 ISSN: 1662-7482, Vols. 325-326, pp 1750-1753 doi:10.4028/www.scientific.net/amm.325-326.1750 2013 Trans Tech Publications, Switzerland Research Of Data

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

A Template-Matching-Based Fast Algorithm for PCB Components Detection Haiming Yin

A Template-Matching-Based Fast Algorithm for PCB Components Detection Haiming Yin Advanced Materials Research Online: 2013-05-14 ISSN: 1662-8985, Vols. 690-693, pp 3205-3208 doi:10.4028/www.scientific.net/amr.690-693.3205 2013 Trans Tech Publications, Switzerland A Template-Matching-Based

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

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

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 RTP Encapsulation based on Frame Type Method for AVS Video

The RTP Encapsulation based on Frame Type Method for AVS Video Applied Mechanics and Materials Online: 2012-12-27 ISSN: 1662-7482, Vols. 263-266, pp 1803-1808 doi:10.4028/www.scientific.net/amm.263-266.1803 2013 Trans Tech Publications, Switzerland The RTP Encapsulation

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

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

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

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

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

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

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

The Design of Wireless Data Collector based on WIA-PA Ligang Li 1,2,a, Zhongfeng Wang 1,2,b, Jianlong Huang 1,2,c

The Design of Wireless Data Collector based on WIA-PA Ligang Li 1,2,a, Zhongfeng Wang 1,2,b, Jianlong Huang 1,2,c Advanced Materials Research Online: 04-06-5 ISSN: 66-8985, Vols. 97-97, pp 79-794 doi:0.408/www.scientific.net/amr.97-97.79 04 Trans Tech Publications, Switzerland The Design of Wireless Data Collector

More information

The Analysis of the Loss Rate of Information Packet of Double Queue Single Server in Bi-directional Cable TV Network

The Analysis of the Loss Rate of Information Packet of Double Queue Single Server in Bi-directional Cable TV Network Applied Mechanics and Materials Submitted: 2014-06-18 ISSN: 1662-7482, Vol. 665, pp 674-678 Accepted: 2014-07-31 doi:10.4028/www.scientific.net/amm.665.674 Online: 2014-10-01 2014 Trans Tech Publications,

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

Research on Data Transmission and Information Integration Technology in the Distributed Wind Farm SCADA System

Research on Data Transmission and Information Integration Technology in the Distributed Wind Farm SCADA System Applied Mechanics and Materials Online: 2014-03-24 ISSN: 1662-7482, Vols. 543-547, pp 2641-2646 doi:10.4028/www.scientific.net/amm.543-547.2641 2014 Trans Tech Publications, Switzerland Research on Data

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

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

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

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

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

Research of Video Surveillance and Diagnosis System for Plant Diseases Based on DM6446 Wang Xiuqing 1, a Qie Xu 1, b Zhang Chunxia 1, c Zhao Na 1, d

Research of Video Surveillance and Diagnosis System for Plant Diseases Based on DM6446 Wang Xiuqing 1, a Qie Xu 1, b Zhang Chunxia 1, c Zhao Na 1, d Applied Mechanics and Materials Online: 2013-08-30 ISSN: 1662-7482, Vols. 373-375, pp 892-896 doi:10.4028/www.scientific.net/amm.373-375.892 2013 Trans Tech Publications, Switzerland Research of Video

More information

Research on QR Code Image Pre-processing Algorithm under Complex Background

Research on QR Code Image Pre-processing Algorithm under Complex Background Scientific Journal of Information Engineering May 207, Volume 7, Issue, PP.-7 Research on QR Code Image Pre-processing Algorithm under Complex Background Lei Liu, Lin-li Zhou, Huifang Bao. Institute of

More information

Design and Implementation of MP3 Player Based on FPGA Dezheng Sun

Design and Implementation of MP3 Player Based on FPGA Dezheng Sun Applied Mechanics and Materials Online: 2013-10-31 ISSN: 1662-7482, Vol. 443, pp 746-749 doi:10.4028/www.scientific.net/amm.443.746 2014 Trans Tech Publications, Switzerland Design and Implementation of

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

The Design and Implementation of the Unmanned Vehicle Fixed-point Tracking System Liang-liang CHEN, Yu-ying LIU and Chun ZHAN

The Design and Implementation of the Unmanned Vehicle Fixed-point Tracking System Liang-liang CHEN, Yu-ying LIU and Chun ZHAN 2017 2nd International Conference on Environmental Science and Energy Engineering (ICESEE 2017) ISBN: 978-1-60595-417-2 The Design and Implementation of the Unmanned Vehicle Fixed-point Tracking System

More information

Research on Full-text Retrieval based on Lucene in Enterprise Content Management System Lixin Xu 1, a, XiaoLin Fu 2, b, Chunhua Zhang 1, c

Research on Full-text Retrieval based on Lucene in Enterprise Content Management System Lixin Xu 1, a, XiaoLin Fu 2, b, Chunhua Zhang 1, c Applied Mechanics and Materials Submitted: 2014-07-18 ISSN: 1662-7482, Vols. 644-650, pp 1950-1953 Accepted: 2014-07-21 doi:10.4028/www.scientific.net/amm.644-650.1950 Online: 2014-09-22 2014 Trans Tech

More information

A Compatible Public Service Platform for Multi-Electronic Certification Authority

A Compatible Public Service Platform for Multi-Electronic Certification Authority Applied Mechanics and Materials Submitted: 2014-04-26 ISSN: 1662-7482, Vol. 610, pp 579-583 Accepted: 2014-05-26 doi:10.4028/www.scientific.net/amm.610.579 Online: 2014-08-11 2014 Trans Tech Publications,

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

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

Shape Optimization Design of Gravity Buttress of Arch Dam Based on Asynchronous Particle Swarm Optimization Method. Lei Xu

Shape Optimization Design of Gravity Buttress of Arch Dam Based on Asynchronous Particle Swarm Optimization Method. Lei Xu Applied Mechanics and Materials Submitted: 2014-08-26 ISSN: 1662-7482, Vol. 662, pp 160-163 Accepted: 2014-08-31 doi:10.4028/www.scientific.net/amm.662.160 Online: 2014-10-01 2014 Trans Tech Publications,

More information

Study on the Quantitative Vulnerability Model of Information System based on Mathematical Modeling Techniques. Yunzhi Li

Study on the Quantitative Vulnerability Model of Information System based on Mathematical Modeling Techniques. Yunzhi Li Applied Mechanics and Materials Submitted: 2014-08-05 ISSN: 1662-7482, Vols. 651-653, pp 1953-1957 Accepted: 2014-08-06 doi:10.4028/www.scientific.net/amm.651-653.1953 Online: 2014-09-30 2014 Trans Tech

More information

The Application Analysis and Network Design of wireless VPN for power grid. Wang Yirong,Tong Dali,Deng Wei

The Application Analysis and Network Design of wireless VPN for power grid. Wang Yirong,Tong Dali,Deng Wei Applied Mechanics and Materials Online: 2013-09-27 ISSN: 1662-7482, Vols. 427-429, pp 2130-2133 doi:10.4028/www.scientific.net/amm.427-429.2130 2013 Trans Tech Publications, Switzerland The Application

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

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

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

Design of the Software for Wirelessly Intercepting Voices

Design of the Software for Wirelessly Intercepting Voices Advanced Materials Research Online: 2014-05-23 ISSN: 1662-8985, Vols. 926-930, pp 2470-2473 doi:10.4028/www.scientific.net/amr.926-930.2470 2014 Trans Tech Publications, Switzerland Design of the Software

More information

Simulation Technology of Light Effect Based on Catia and Workbench Software HongXia Hu

Simulation Technology of Light Effect Based on Catia and Workbench Software HongXia Hu Applied Mechanics and Materials Online: 2014-03-24 ISSN: 1662-7482, Vols. 543-547, pp 3218-3221 doi:10.4028/www.scientific.net/amm.543-547.3218 2014 Trans Tech Publications, Switzerland Simulation Technology

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

An algorithm of lips secondary positioning and feature extraction based on YCbCr color space SHEN Xian-geng 1, WU Wei 2

An algorithm of lips secondary positioning and feature extraction based on YCbCr color space SHEN Xian-geng 1, WU Wei 2 International Conference on Advances in Mechanical Engineering and Industrial Informatics (AMEII 015) An algorithm of lips secondary positioning and feature extraction based on YCbCr color space SHEN Xian-geng

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

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

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 of Liquid Level Control System Based on Simulink and PLC

Design of Liquid Level Control System Based on Simulink and PLC 2017 3rd International Symposium on Mechatronics and Industrial Informatics (ISMII 2017) ISBN: 978-1-60595-501-8 Design of Liquid Level Control System Based on Simulink and PLC Xiuwei FU 1,a, Ying QI 2,b

More information

Research of 3D parametric design system of worm drive based on Pro/E. Hongbin Niu a, Xiaohua Li b

Research of 3D parametric design system of worm drive based on Pro/E. Hongbin Niu a, Xiaohua Li b Advanced Materials Research Online: 2013-06-27 ISSN: 1662-8985, Vols. 712-715, pp 1107-1110 doi:10.4028/www.scientific.net/amr.712-715.1107 2013 Trans Tech Publications, Switzerland Research of 3D parametric

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

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

THE DESIGN OF EMBEDDED VIDEO SUPERVISION SYSTEM OF VEGETABLE SHED

THE DESIGN OF EMBEDDED VIDEO SUPERVISION SYSTEM OF VEGETABLE SHED THE DESIGN OF EMBEDDED VIDEO SUPERVISION SYSTEM OF VEGETABLE SHED Jun Sun 1, 2, *, Mingxing Liang 2, Weijun Chen 2, Bin Zhang 3 1 Key Laboratory of Modern Agricultural Equipment and Technology, inistry

More information

Study on Intelligent Transportation Moving Targets Detection Based on. background Image Difference Method

Study on Intelligent Transportation Moving Targets Detection Based on. background Image Difference Method International Refereed Journal of Engineering and Science (IRJES) ISSN (Online) 2319-183X, (Print) 2319-1821 Volume 5, Issue 7 (July 2016), PP.01-05 Study on Intelligent Transportation Moving Targets Detection

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

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

result, it is very important to design a simulation system for dynamic laser scanning

result, it is very important to design a simulation system for dynamic laser scanning 3rd International Conference on Multimedia Technology(ICMT 2013) Accurate and Fast Simulation of Laser Scanning Imaging Luyao Zhou 1 and Huimin Ma Abstract. In order to design a more accurate simulation

More information

An Adaptive Threshold LBP Algorithm for Face Recognition

An Adaptive Threshold LBP Algorithm for Face Recognition An Adaptive Threshold LBP Algorithm for Face Recognition Xiaoping Jiang 1, Chuyu Guo 1,*, Hua Zhang 1, and Chenghua Li 1 1 College of Electronics and Information Engineering, Hubei Key Laboratory of Intelligent

More information

Journal of Chemical and Pharmaceutical Research, 2015, 7(3): Research Article

Journal of Chemical and Pharmaceutical Research, 2015, 7(3): Research Article Available online www.jocpr.com Journal of Chemical and Pharmaceutical esearch, 015, 7(3):175-179 esearch Article ISSN : 0975-7384 CODEN(USA) : JCPC5 Thread image processing technology research based on

More information

A Real-time Detection for Traffic Surveillance Video Shaking

A Real-time Detection for Traffic Surveillance Video Shaking International Conference on Mechatronics, Control and Electronic Engineering (MCE 201) A Real-time Detection for Traffic Surveillance Video Shaking Yaoyao Niu Zhenkuan Pan e-mail: 11629830@163.com e-mail:

More information

Automatic Shadow Removal by Illuminance in HSV Color Space

Automatic Shadow Removal by Illuminance in HSV Color Space Computer Science and Information Technology 3(3): 70-75, 2015 DOI: 10.13189/csit.2015.030303 http://www.hrpub.org Automatic Shadow Removal by Illuminance in HSV Color Space Wenbo Huang 1, KyoungYeon Kim

More information

An Angle Estimation to Landmarks for Autonomous Satellite Navigation

An Angle Estimation to Landmarks for Autonomous Satellite Navigation 5th International Conference on Environment, Materials, Chemistry and Power Electronics (EMCPE 2016) An Angle Estimation to Landmarks for Autonomous Satellite Navigation Qing XUE a, Hongwen YANG, Jian

More information

Real-time Aerial Targets Detection Algorithm Based Background Subtraction

Real-time Aerial Targets Detection Algorithm Based Background Subtraction Real-time Aerial Targets Detection Algorithm Based Background Subtraction Mao Zheng, Zhen-Rong Wu, Saidsho Bakhdavlatov, Jing-Song Qu, Hong-Yan Li, Jian -Jian Yuan (College of Electronic and control Engineering,

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

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

Design of SCADA power Distribution Monitoring System based on PLC and Configuration Software

Design of SCADA power Distribution Monitoring System based on PLC and Configuration Software Proceedings of 2012 International Conference on Mechanical Engineering and Material Science (MEMS 2012) Design of SCADA power Distribution Monitoring System based on PLC and Configuration Software Pingze

More information

A design of real-time image processing platform based on TMS320C6678

A design of real-time image processing platform based on TMS320C6678 Advanced Materials Research Online: 2014-06-25 ISSN: 1662-8985, Vols. 971-973, pp 1454-1458 doi:10.4028/www.scientific.net/amr.971-973.1454 2014 Trans Tech Publications, Switzerland A design of real-time

More information

2 Proposed Methodology

2 Proposed Methodology 3rd International Conference on Multimedia Technology(ICMT 2013) Object Detection in Image with Complex Background Dong Li, Yali Li, Fei He, Shengjin Wang 1 State Key Laboratory of Intelligent Technology

More information

Applied Mechanics and Materials Vol

Applied Mechanics and Materials Vol Applied Mechanics and Materials Online: 2014-02-27 ISSN: 1662-7482, Vol. 532, pp 280-284 doi:10.4028/www.scientific.net/amm.532.280 2014 Trans Tech Publications, Switzerland A Practical Real-time Motion

More information

Utilizing Restricted Direction Strategy and Binary Heap Technology to Optimize Dijkstra Algorithm in WebGIS

Utilizing Restricted Direction Strategy and Binary Heap Technology to Optimize Dijkstra Algorithm in WebGIS Key Engineering Materials Online: 2009-10-08 ISSN: 1662-9795, Vols. 419-420, pp 557-560 doi:10.4028/www.scientific.net/kem.419-420.557 2010 Trans Tech Publications, Switzerland Utilizing Restricted Direction

More information

Web-Based Monitoring for Frequency Converters with USS Interface

Web-Based Monitoring for Frequency Converters with USS Interface Advanced Materials Research Online: 2014-06-25 ISSN: 1662-8985, Vols. 971-973, pp 1866-1869 doi:10.4028/www.scientific.net/amr.971-973.1866 2014 Trans Tech Publications, Switzerland Web-Based Monitoring

More information

MOVING OBJECT DETECTION USING BACKGROUND SUBTRACTION ALGORITHM USING SIMULINK

MOVING OBJECT DETECTION USING BACKGROUND SUBTRACTION ALGORITHM USING SIMULINK MOVING OBJECT DETECTION USING BACKGROUND SUBTRACTION ALGORITHM USING SIMULINK Mahamuni P. D 1, R. P. Patil 2, H.S. Thakar 3 1 PG Student, E & TC Department, SKNCOE, Vadgaon Bk, Pune, India 2 Asst. Professor,

More information

BSFD: BACKGROUND SUBTRACTION FRAME DIFFERENCE ALGORITHM FOR MOVING OBJECT DETECTION AND EXTRACTION

BSFD: BACKGROUND SUBTRACTION FRAME DIFFERENCE ALGORITHM FOR MOVING OBJECT DETECTION AND EXTRACTION BSFD: BACKGROUND SUBTRACTION FRAME DIFFERENCE ALGORITHM FOR MOVING OBJECT DETECTION AND EXTRACTION 1 D STALIN ALEX, 2 Dr. AMITABH WAHI 1 Research Scholer, Department of Computer Science and Engineering,Anna

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

Design of Bicycle mileage Speed Meter

Design of Bicycle mileage Speed Meter Journal of Computing and Electronic Information Management ISSN: 2413-1660 Design of Bicycle mileage Speed Meter Xiuwei Fu 1, a 1 College of Information & Control Engineering, Jilin Institute of Chemical

More information

Keywords: Interactive electronic technical manuals; GJB6600; XML markup language; Automatic control equipment

Keywords: Interactive electronic technical manuals; GJB6600; XML markup language; Automatic control equipment Applied Mechanics and Materials Submitted: 2014-06-11 ISSN: 1662-7482, Vols. 602-605, pp 1165-1168 Accepted: 2014-06-11 doi:10.4028/www.scientific.net/amm.602-605.1165 Online: 2014-08-11 2014 Trans Tech

More information

The Design and Implementation of the Micro Laser Engraving Machine Based on STM32

The Design and Implementation of the Micro Laser Engraving Machine Based on STM32 International Conference on Education, Management and Computer Science (ICEMC 2016) The Design and Implementation of the Micro Laser Engraving Machine Based on STM32 Zhenhua Wang1, a *, Linna Xu2, b, Xianzheng

More information

A CNC equipment distributed monitoring system based on cloud computing technology RangYong Zhang a, Geng Ma b, GuangHe Cheng c

A CNC equipment distributed monitoring system based on cloud computing technology RangYong Zhang a, Geng Ma b, GuangHe Cheng c Advanced Materials Research Submitted: 2014-07-26 ISSN: 1662-8985, Vol. 1022, pp 392-395 Accepted: 2014-07-28 doi:10.4028/www.scientific.net/amr.1022.392 Online: 2014-08-28 2014 Trans Tech Publications,

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

Moving Object Detection and Tracking for Video Survelliance

Moving Object Detection and Tracking for Video Survelliance Moving Object Detection and Tracking for Video Survelliance Ms Jyoti J. Jadhav 1 E&TC Department, Dr.D.Y.Patil College of Engineering, Pune University, Ambi-Pune E-mail- Jyotijadhav48@gmail.com, Contact

More information

The Application of Programmable Controller to Chip Design. Shihong Lan 1, Jian Zhang 2

The Application of Programmable Controller to Chip Design. Shihong Lan 1, Jian Zhang 2 Applied Mechanics and Materials Online: 2013-01-11 ISSN: 1662-7482, Vol. 273, pp 722-725 doi:10.4028/www.scientific.net/amm.273.722 2013 Trans Tech Publications, Switzerland The Application of Programmable

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

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

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

Intelligent Pressure Measuring System

Intelligent Pressure Measuring System Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology ISSN 2320 088X IJCSMC, Vol. 3, Issue.

More information

An intelligent LED landscape lighting system

An intelligent LED landscape lighting system An intelligent landscape lighting system Lei Zhang 1,2,*, Jie Fang 1,2 and Ping Yu 1,2 1 School of electrical and photoelectrical Engineering. West Anhui University, Lu an, Anhui, 237012 2 Intelligent

More information

Constructing an University Scientific Research Management Information System of NET Platform Jianhua Xie 1, a, Jian-hua Xiao 2, b

Constructing an University Scientific Research Management Information System of NET Platform Jianhua Xie 1, a, Jian-hua Xiao 2, b Applied Mechanics and Materials Online: 2013-12-04 ISSN: 1662-7482, Vol. 441, pp 984-988 doi:10.4028/www.scientific.net/amm.441.984 2014 Trans Tech Publications, Switzerland Constructing an University

More information

Study and Design of CAN / LIN Hybrid Network of Automotive Body. Peng Huang

Study and Design of CAN / LIN Hybrid Network of Automotive Body. Peng Huang Advanced Materials Research Online: 2014-06-30 ISSN: 1662-8985, Vol. 940, pp 469-474 doi:10.4028/www.scientific.net/amr.940.469 2014 Trans Tech Publications, Switzerland Study and Design of CAN / LIN Hybrid

More information

A Moving Target Detection Algorithm Based on the Dynamic Background

A Moving Target Detection Algorithm Based on the Dynamic Background A Moving Target Detection Algorithm Based on the Dynamic Bacground Yangquan Yu, Chunguang Zhou, Lan Huang *, Zhezhou Yu College of Computer Science and Technology Jilin University Changchun, China e-mail:

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 engine temperature real-time monitoring instrument based on Microcontroller. Wang Jiayue, Yue Yuntao, Luan Ru, Zhang Jianghui Qin Xin

The engine temperature real-time monitoring instrument based on Microcontroller. Wang Jiayue, Yue Yuntao, Luan Ru, Zhang Jianghui Qin Xin nd Workshop on Advanced Research and Technology in Industry Applications (WARTIA 06) The engine temperature real-time monitoring instrument based on Microcontroller Wang Jiayue, Yue Yuntao, Luan Ru, Zhang

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

Published in A R DIGITECH

Published in A R DIGITECH DC Motor Parameter Measurement and Testing By using LabVIEW KOR HARSHAL RAMESH *1, BHARATI KAJAL BALASAHEB*2, HURPADE SANTOSH NAMDEO*3 *1(B.E Student S.N.D College of Engineering Yeola) *2(B.E Student

More information

, ,China. Keywords: CAN BUS,Environmental Factors,Data Collection,Roll Call.

, ,China. Keywords: CAN BUS,Environmental Factors,Data Collection,Roll Call. Advanced Materials Research Online: 2013-09-04 ISS: 1662-8985, Vols. 765-767, pp 1693-1696 doi:10.4028/www.scientific.net/amr.765-767.1693 2013 Trans Tech Publications, Switzerland The design of artificial

More information

Research on Traffic Flow Statistics Algorithm Based on Inter - Frame Similarity

Research on Traffic Flow Statistics Algorithm Based on Inter - Frame Similarity Computer and Information Science; Vol. 10, No. 2; 2017 ISSN 1913-8989 E-ISSN 1913-8997 Published by Canadian Center of Science and Education Research on Traffic Flow Statistics Algorithm Based on Inter

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

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

Object Tracking System Using Motion Detection and Sound Detection

Object Tracking System Using Motion Detection and Sound Detection Object Tracking System Using Motion Detection and Sound Detection Prashansha Jain Computer Science department Medicaps Institute of Technology and Management, Indore, MP, India Dr. C.S. Satsangi Head of

More information

3rd International Conference on Mechanical Engineering and Intelligent Systems (ICMEIS 2015)

3rd International Conference on Mechanical Engineering and Intelligent Systems (ICMEIS 2015) 3rd International Conference on Mechanical Engineering and Intelligent Systems (ICMEIS 2015) Development Of SSP510 Frequency Voltage Emergency Control Device Qinghua Si 1,2,a *, Zhukun Li 1,2, Yunsong

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

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

Research on Evaluation Method of Video Stabilization

Research on Evaluation Method of Video Stabilization International Conference on Advanced Material Science and Environmental Engineering (AMSEE 216) Research on Evaluation Method of Video Stabilization Bin Chen, Jianjun Zhao and i Wang Weapon Science and

More information