Design of a Chinese Input Method on the Remote Controller Based on the Embedded System

Size: px
Start display at page:

Download "Design of a Chinese Input Method on the Remote Controller Based on the Embedded System"

Transcription

1 Available online at Procedia Engineering 29 (2012) International Workshop on Information and Electronics Engineering (IWIEE) Design of a Chinese Input Method on the Remote Controller Based on the Embedded System Miao-miao Zhu a, Wan lin Gao a *, Zong-yuan Zhao a, Hong-biao Jiang a a College of Information and Electrical Engineering, China Agricultural University, Beijing , China Abstract This paper introduces a Chinese input method on the remote controller based on the embedded system, this input method was designed based on SMP8653, it uses mapping relationship of tree structure management and searches Pinyin and Chinese character in list way. It has the function of self-learning and displaying association character. Its realization improves the Chinese input efficiency and is convenient for searching and managing the multi-media files Published by Elsevier Ltd. Selection and/or peer-review under responsibility of Harbin University of Science and Technology Open access under CC BY-NC-ND license. Keywords:remote controller, Chinese input method, embedded system, SMP Introduction In our countryside, as a result of computer ownership is relatively small and the network popular rate is low, the agriculture information is easily accepted by the peasants through viewing the videos, under this circumstance, through storing the large amount of agriculture information videos in portable mobile devices is an effective way of solving the problem lacking of information in our countryside.smp8653 chip produced by Sigma designs Integrates SATA (serial port) hard disk interface, CD-Room, two highspeed USB interfaces that support SATA hard disk. The multimedia player designed based on SMP8653 supports high-definition video display and mass storage, which meets the requirements of the peasant s agriculture information needs. According to the remote controller devices for the present multimedia player, there are only control methods which lack of Chinese input method to input effective information, this paper designs a Chinese input method on the remote controller based on SMP8653.This method aims * Wan-lin Gao. Tel.: address: Published by Elsevier Ltd. doi: /j.proeng Open access under CC BY-NC-ND license.

2 Miao-miao Zhu et al. / Procedia Engineering 29 (2012) at using simple management to provide a Chinese input through the remote controller. Therefore, the user can input Chinese to search and manage files conveniently. 2. The whole design of the input method on the remote controller The objective is to realize Chinese input method on the remote controller and display the Chinese characters on the screen. The whole framework includes input and signal sending part, the button decoding part, Chinese character database matching part, Chinese input and display part. The whole framework is shown in Figure 1. Fig. 1.The whole framework of the system Input and signal sending part: the input method on the remote controller uses common infrared remote controller as input device. Establish a mapping relationship from combinations of buttons to Chinese characters encoding by the remote controller. After tapping the buttons, find the target Chinese character through a mapping relationship from combinations of buttons to Chinese characters encoding. Send infrared with encoded information through the remote controller internal infrared light emitter diode. The button decoding part: the remote controller uses decoding program decodes infrared signal that received by the remote controller receiving terminal, and then sends the decoded control codes to the application program of the SMP8653 chip. Chinese character database matching part: the application program interacts with search engines. Search the target Chinese characters in the Chinese character database by using the control codes stored in the application program. It matches success if the target Chinese character is found (there may be many homophones when match success, the user can choose the character as needed), otherwise examine whether the Pinyin input is correct. Chinese input and display part: the search results based on the previous steps are displaying on the device screen through the graphics interface of the input method. 3. The realization of Chinese input based on SMP The design of the remote controller buttons The remote controller buttons use 16 buttons to control input. The Pinyin input design uses the Jiugong Ge layout. The Look-up table of number and letter is shown in Table 1.The remaining eight buttons are used as control buttons. Numeric 0 is used as deleting Chinese characters, Numeric 1 is used as controlling invoking punctuation, The OK button is used as confirming finishing input, the up and down buttons are used as controlling flipping pages, the left and right buttons are used as selecting the

3 3062 Miao-miao Zhu et al. / Procedia Engineering 29 (2012) next or previous Chinese character, the input method control button is used as starting, shutting, switching input control. The elements of the component of Chinese characters is a, b, c, d etc. The user can input the Pinyin elements according to the number corresponding to the letter. Table 1.The Look-up table of number and letter Number Letter 2 abc 3 def 4 ghi 5 jkl 6 mno 7 pgrs 8 tuv 9 wxyz 3.2.The signal receive and processing part The remote controller sends the signal of start the input method, and then the user can do all kinds of operations, e.g., input control, select control, delete control, etc. The SMP8653 chip provides supporting infrared equipment, we should install the remote controller driver in the kernel module before use. The installing comprises the following steps: 1. Find the device drivers in the configuration directory. 2. Start the font device to make the SMP8653 support the infrared remote controller and Chinese character database. The Modprobeir kernel module will download the infrared driver when it runs, the /dev/ir device node will be used(if there isn t the device node, the user can establish the node,e.g., $ mknod /dev/irc 2540) The data structure and indexing of the input method In the input method, numbers convert to Pinyin and Pinyin convert to Chinese character by using tree structure management. The number button value one to one corresponds to Chinese character through all levels of the contrasting relations. Use double linked list to search through the pointer between Pinyin and Chinese characters, as shown in Figure 2. This input method uses the following data structure: Struct PinYin_Index { Char *PinYin_Num; Char *PinYin; Char *PinYin_HanZi; Char *PinYin_LianXiangCi; }

4 Miao-miao Zhu et al. / Procedia Engineering 29 (2012) Fig. 2. The diagram of the data structure PinYin_Num are all kinds of number combinations on the remote controller. PinYin is the number combinations corresponding to Pinyin, PinYin_HanZi is Pinyin corresponding to Chinese character, PinYin_LianXiangCi is used as function of associating Chinese character. 3.4.The design of Chinese input method of the SMP8653 multimedia players The implementation of Chinese input method through establishing a mapping relationship from combinations of buttons to Chinese characters encoding. [2].The Pinyin input method of the multimedia player flow chart is shown in Figure 3. Fig. 3. The Chinese input method of the SMP8653 multimedia player flow

5 3064 Miao-miao Zhu et al. / Procedia Engineering 29 (2012) Step 1.Start the input method on the remote controller. Step 2.Decide whether it is Chinese input, if it is, go to step 3, otherwise, go to step 1. Step 3.Use the way of free number combinations to generate the Pinyin combinations, and then select the Pinyin combinations. Step 4.Display the candidate Chinese characters. Step 5.Decide whether the candidate Chinese characters are on the current page, if not, go to step 6, otherwise, go to step 7. Step 6.Turn the next page. Step 7.Tap buttons, select the target Chinese character. Step 8. Decide whether find the corresponding associated Chinese character, if not, go to step 3, otherwise, go to step 9. At the same time, search the corresponding Chinese characters according to dictionary databases and make the input through the user machine learning by itself. Step 9.Tap buttons, display the target Chinese character. As for Pinyin selection, Chinese characters search, etc., this method uses the look-up table search method and highlighting the invalid Pinyin input. And then search the corresponding Chinese characters according to dictionary databases and make the input through the user machine learning. According to the difference of the user s input custom, make the common Chinese characters that the user input adaptive sort, and get the final candidate Chinese characters. 4. Conclusion This paper designs a Chinese input method on the remote controller based on SMP8653, display the Chinese character on the screen through establishing the remote controller number combinations corresponding to Pinyin, Chinese character database search, the tree structure and linked list combining management mode. This input method uses the way of free number combinations to generate the Pinyin combinations, so that it can avoid the efficiency problem that using multiple taps on buttons. As for the input Chinese character, it will display association character, display the common phrase through selfleaning and record the use frequency. through the test, it achieved the initial predicting result. References [1] Min, H.S, Tong, X.C., Chen, Q.J.: Design Chinese Input Method in Embedded System. Microcomputer Information, 2006,vol. 23, pp [2] Hu, M.X., Li, S.Q., Zhang, J.: Design and Implementation of Chinese Input Method in Embedded System. Computer Engineering, 2007,vol. 33,no.20, pp [3]Wu X.: The development of Chinese input method based on Qtopia and embedded linux. Computer Applications and Software,2008, vol. 25,no.5, pp [4]Po, L.M., Wong, C.K., Au, Y.K., Ng, K.H., Wong, K.M.: Six-Digit Stroke-based Chinese Input Method,2009, pp , Hong Kong. [5] Liao, g.g., Zhang, J.H.: Design of Embedded Chinese Input Method Based on Qtopia. Modern electronics technique,2010, vol. 10, pp [6] Chang, J.: Design of Chinese Input Method in Embedded System. Electronic Engineering & Product World, vol.09a, pp.70-74, China (2004) [7]Jiang H.B. Gao W.L.. Etc: Research of an Architecture of Operating System Kernel Based on Modularity Concep, Mathematical and Computer Modelling, June 2010v 51, n 11-12, p

Research on Embedded CNC Device Based on ARM and FPGA

Research on Embedded CNC Device Based on ARM and FPGA Available online at www.sciencedirect.com Procedia Engineering 16 (2011 ) 818 824 International Workshop on Automobile, Power and Energy Engineering Research on Embedded CNC Device Based on ARM and FPGA

More information

Design of New Oscillograph based on FPGA

Design of New Oscillograph based on FPGA Available online at www.sciencedirect.com Procedia Engineering 23 (2011) 60 64 Design of New Oscillograph based on FPGA Hu Haoran,ZHANG Fei School of Computer & Information, Anqing Teachers College, Anqing

More information

Implementation and Optimization of LZW Compression Algorithm Based on Bridge Vibration Data

Implementation and Optimization of LZW Compression Algorithm Based on Bridge Vibration Data Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 1570 1574 Advanced in Control Engineeringand Information Science Implementation and Optimization of LZW Compression Algorithm Based

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

Implementation and Improvement of DSR in Ipv6

Implementation and Improvement of DSR in Ipv6 Available online at www.sciencedirect.com Procedia Engineering 29 (2012) 716 720 2012 International Workshop on Information and Electronics Engineering (IWIEE) Implementation and Improvement of DSR in

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

Citation for the original published paper (version of record):

Citation for the original published paper (version of record): http://www.diva-portal.org This is the published version of a paper published in Procedia Engineering. Citation for the original published paper (version of record): Zhang, D., Lu, J., Wang, L., Li, J.

More information

Preliminary Research on Distributed Cluster Monitoring of G/S Model

Preliminary Research on Distributed Cluster Monitoring of G/S Model Available online at www.sciencedirect.com Physics Procedia 25 (2012 ) 860 867 2012 International Conference on Solid State Devices and Materials Science Preliminary Research on Distributed Cluster Monitoring

More information

Design and Simulation Based on Pro/E for a Hydraulic Lift Platform in Scissors Type

Design and Simulation Based on Pro/E for a Hydraulic Lift Platform in Scissors Type Available online at www.sciencedirect.com Procedia Engineering 16 (2011 ) 772 781 International Workshop on Automobile, Power and Energy Engineering Design and Simulation Based on Pro/E for a Hydraulic

More information

The IIC interface based on ATmega8 realizes the applications of PS/2 keyboard/mouse in the system

The IIC interface based on ATmega8 realizes the applications of PS/2 keyboard/mouse in the system Available online at www.sciencedirect.com Procedia Engineering 16 (2011 ) 673 678 International Workshop on Automobile, Power and Energy Engineering The IIC interface based on ATmega8 realizes the applications

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

Research on Sine Dynamic Torque Measuring System

Research on Sine Dynamic Torque Measuring System Available online at www.sciencedirect.com Procedia Engineering 29 (2012) 2677 2681 2012 International Workshop on Information and Electronics Engineering (IWIEE) Research on Sine Dynamic Torque Measuring

More information

Research on software development platform based on SSH framework structure

Research on software development platform based on SSH framework structure Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 3078 3082 Advanced in Control Engineering and Information Science Research on software development platform based on SSH framework

More information

An Extended Byte Carry Labeling Scheme for Dynamic XML Data

An Extended Byte Carry Labeling Scheme for Dynamic XML Data Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 5488 5492 An Extended Byte Carry Labeling Scheme for Dynamic XML Data YU Sheng a,b WU Minghui a,b, * LIU Lin a,b a School of Computer

More information

Analysis of the Power Consumption for Wireless Sensor Network Node Based on Zigbee

Analysis of the Power Consumption for Wireless Sensor Network Node Based on Zigbee Available online at www.sciencedirect.com rocedia Engineering 29 (2012) 1994 1998 2012 International Workshop on Information and Electronics Engineering (IWIEE) Analysis of the ower Consumption for Wireless

More information

The Community Library Anniance Based on Cloud Computing

The Community Library Anniance Based on Cloud Computing Available online at www.sciencedirect.com Procedia Engineering 29 (2012) 2804 2808 2012 International Workshop on Information and Electronics Engineering (IWIEE) The Community Library Anniance Based on

More information

Sensors State Monitoring based on LabVIEW and Wireless Nodes

Sensors State Monitoring based on LabVIEW and Wireless Nodes Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 2639 2643 Advanced in Control Engineering and Information Science Sensors State Monitoring based on LabVIEW and Wireless Nodes Tianbing

More information

Speech Recognition Based on Efficient DTW Algorithm and Its DSP Implementation

Speech Recognition Based on Efficient DTW Algorithm and Its DSP Implementation Available online at www.sciencedirect.com Procedia Engineering 29 (2012) 832 836 2012 International Workshop on Information and Electronics Engineering (IWIEE) Speech Recognition Based on Efficient DTW

More information

9555 Satellite Phone. User s Manual Supplement. web: toll free: phone:

9555 Satellite Phone. User s Manual Supplement. web:    toll free: phone: 9555 Satellite Phone User s Manual Supplement web: www.iridium.com email: Info@iridium.com toll free: +1.866.947.4348 phone: +1.480.752.5155 H2US0902 i I Contents 1 I Introduction...1.1 2 I Predictive

More information

A Hand Gesture Recognition Method Based on Multi-Feature Fusion and Template Matching

A Hand Gesture Recognition Method Based on Multi-Feature Fusion and Template Matching Available online at www.sciencedirect.com Procedia Engineering 9 (01) 1678 1684 01 International Workshop on Information and Electronics Engineering (IWIEE) A Hand Gesture Recognition Method Based on Multi-Feature

More information

Applications of wireless sensor network in the agriculture environment monitoring

Applications of wireless sensor network in the agriculture environment monitoring Available online at www.sciencedirect.com Procedia Engineering 16 (2011 ) 608 614 International Workshop on Automobile, Power and Energy Engineering Applications of wireless sensor network in the agriculture

More information

An Adaptive Histogram Equalization Algorithm on the Image Gray Level Mapping *

An Adaptive Histogram Equalization Algorithm on the Image Gray Level Mapping * Available online at www.sciencedirect.com Physics Procedia 25 (2012 ) 601 608 2012 International Conference on Solid State Devices and Materials Science An Adaptive Histogram Equalization Algorithm on

More information

The Analysis and Detection of Double JPEG2000 Compression Based on Statistical Characterization of DWT Coefficients

The Analysis and Detection of Double JPEG2000 Compression Based on Statistical Characterization of DWT Coefficients Available online at www.sciencedirect.com Energy Procedia 17 (2012 ) 623 629 2012 International Conference on Future Electrical Power and Energy Systems The Analysis and Detection of Double JPEG2000 Compression

More information

Design and Implementation of a Low Cost DAQ System for Thermoelectric Property Measurements

Design and Implementation of a Low Cost DAQ System for Thermoelectric Property Measurements Available online at www.sciencedirect.com Procedia Engineering 32 (2012) 614 620 I-SEEC2011 Design and Implementation of a Low Cost DAQ System for Thermoelectric Property Measurements T. Sumphao a, C.

More information

The Design of Embedded MCU Network Measure and Control System

The Design of Embedded MCU Network Measure and Control System Available online at www.sciencedirect.com Energy Procedia 17 (2012 ) 983 989 2012 International Conference on Future Electrical Power and Energy Systems The Design of Embedded MCU Network Measure and Control

More information

The Design and Realization of Visual Education System for Bridge Structure Analysis

The Design and Realization of Visual Education System for Bridge Structure Analysis Available online at www.sciencedirect.com Energy Procedia 17 (2012 ) 1885 1890 2012 International Conference on Future Electrical Power and Energy Systems The Design and Realization of Visual Education

More information

Relational Database Watermarking for Ownership Protection

Relational Database Watermarking for Ownership Protection Available online at www.sciencedirect.com Procedia Technology 6 (2012 ) 988 995 2nd International Conference on Communication, Computing & Security [ICCCS-2012] Relational Database Watermarking for Ownership

More information

The Research on Coding Scheme of Binary-Tree for XML

The Research on Coding Scheme of Binary-Tree for XML Available online at www.sciencedirect.com Procedia Engineering 24 (2011 ) 861 865 2011 International Conference on Advances in Engineering The Research on Coding Scheme of Binary-Tree for XML Xiao Ke *

More information

Whole Home DVR, Media Center & More. Quick Start Guide

Whole Home DVR, Media Center & More. Quick Start Guide Whole Home DVR, Media Center & More Quick Start Guide Using the Remote 1 2 3 4 Shortcut Buttons 1. DVR Goes to the Recorded TV category. 9 12 13 20 19 22 25 7 5 15 A info back replay rew vol abc 1 2 ghi

More information

Development of a Rapid Design System for Aerial Work Truck Subframe with UG Secondary Development Framework

Development of a Rapid Design System for Aerial Work Truck Subframe with UG Secondary Development Framework Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 2961 2965 Advanced in Control Engineering and Information Science Development of a Rapid Design System for Aerial Work Truck Subframe

More information

The Research about Embedded Soft PLC Running System Based on ARM

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

More information

Parallel 3D Images Surface Texture Editing

Parallel 3D Images Surface Texture Editing Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 2927 2931 Advanced in Control Engineeringand Information Science Parallel 3D Images Surface Texture Editing Ye Chen a, Ren Zhikao

More information

Accessing service menus

Accessing service menus Accessing service menus There are different test menus that can be accessed during POR to identify problems with the printer. Diagnostics Menu 1 2 ABC 4 GHI 7 PQRS * 5 JKL 8 TUV 0 3 DEF 6 MNO 9 WXYZ #

More information

A Network Disk Device Based on Web Accessing

A Network Disk Device Based on Web Accessing TELKOMNIKA Indonesian Journal of Electrical Engineering Vol.12, No.6, June 2014, pp. 4387 ~ 4392 DOI: 10.11591/telkomnika.v12i6.5472 4387 A Network Disk Device Based on Web Accessing QunFang Yuan 1, Wenxia

More information

Available online at ScienceDirect. Procedia Engineering 99 (2015 )

Available online at   ScienceDirect. Procedia Engineering 99 (2015 ) Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 99 (2015 ) 575 580 APISAT2014, 2014 Asia-Pacific International Symposium on Aerospace Technology, APISAT2014 A 3D Anisotropic

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

Research on monitoring technology of Iu-PS interface in WCDMA network

Research on monitoring technology of Iu-PS interface in WCDMA network Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 2354 2358 Advanced in Control Engineering and Information Science Research on monitoring technology of Iu-PS interface in WCDMA

More information

Design on a method for interactive editing fault polygon

Design on a method for interactive editing fault polygon Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 3584 3589 Advanced in Control Engineering and Information Science Design on a method for interactive editing fault polygon TANG

More information

Design of student information system based on association algorithm and data mining technology. CaiYan, ChenHua

Design of student information system based on association algorithm and data mining technology. CaiYan, ChenHua 5th International Conference on Mechatronics, Materials, Chemistry and Computer Engineering (ICMMCCE 2017) Design of student information system based on association algorithm and data mining technology

More information

Remote Control User s Guide

Remote Control User s Guide Fujitsu Computer Systems Corporation Remote Control User s Guide I N S T R U C T I O N S This user s guide contains information on using the Fujitsu Remote Control with systems running Microsoft Windows

More information

Best traffic carrier frequency number and cell wireless utilization research

Best traffic carrier frequency number and cell wireless utilization research Available online at www.sciencedirect.com Procedia Engineering 24 (2011) 303 307 2011 International Conference on Advances in Engineering Best traffic carrier frequency number and cell wireless research

More information

Data Logical Structure Design on Teaching Material Management System based on Oracle Zhe Li1,a, Hui Ma2,b

Data Logical Structure Design on Teaching Material Management System based on Oracle Zhe Li1,a, Hui Ma2,b 2nd International Conference on Economics, Management Engineering and Education Technology (ICEMEET 2016) Data Logical Structure Design on Material Management System based on Oracle Zhe Li1,a, Hui Ma2,b

More information

A Fast Video Illumination Enhancement Method Based on Simplified VEC Model

A Fast Video Illumination Enhancement Method Based on Simplified VEC Model Available online at www.sciencedirect.com Procedia Engineering 29 (2012) 3668 3673 2012 International Workshop on Information and Electronics Engineering (IWIEE) A Fast Video Illumination Enhancement Method

More information

Open Access Research on the Prediction Model of Material Cost Based on Data Mining

Open Access Research on the Prediction Model of Material Cost Based on Data Mining Send Orders for Reprints to reprints@benthamscience.ae 1062 The Open Mechanical Engineering Journal, 2015, 9, 1062-1066 Open Access Research on the Prediction Model of Material Cost Based on Data Mining

More information

A Rapid Automatic Image Registration Method Based on Improved SIFT

A Rapid Automatic Image Registration Method Based on Improved SIFT Available online at www.sciencedirect.com Procedia Environmental Sciences 11 (2011) 85 91 A Rapid Automatic Image Registration Method Based on Improved SIFT Zhu Hongbo, Xu Xuejun, Wang Jing, Chen Xuesong,

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

The Design and Implementation of University Vedio Resources Platform Based on Podcast

The Design and Implementation of University Vedio Resources Platform Based on Podcast Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 2186 2190 Advanced in Control Engineeringand Information Science The Design and Implementation of University Vedio Resources Platform

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

Penpower Handwriter for Mac User Manual

Penpower Handwriter for Mac User Manual Penpower Handwriter for Mac User Manual Version: 6.2 Release: July, 2011 Edition: 3 Penpower Technology Ltd. Software User License Agreement You are licensed to legally use this software program ( the

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

An Overview of Particle Swarm Optimization Variants

An Overview of Particle Swarm Optimization Variants Available online at www.sciencedirect.com Procedia Engineering 53 ( 2013 ) 491 496 Malaysian Technical Universities Conference on Engineering & Technology 2012, MUCET 2012 Part 4 Information And Communication

More information

Condition Monitoring System of Mine Air Compressors Based on Wireless Sensor Network

Condition Monitoring System of Mine Air Compressors Based on Wireless Sensor Network Condition Monitoring System of Mine Air Compressors Based on Wireless Sensor etwork Sheng Fu, inbo Gao, Hao Lin Abstract In the current mine air compressors monitoring system, there are some difficulties

More information

Available online at AASRI Procedia 1 (2012 ) AASRI Conference on Computational Intelligence and Bioinformatics

Available online at   AASRI Procedia 1 (2012 ) AASRI Conference on Computational Intelligence and Bioinformatics Available online at www.sciencedirect.com AASRI Procedia 1 (2012 ) 74 81 AASRI Procedia www.elsevier.com/locate/procedia 2012 AASRI Conference on Computational Intelligence and Bioinformatics The Research

More information

Out-of-Plane Rotated Object Detection using Patch Feature based Classifier

Out-of-Plane Rotated Object Detection using Patch Feature based Classifier Available online at www.sciencedirect.com Procedia Engineering 41 (2012 ) 170 174 International Symposium on Robotics and Intelligent Sensors 2012 (IRIS 2012) Out-of-Plane Rotated Object Detection using

More information

A Static-Dynamic Conjunct Windows Process Integrity Detection Model

A Static-Dynamic Conjunct Windows Process Integrity Detection Model A Static-Dynamic Conjunct Windows Process Integrity Detection Model Fei Chen 1, Yi Li 1, Tong Zhang 1, Kehe Wu 1, 1 North China Electric Power University, Department of Control and Computer Engineering,

More information

Personalized Search for TV Programs Based on Software Man

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

More information

The Study and Implementation of Text-to-Speech System for Agricultural Information

The Study and Implementation of Text-to-Speech System for Agricultural Information The Study and Implementation of Text-to-Speech System for Agricultural Information Huoguo Zheng 1,2,*, Haiyan Hu 1,2, Shihong Liu 1,2, and Hong Meng 1,2 1 Agricultural Information Institute, Chinese Academy

More information

Data Processing System to Network Supported Collaborative Design

Data Processing System to Network Supported Collaborative Design Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 3351 3355 Advanced in Control Engineering and Information Science Data Processing System to Network Supported Collaborative Design

More information

Research of Fault Diagnosis in Flight Control System Based on Fuzzy Neural Network

Research of Fault Diagnosis in Flight Control System Based on Fuzzy Neural Network Available online at www.sciencedirect.com Procedia Engineering 5 (2 ) 7 74 Research of Fault Diagnosis in Flight Control System Based on Fuzzy Neural Network Peng Zhang a, Rui Zhang b, Xiao-xiao Ran b

More information

An Efficient AC Algorithm with GPU

An Efficient AC Algorithm with GPU Available online at www.sciencedirect.com Procedia Engineering 29 (2012) 4249 4253 2012 International Workshop on Information and Electronics Engineering (IWIEE) An Efficient AC Algorithm with GPU Liang

More information

Penpower Handwriter for Mac User Manual

Penpower Handwriter for Mac User Manual Penpower Handwriter for Mac User Manual Version: 6.1 Release: February, 2009 Penpower Technology Ltd. Software User License Agreement You are licensed to legally use this software program ( the Software

More information

Research on the Application of Interactive Electronic Whiteboard in Network Teaching

Research on the Application of Interactive Electronic Whiteboard in Network Teaching Available online at www.sciencedirect.com Procedia Environmental Sciences 12 (2012 ) 1151 1156 2011 International Conference on Environmental Science and Engineering (ICESE 2011) Research on the Application

More information

Ontology Molecule Theory-based Information Integrated Service for Agricultural Risk Management

Ontology Molecule Theory-based Information Integrated Service for Agricultural Risk Management 2154 JOURNAL OF SOFTWARE, VOL. 6, NO. 11, NOVEMBER 2011 Ontology Molecule Theory-based Information Integrated Service for Agricultural Risk Management Qin Pan College of Economics Management, Huazhong

More information

DSP-Based Parallel Processing Model of Image Rotation

DSP-Based Parallel Processing Model of Image Rotation Available online at www.sciencedirect.com Procedia Engineering 5 (20) 2222 2228 Advanced in Control Engineering and Information Science DSP-Based Parallel Processing Model of Image Rotation ZHANG Shuang,2a,2b,

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

An effective algorithm for mining sequential generators

An effective algorithm for mining sequential generators Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 3653 3657 Advanced in Control Engineering and Information cience An effective algorithm for mining sequential generators hengwei

More information

Remote Control System Based on Compressed Image

Remote Control System Based on Compressed Image Remote Control System Based on Compressed Image Weichuan Liao School of Fundamental Science, East China Jiaotong University, Nanchang, Jiangxi, P.R. China Abstract. Client computer controlling remote server

More information

A Hardware-In-the-Loop Simulation and Test for Unmanned Ground Vehicle on Indoor Environment

A Hardware-In-the-Loop Simulation and Test for Unmanned Ground Vehicle on Indoor Environment Available online at www.sciencedirect.com Procedia Engineering 29 (2012) 3904 3908 2012 International Workshop on Information and Electronics Engineering (IWIEE) A Hardware-In-the-Loop Simulation and Test

More information

Xerox WorkCentre Color Multifunction Printer. Xerox WorkCentre Quick Use Guide

Xerox WorkCentre Color Multifunction Printer. Xerox WorkCentre Quick Use Guide Xerox WorkCentre 660 Color Multifunction Printer Xerox WorkCentre 660 Quick Use Guide Contents Printer Basics... Basic Printing... 7 Scanning... Scanning to Windows WSD... 7 Printer Tour... Printing from

More information

Design of Desert Plant Monitoring System Based on SI446X Wireless Radio Frequency Communication

Design of Desert Plant Monitoring System Based on SI446X Wireless Radio Frequency Communication 4th International Conference on Sustainable Energy and Environmental Engineering (ICSEEE 2015) Design of Desert Plant Monitoring System Based on SI446X Wireless Radio Frequency Communication Hua Guo1,a,

More information

Path-based XML Relational Storage Approach

Path-based XML Relational Storage Approach Available online at www.sciencedirect.com Physics Procedia 33 (2012 ) 1621 1625 2012 International Conference on Medical Physics and Biomedical Engineering Path-based XML Relational Storage Approach Qi

More information

Available online at ScienceDirect. Procedia Manufacturing 6 (2016 ) 33 38

Available online at  ScienceDirect. Procedia Manufacturing 6 (2016 ) 33 38 Available online at www.sciencedirect.com ScienceDirect Procedia Manufacturing 6 (2016 ) 33 38 16th Machining Innovations Conference for Aerospace Industry - MIC 2016 Multi-point Clamping with Automatic

More information

Available online at ScienceDirect. Procedia Engineering 111 (2015 )

Available online at  ScienceDirect. Procedia Engineering 111 (2015 ) Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 111 (2015 ) 902 906 XXIV R-S-P seminar, Theoretical Foundation of Civil Engineering (24RSP) (TFoCE 2015) About development and

More information

Available online at ScienceDirect. Procedia Engineering 161 (2016 ) Bohdan Stawiski a, *, Tomasz Kania a

Available online at   ScienceDirect. Procedia Engineering 161 (2016 ) Bohdan Stawiski a, *, Tomasz Kania a Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 161 (16 ) 937 943 World Multidisciplinary Civil Engineering-Architecture-Urban Planning Symposium 16, WMCAUS 16 Testing Quality

More information

Quick Installation Guide

Quick Installation Guide Quick Installation Guide For Bundles Featuring the QC4098 or QC4096 Network DVR 8 and 6 Channel H.64 Compression All-in-One DVRs with Variable CIF and D Recording Options PART - PACKAGE CONTENTS QC4098

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

AN OPTIMIZATION GENETIC ALGORITHM FOR IMAGE DATABASES IN AGRICULTURE

AN OPTIMIZATION GENETIC ALGORITHM FOR IMAGE DATABASES IN AGRICULTURE AN OPTIMIZATION GENETIC ALGORITHM FOR IMAGE DATABASES IN AGRICULTURE Changwu Zhu 1, Guanxiang Yan 2, Zhi Liu 3, Li Gao 1,* 1 Department of Computer Science, Hua Zhong Normal University, Wuhan 430079, China

More information

ScienceDirect. Vibration Response Prediction of the Printed Circuit Boards using Experimentally Validated Finite Element Model

ScienceDirect. Vibration Response Prediction of the Printed Circuit Boards using Experimentally Validated Finite Element Model Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 144 (2016 ) 576 583 12th International Conference on Vibration Problems, ICOVP 2015 Vibration Response Prediction of the Printed

More information

[30] Dong J., Lou j. and Yu L. (2003), Improved entropy coding method, Doc. AVS Working Group (M1214), Beijing, Chaina. CHAPTER 4

[30] Dong J., Lou j. and Yu L. (2003), Improved entropy coding method, Doc. AVS Working Group (M1214), Beijing, Chaina. CHAPTER 4 [30] Dong J., Lou j. and Yu L. (3), Improved entropy coding method, Doc. AVS Working Group (M1214), Beijing, Chaina. CHAPTER 4 Algorithm for Implementation of nine Intra Prediction Modes in MATLAB and

More information

An 8-Bit Scientific Calculator Based Intel 8086 Virtual Machine Emulator

An 8-Bit Scientific Calculator Based Intel 8086 Virtual Machine Emulator Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 21 (2013 ) 506 511 The 4th International Conference on Emerging Ubiquitous Systems and Pervasive Networks (EUSPN-2013)

More information

Distribution Network Reconfiguration Based on Relevance Vector Machine

Distribution Network Reconfiguration Based on Relevance Vector Machine 2016 International Conference on Artificial Intelligence: Techniques and Applications (AITA 2016) ISBN: 978-1-60595-389-2 Distribution Network Reconfiguration Based on Relevance Vector Machine Sheng ZHOU

More information

Text clustering based on a divide and merge strategy

Text clustering based on a divide and merge strategy Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 55 (2015 ) 825 832 Information Technology and Quantitative Management (ITQM 2015) Text clustering based on a divide and

More information

Hybrid ant colony optimization algorithm for two echelon vehicle routing problem

Hybrid ant colony optimization algorithm for two echelon vehicle routing problem Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 3361 3365 Advanced in Control Engineering and Information Science Hybrid ant colony optimization algorithm for two echelon vehicle

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

Greenhouse Equipment Data Acquisition and Display Platform Based on Socket Java

Greenhouse Equipment Data Acquisition and Display Platform Based on Socket Java 2017 2nd International Conference on Environmental Science and Energy Engineering (ICESEE 2017) ISBN: 978-1-60595-417-2 Greenhouse Equipment Data Acquisition and Display Platform Based on Java Guo-jian

More information

Available online at ScienceDirect. Procedia Computer Science 89 (2016 )

Available online at  ScienceDirect. Procedia Computer Science 89 (2016 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 89 (2016 ) 341 348 Twelfth International Multi-Conference on Information Processing-2016 (IMCIP-2016) Parallel Approach

More information

Study of LED Electronic Writing Screen based on Single Chip Dengjin Wu 1

Study of LED Electronic Writing Screen based on Single Chip Dengjin Wu 1 4th National Conference on Electrical, Electronics and Computer Engineering (NCEECE 2015) Study of LED Electronic Writing Screen based on Single Chip Dengjin Wu 1 1 North China Electric Power University,

More information

Numerical simulation of 3-D seepage field in tailing pond and its practical application

Numerical simulation of 3-D seepage field in tailing pond and its practical application Available online at www.sciencedirect.com Procedia Engineering (0) 70 76 0 SREE Conference on Engineering Modelling and Simulation Numerical simulation of -D seepage field in tailing pond and its practical

More information

Hardware Design and Software Simulation for Four Classical Cryptosystems

Hardware Design and Software Simulation for Four Classical Cryptosystems Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 21 (2013 ) 500 505 The 4 th International Conference on Emerging Ubiquitous Systems and Pervasive Networks (EUSPN-2013)

More information

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

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

More information

Available online at ScienceDirect. Procedia Engineering 192 (2017 )

Available online at   ScienceDirect. Procedia Engineering 192 (2017 ) Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 192 (2017 ) 113 118 TRANSCOM 2017: International scientific conference on sustainable, modern and safe transport Utilization

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

Design of three-dimensional photoelectric stylus micro-displacement measuring system

Design of three-dimensional photoelectric stylus micro-displacement measuring system Available online at www.sciencedirect.com Procedia Engineering 15 (011 ) 400 404 Design of three-dimensional photoelectric stylus micro-displacement measuring system Yu Huan-huan, Zhang Hong-wei *, Liu

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

Worksheet 3: Predictive Text Entry

Worksheet 3: Predictive Text Entry Worksheet 3: Predictive Text Entry MSc & ICY Software Workshop, Spring term 2015-16 Seyyed Shah and Uday Reddy Assigned: Tuesday 2 February Intermediate deadline : parts 1 and 2, Tuesday 9th February,

More information

John H. Jenkins If available now, identify source(s) for the font (include address, , ftp-site, etc.) and indicate the tools used:

John H. Jenkins If available now, identify source(s) for the font (include address,  , ftp-site, etc.) and indicate the tools used: ISO/IEC JTC 1/SC 2/WG 2 PROPOSAL SUMMARY FORM TO ACCOMPANY SUBMISSIONS FOR ADDITIONS TO THE REPERTOIRE OF ISO/IEC 10646 1 Please fill all the sections A, B and C below. Please read Principles and Procedures

More information

Design of three-dimensional reconstruction system for farm production

Design of three-dimensional reconstruction system for farm production Available online at www.sciencedirect.com Procedia Engineering 24 (2011) 593 597 2011 International Conference on Advances in Engineering Design of three-dimensional reconstruction system for farm production

More information

Available online at ScienceDirect. Procedia Technology 25 (2016 )

Available online at  ScienceDirect. Procedia Technology 25 (2016 ) Available online at www.sciencedirect.com ScienceDirect Procedia Technology 25 (2016 ) 544 551 Global Colloquium in Recent Advancement and Effectual Researches in Engineering, Science and Technology (RAEREST

More information

International Power, Electronics and Materials Engineering Conference (IPEMEC 2015)

International Power, Electronics and Materials Engineering Conference (IPEMEC 2015) International Power, Electronics and Materials Engineering Conference (IPEMEC 2015) Design of Intelligent Car Based on Single Chip Processor STC89C52 Li Xin 1,a, Xiang Qiang 1,b, 1 College of Electrical

More information

Improvement of AODV Routing Protocol with QoS Support in Wireless Mesh Networks

Improvement of AODV Routing Protocol with QoS Support in Wireless Mesh Networks Available online at www.sciencedirect.com Physics Procedia 25 (2012 ) 1133 1140 2012 International Conference on Solid State Devices and Materials Science Improvement of AODV Routing Protocol with QoS

More information