Real-Time Path Planning and Navigation for a Web-Based Mobile Robot Using a Modified Ant Colony Optimization Algorithm

Size: px
Start display at page:

Download "Real-Time Path Planning and Navigation for a Web-Based Mobile Robot Using a Modified Ant Colony Optimization Algorithm"

Transcription

1 Real-Time Path Planning and Navigation for a Web-Based Mobile Robot Using a Modified Ant Colony Optimization Algorithm KUAN-YU CHEN*, CHIA-YUN LIN, CHENG-CHIN CHIEN, JING-HUEI TSAI, YU-CHING LIU Department of Mechanical Engineering Chung Yuan Christian University 200, Chungpei Rd., Chungli City, Taoyuan County, Taiwan R.O.C. gychen@cycu.edu.tw Abstract: - This paper presents the use of a modified ant colony optimization algorithm and interactive web technologies for the problems of real-time path planning and navigation for an autonomous mobile robot. Assume that the mobile robot serves in an office building for delivering documents and packages, and all staff in different locations can assign tasks to the robot via a web-based application. Therefore, how to rapidly determine or update the path planning for the robot is a top priority. In this paper, we firstly apply interactive web technologies to develop the web-based application including two interfaces of client-side and server-side. The client-side is a graphical user interface for task assignments and monitoring real-time state of the mobile robot; moreover, the server-side interface combines the computation kernel of a modified ant colony optimization algorithm for generating a feasible path planning with a database management system for recording purpose. Secondly, a precise indoor localization system for the mobile robot using wireless sensor network and binocular vision is also presented. Finally, simulation results show that our proposed approach allows users to assign tasks to the mobile robot via the Internet, and then the mobile robot can complete these tasks along a feasible path that is generated by a modified ant colony optimization algorithm. Key-Words: - Ant colony optimization, mobile robot, path planning, web-based interface, wireless sensor network localization 1 Introduction The problems of real-time path planning and navigation have become key issues for extending the use of mobile robots. Furthermore, the Internet technology provides a convenient way for users to interact with a mobile service robot for assigning tasks and online monitoring of its status. Therefore, the purpose of this paper is to integrate both realtime path planning and interactive web technologies into an autonomous mobile robot based on wireless sensor network (WSN) localization for delivering documents and packages in an office environment. In general, in order to achieve an autonomous navigation capability, a mobile robot must be able to plan a feasible path from a start to a destination in a working environment. Meanwhile, path planning can also be viewed as a constrained dynamic optimization problem. A number of solutions have been recently proposed in the literature to address this problem, such as neural networks [1], [2], fuzzy logic [3], [4], genetic algorithms [5]-[7], hybrid approaches [8], [9], and swarm intelligence-based optimization algorithms. Here, swarm intelligence is a form of artificial intelligence based upon the study of collective behavior in many kinds of animal groups, especially for social insects such as ants and bees [10]. Ant colony optimization (ACO) [11]-[14] is one of the popular swarm inspired methods and has been proved to be highly effective and successful for many types of optimization problems and the robot path planning problem [15]-[19]. However, we should notice that the precise localization capability of mobile robots is central to path planning and navigation. Nowadays, the precise localization it still remains a challenge, especially in the indoor environment. For solving this problem, WSN is a less power consuming and much cheaper wireless technique than other types. There are several methods for locating wireless sensor nodes, such as angle of arrival (AOA), time of arrival (TOA), and received signal strength indicator (RSSI) [20]-[24]. The advantage of employing the RSSI values is that no extra hardware is needed for network-centric localization [25]. But according to the results have been done in the literature, the positioning error is still above 1 m. Therefore, we propose a modified binocular vision algorithm used with the WSN localization system in this paper for reducing the positioning error to less than 20 cm within the range of 2 m [26]. ISBN:

2 In addition, controlling mobile robots remotely through the Internet has increased the value of their application [27]-[30]. In this paper, we apply interactive web technologies to develop the webbased application including two interfaces of clientside and server-side. The client-side is a graphical user interface (GUI) for task assignments and monitoring real-time state of the mobile robot, and the server-side interface combines the computation kernel of a modified ACO algorithm for generating a feasible path planning with a database management system for recording purpose. The remainder of this paper is organized as follows. Section 2 briefly describes the proposed modified ACO algorithm. Section 3 presents the architecture of the web-based mobile robot, including the interactive interface, the localization system based on WSN and stereo vision. Simulation results and performance of the proposed scheme are presented and discussed in Section 4. Finally, conclusions are given in Section 5. 2 The Ant Colony Optimization Ant colony optimization (ACO) is a kind of metaheuristics inspired by the collective behavior of real ants in seeking the shortest paths between their nest and a source of food. ACO has been applied to solve many different types of optimization problems, such as the traveling salesman problem, the quadratic assignment problem, the vehicle routing problem, the job-shop scheduling problem, and the optimal path planning problem for mobile robots. In this paper, the proposed path planning algorithm for a mobile robot is a modification of the original ACO proposed by Dorigo et al. [11]-[14] for solving the traveling salesman problem. The major difference is the constraint of space in indoor environment. Here, assume that a mobile service robot serves in an office building for delivering documents and packages, and Fig. 1 shows the planar graph of this working environment. There are many offices connect by an approximately squareshaped corridor. If two tasks assigned to the robot at the same time, one is from room 207 to room 205 and the other is from room 206 to room 202. Obviously, the shortest path is from room 207 to room 202 and stops at room 206 and room 202, not the path firstly starting from room 207 to room 205 and then moving back to room 206 and finally reaching at room 202. The modified ACO algorithm for the path finding problem in this paper basically consists of 4 steps: (1) Initialization: Initialize the pheromone Fig. 1 The planar graph of the working environment. trails and set all parameters; (2) Iteration: While stopping criteria is not met do the following steps: (i) Build a solution and record the visited nodes by the ant in its tabu table; (ii) Improve the solution by local search; (iii) Update the pheromone trails by the solution; (3) Checking constraints: The solution must satisfy the space constraints as shown in Fig. 1; (4) Termination: Return the best solution found. Here, an ant located at node selects a path to go to another node is given by the transition probability:, if, (1) 0, otherwise, where denotes the pheromone trail intensity, is the inverse of the distance between nodes and and known as visibility, is the set of nodes not yet visited by ant, and are the positive parameters that determine the relative importance of path versus visibility. Moreover, in order to avoid the ACO algorithm falling into the local optimal solution, local pheromone updating rule is implemented after each ant completes its solution. The pheromone value on each path will be updated by 1 1, (2) where is the number of ants, is the evaporation rate ( 01) and is the amount of pheromone deposited by the th ant going from node to node and defined as, if, solution done by ant, (3) 0, otherwise, where is the length of the solution done by ant s and denotes a constant that controls the magnitude of the pheromone contribution. When every ant has found its solution, the globally best ISBN:

3 solution will be used to update the pheromone according to the global updating rule, as given by 1 1, (4) where is and defined as 1, if, globally best solution, (5) 0, otherwise. Here, is the total length of the globally best solution. 3 The Web-Based Mobile Robot In this paper, we present a new implementation of a web-based mobile robot as shown in Fig. 2. The robot consists of three major components: a webbased GUI, an indoor WSN-based localization system, and a modified stereo vision model for improving the accuracy of the indoor localization system. In this paper, a web-based GUI for remotely controlling and monitoring real-time state of the mobile robot is programmed following AJAX and ASP.NET server architecture as shown in Fig. 3. The left block provides users to add mission to the robot and shows the list of all missions. Furthermore, the right block provides the planar graph of the working environment and shows the real-time state of the robot. 3.2 WSN-based indoor localization system Indoor localization plays an important role in applications of WSNs. In this paper, we construct an indoor localization system for the mobile robot relying on the RSSI which is provided by the ZigBee platform. 3.1 Web-based interactive interface Currently there are many different web technologies which enable a robot to be controlled remotely through the Internet. Web technologies are generally what connects the interface between the servers and the clients and is made up of HTML (hypertext markup language), client-side and server-side scripts, and languages. Nowadays, web 2.0 is the latest trends in web design and the usage of web technologies [31]. The most characteristic feature of web 2.0 is dynamic content updating and AJAX (asynchronous JavaScript and XML) is becoming more and more popular with the prosperity of web 2.0. AJAX can not only retrieve data from a server asynchronously without interfering with the display and behavior of the existing page, but also greatly shorten network delay and basically change the interactive mode of web-based applications [32]. (a) (b) (a) (b) Fig. 2 Photograph of the web-based mobile robot with binocular vision: (a) Front left view and (b) back left view. (c) Fig. 3 Photograph of the web-based interface: (a) The starting page, (b) assigning a task and (c) the task shown on the map. ISBN:

4 RSSI is a technique of estimating the distance between a transmitter and a receiver by calculating the attenuation of emitted signal strength being received. In free space, the received signal power at distance from the transmitter can be calculated using the empirical equation 10 log, (6) where is the known reference power at the short reference distance from the transmitter, is the path-loss exponent decided by the ambient environment and the building construction, and is the Gaussian distribution random error with the zero-mean and -standard variance [33]. In practice, and must be measured according to the real environment. Therefore, wireless sensor nodes can calculate distance from transmitter through their own received RSSI value. 3.3 Binocular vision-based localization In this paper, a modified model of stereo vision is presented to develop a more accurate algorithm for computing three-dimensional information from a stereo pair of images by modification of the stereo vision model, as shown in Fig. 4 [26]. Two cameras are separated by a distance in the -direction and both optical axes are parallel. For convenience, the coordinate system centered between two cameras is called the world coordinate system. The goal is to find the coordinates,, of the world point having corresponding points, and, in left and right images, respectively. From the similar triangles of imaging as shown in Figs. 4(a) and 4(b), we have 2 2 2, (7) 2 2 where and are the horizontal positions and is the vertical position of the object in the two images (in pixels), and are the image width and height (in centimeters), respectively. In Eq. (7), we may note that only the units of,, and are in pixels. Here, we assumed that the image resolution is (in pixels). After being converted pixels to centimeters, Eq. (7) can be expressed in the form 2 2. (8) Then, the world coordinates,, may be computed as follows:, (9) 2 Optical axis,, World point Optical axis, /2 /2 World coordinate system CCD(L) CCD(R), /2 (a),, World point (b) Fig. 4 The modified model of binocular vision: (a) Top view and (b) right view. 2 2, (10). (11) In this paper, special signs are placed near every office entrance in the mobile robot environment as position markers for positioning error compensation. Namely, when the robot arrives near the office, it can find the special sign by its stereo vision system. Then the robot can accurately move to the front of the office entrance by using the proposed depth estimation method. 4 Simulation and Evaluation Due to space limitations, we can only present an example of simulation in this section to demonstrate the effectiveness of the proposed scheme. Fig. 5 shows the simulation result of the case of three tasks assigned to the web-based mobile robot concurrently, including Task 1: from room 206 to room 218, Task 2: from room 204 to room 203, and Task 3: from room 201 to room 205. We can see a flexible path generated by the proposed modified ACO algorithm shown in the bottom of the web- /2 Image plane Lens center /2 CCD Image planes, ISBN:

5 based GUI, i.e Here, we let the mobile robot be standby at the front of room 207. Subsequently, users can see a brown dot on the map representing the robot s current position in the working environment will move along the path correctly. 5 Conclusion In this paper an approach based on a modified ACO algorithm and interactive web technologies for the problem of real-time path planning has been applied to a web-based mobile robot. With this capability the mobile robot can be more flexible and effective in dealing with the dynamic task assignment in the working environment. Only simulation results have been carried out to demonstrate the effectiveness of the proposed scheme so far. Therefore, we will pay more attention to implementation of experiments in actual working environment in the near future. Acknowledgement: This work was supported by the National Science Council of Taiwan (R.O.C.) under grant number NSC E References: [1] S. X. Yang and C. Luo, A neural network approach to complete coverage path planning, IEEE Transactions on Systems, Man, and Cybernetics - Part B: Cybernetics, Vol. 34, No. 1, 2004, pp [2] H. Qu, S. X. Yang, A. R. Willms, and Z. Yi, Real-time robot path planning based on a modified pulse-coupled neural network model, IEEE Transactions on Neural Networks, Vol. 20, No. 11, 2009, pp [3] G. Antonelli, S. Chiaverini, and G. Fusco, A fuzzy-logic-based approach for mobile robot path tracking, IEEE Transactions on Fuzzy Systems, Vol. 15, No. 2, 2007, pp [4] M. Wang and J. N. K. Liu, Fuzzy logic based robot path planning in unknown environment, in Proceedings of the 4th International Conference on Machine Learning and Cybernetics, Guangzhou, China, Aug , 2005, pp [5] O. Castillo and L. Trujillo, Multiple objective optimization genetic algorithms for path planning in autonomous mobile robots, International Journal of Computers, Systems and Signals, Vol. 6, No. 1, 2005, pp Fig. 5 The simulation result of a set of tasks. [6] S. C. Yun, V. Ganapathy, and L. O. Chong, Improved genetic algorithms based optimum path planning for mobile robot, in Proceedings of the 11th International Conference on Control, Automation, Robotics and Vision, Singapore, Dec. 7-10, 2010, pp [7] H. Zhang, M. Liu, R. Liu, and T. Hu, Path planning of robot in three-dimensional grid environment based on genetic algorithms, in Proceedings of the 7th World Congress on Intelligent Control and Automation, Chongqing, China, Jun , 2008, pp [8] P. Li, X. Huang, and M. Wang, A hybrid method for dynamic local path planning, in Proceedings of the International Conference on Networks Security, Wireless Communications and Trusted Computing, Hubei, China, Apr , 2009, Vol. 1, pp [9] H. C. Huang and C. C. Tsai, Global path planning for autonomous robot navigation using hybrid metaheuristic GA-PAO algorithm, in Proceedings of the SICE Annual Conference, Tokyo, Japan, Sep , 2011, pp [10] E. Bonabeau, M. Dorigo and G. Theraulaz, Swarm Intelligence: From Natural to Artificial Systems, New York: Oxford University Press, [11] A. Colorni, M. Dorigo, and V. Maniezzo, Distributed optimization by ant colonies, in Proceedings of the 1st European Conference on Artificial Life, Paris, France, Dec. 1-3, 1991, pp [12] M. Dorigo, Optimization, Learning and Natural Algorithms, PhD Thesis, Politecnico di Milano, Italy, [13] M. Dorigo, V. Maniezzo, and A. Colorni, Ant system: optimization by a colony of cooperating agents, IEEE Transactions on Systems, Man, and Cybernetics - Part B: Cybernetics, Vol. 26, No. 1, 1996, pp ISBN:

6 [14] M. Dorigo and T. Stützle, Ant Colony Optimization, Cambridge, MA: The MIT Press, [15] C. A. Sierakowski and L. S. Coelho, Study of two swarm intelligence techniques for path planning of mobile robots, in Proceedings of the 16th International Federation of Automatic Control World Congress, Prague, Czech Republic, Jul. 4-8, [16] X. Chen and Y. Li, Smooth path planning of a mobile robot using stochastic particle swarm optimization, in Proceedings of the IEEE International Conference on Mechatronics and Automation, Luoyang, China, Jun , 2006, pp [17] M. A. P. Garcia, O. Montiel, O. Castillo, R. Sepúlveda, and P. Melin, Path planning for autonomous mobile robot navigation with ant colony optimization and fuzzy cost function evaluation, Applied Soft Computing, Vol. 9, No. 3, 2009, pp [18] M. Brand, M. Masuda, N. Wehner, and X. H. Yu, Ant colony optimization algorithm for robot path planning, in Proceedings of the International Conference on Computer Design and Applications, Hebei, China, Jun , 2010, Vol. 3, pp [19] J. Zhao and X. Fu, Improved ant colony optimization algorithm and its application on path planning of mobile robot, Journal of Computers, Vol. 7, No. 8, 2012, pp [20] M. A. Batalin, G. S. Sukhatme, and M. Hattig, Mobile robot navigation using a sensor network, in Proceedings of the IEEE International Conference on Robotics and Automation, New Orleans, LA, Apr. 26 May 1, 2004, pp [21] H. Xue and H. X. Ma, Online real-time path planning for mobile robots based on wireless sensor network under unknown environment, in Proceedings of the IEEE International Conference on Robotics and Biomimetics, Sanya, China, Dec , 2007, pp [22] R. C. Luo, Y. D. Hong, W. L. Hsu, and S. S. Huang, Mobile sensor node localization and path planning for ubiquitous service, in Proceedings of the IEEE International Conference on Mechatronics and Automation, Changchun, China, Aug. 9-12, 2009, pp [23] R. Li, Z. Fang, B. Hao, and F. Yang, Research on indoor wireless localization system for radioactive sources based on ZigBee, in Proceedings on the International Conference on Computing, Control and Industrial Engineering, Hebei, China, Jun. 5-6, 2010, Vol. 2, pp [24] L. Cheng, C. D. Wu, and Y. Z. Zhang, Indoor robot localization based on wireless sensor networks, IEEE Transactions on Consumer Electronics, Vol. 57, No. 3, 2011, pp [25] A. Awad, T. Frunzke, and F. Dressler, Adaptive distance estimation and localization in WSN using RSSI Measures, in Proceedings of the 10th Euromicro Conference on Digital System Design Architectures, Methods and Tools, Lubeck, Germany, Aug , 2007, pp [26] K. Y. Chen, C. C. Chien, and C. T. Tseng, Improving the accuracy of depth estimation in binocular vision for robotic applications, Applied Mechanics and Materials, Vols , 2013, pp [27] T. M. Chen and R. C. Luo, Remote supervisory control of an autonomous mobile robot via World Wide Web, in Proceedings of the IEEE International Symposium on Industrial Electronics, Guimarães, Portugal, Jul. 7-11, 1997, Vol. 1, pp. SS [28] H. M. Barberá, M. A. Z. Izquierdo, and A. F. G. Skarmeta, Web-based supervisory control of mobile robots, in Proceedings of the 10th IEEE International Workshop on Robot and Human Interactive Communication, Bordeaux and Paris, France, Sep , 2001, pp [29] H. Hu, L. Yu, P. W. Tsui, and Q. Zhou, Internet-based robotics systems for teleoperation, International Journal of Assembly Automation, Vol. 21, No. 2, 2001, pp [30] Q. Chen, H. Geng, and P. Y. Woo, Research on and pure Java realization of a web-based mobile robot system, in Proceedings of the American Control Conference, Denver, Colorado, USA, Jun. 4-6, 2003, pp [31] T. O Reilly, What is web 2.0: design patterns and business models for the next generation of software, International Journal of Digital Economics, No. 65, 2007, pp [32] J. J. Garrett, Ajax: a new approach to web applications, Adaptive Path Studio, [33] G. Mao, B. Fidan, and B. D. O. Anderson, Wireless sensor network localization techniques, Computer Networks, Vol. 51, 2007, pp ISBN:

On-line scheduling algorithm for real-time multiprocessor systems with ACO

On-line scheduling algorithm for real-time multiprocessor systems with ACO International Journal of Intelligent Information Systems 2015; 4(2-1): 13-17 Published online January 28, 2015 (http://www.sciencepublishinggroup.com/j/ijiis) doi: 10.11648/j.ijiis.s.2015040201.13 ISSN:

More information

An ACO Approach to Solve a Variant of TSP

An ACO Approach to Solve a Variant of TSP An ACO Approach to Solve a Variant of TSP Bharat V. Chawda, Nitesh M. Sureja Abstract This study is an investigation on the application of Ant Colony Optimization to a variant of TSP. This paper presents

More information

AN APPROACH FOR OBJECT FINDING USING MOBILE ROBOTS BASED ON ACO

AN APPROACH FOR OBJECT FINDING USING MOBILE ROBOTS BASED ON ACO AN APPROACH FOR OBJECT FINDING USING MOBILE ROBOTS BASED ON ACO Mrs. Amita.P. Meshram 1 and Mrs. Smita.R. Kapse 2 1 Department of Computer Technology, Y.C.C.E Hingna Road,Nagpur.16 India. amitameshram@gmail.com

More information

A Routing Algorithm Designed for Wireless Sensor Networks: Balanced Load-Latency Convergecast Tree with Dynamic Modification

A Routing Algorithm Designed for Wireless Sensor Networks: Balanced Load-Latency Convergecast Tree with Dynamic Modification A Routing Algorithm Designed for Wireless Sensor Networks: Balanced Load-Latency Convergecast Tree with Dynamic Modification Sheng-Cong Hu r00631036@ntu.edu.tw Jen-Hou Liu r99631038@ntu.edu.tw Min-Sheng

More information

CONCEPTUAL MODEL OF MULTI-AGENT BUSINESS COLLABORATION BASED ON CLOUD WORKFLOW

CONCEPTUAL MODEL OF MULTI-AGENT BUSINESS COLLABORATION BASED ON CLOUD WORKFLOW CONCEPTUAL MODEL OF MULTI-AGENT BUSINESS COLLABORATION BASED ON CLOUD WORKFLOW 1 XINQIN GAO, 2 MINGSHUN YANG, 3 YONG LIU, 4 XIAOLI HOU School of Mechanical and Precision Instrument Engineering, Xi'an University

More information

Modified Ant Colony Optimization for Solving Traveling Salesman Problem

Modified Ant Colony Optimization for Solving Traveling Salesman Problem International Journal of Engineering & Computer Science IJECS-IJENS Vol:3 No:0 Modified Ant Colony Optimization for Solving Traveling Salesman Problem Abstract-- This paper presents a new algorithm for

More information

A RANDOMIZED LOAD BALANCING ALGORITHM IN GRID USING MAX MIN PSO ALGORITHM

A RANDOMIZED LOAD BALANCING ALGORITHM IN GRID USING MAX MIN PSO ALGORITHM International Journal of Research in Computer Science eissn 2249-8265 Volume 2 Issue 3 (212) pp. 17-23 White Globe Publications A RANDOMIZED LOAD BALANCING ALGORITHM IN GRID USING MAX MIN ALGORITHM C.Kalpana

More information

Using Ant Colony Optimization for Infrastructure Maintenance Scheduling

Using Ant Colony Optimization for Infrastructure Maintenance Scheduling Using Ant Colony Optimization for Infrastructure Maintenance Scheduling K. Lukas, A. Borrmann & E. Rank Chair for Computation in Engineering, Technische Universität München ABSTRACT: For the optimal planning

More information

An Improved ACO Algorithm for Multicast Routing

An Improved ACO Algorithm for Multicast Routing An Improved ACO Algorithm for Multicast Routing Ziqiang Wang and Dexian Zhang School of Information Science and Engineering, Henan University of Technology, Zheng Zhou 450052,China wzqagent@xinhuanet.com

More information

Continuous Fastest Path Planning in Road Networks by Mining Real-Time Traffic Event Information

Continuous Fastest Path Planning in Road Networks by Mining Real-Time Traffic Event Information Continuous Fastest Path Planning in Road Networks by Mining Real-Time Traffic Event Information Eric Hsueh-Chan Lu Chi-Wei Huang Vincent S. Tseng Institute of Computer Science and Information Engineering

More information

Hybrid Algorithm using the advantage of ACO and Cuckoo Search for Job Scheduling

Hybrid Algorithm using the advantage of ACO and Cuckoo Search for Job Scheduling Hybrid Algorithm using the advantage of ACO and Cuckoo Search for Job Scheduling R.G. Babukartik 1, P. Dhavachelvan 1 1 Department of Computer Science, Pondicherry University, Pondicherry, India {r.g.babukarthik,

More information

AN EFFICIENT LOAD BALANCING APPROACH IN CLOUD SERVER USING ANT COLONY OPTIMIZATION

AN EFFICIENT LOAD BALANCING APPROACH IN CLOUD SERVER USING ANT COLONY OPTIMIZATION AN EFFICIENT LOAD BALANCING APPROACH IN CLOUD SERVER USING ANT COLONY OPTIMIZATION Shanmuga Priya.J 1, Sridevi.A 2 1 PG Scholar, Department of Information Technology, J.J College of Engineering and Technology

More information

Study on Cloud Computing Resource Scheduling Strategy Based on the Ant Colony Optimization Algorithm

Study on Cloud Computing Resource Scheduling Strategy Based on the Ant Colony Optimization Algorithm www.ijcsi.org 54 Study on Cloud Computing Resource Scheduling Strategy Based on the Ant Colony Optimization Algorithm Linan Zhu 1, Qingshui Li 2, and Lingna He 3 1 College of Mechanical Engineering, Zhejiang

More information

Obstacle Avoidance Design for Humanoid Robot Based on Four Infrared Sensors

Obstacle Avoidance Design for Humanoid Robot Based on Four Infrared Sensors Tamkang Journal of Science and Engineering, Vol. 12, No. 3, pp. 249 258 (2009) 249 Obstacle Avoidance Design for Humanoid Robot Based on Four Infrared Sensors Ching-Chang Wong 1 *, Chi-Tai Cheng 1, Kai-Hsiang

More information

HYBRID ACO-IWD OPTIMIZATION ALGORITHM FOR MINIMIZING WEIGHTED FLOWTIME IN CLOUD-BASED PARAMETER SWEEP EXPERIMENTS

HYBRID ACO-IWD OPTIMIZATION ALGORITHM FOR MINIMIZING WEIGHTED FLOWTIME IN CLOUD-BASED PARAMETER SWEEP EXPERIMENTS HYBRID ACO-IWD OPTIMIZATION ALGORITHM FOR MINIMIZING WEIGHTED FLOWTIME IN CLOUD-BASED PARAMETER SWEEP EXPERIMENTS R. Angel Preethima 1, Margret Johnson 2 1 Student, Computer Science and Engineering, Karunya

More information

Mobile Network Analysis - Hole Healing

Mobile Network Analysis - Hole Healing , pp.143-150 http://dx.doi.org/10.14257/ijfgcn.2013.6.6.15 Decentralized Mobile Sensor Navigation for Hole Healing Policy in Wireless Hybrid Sensor Networks Fu-Tian Lin 1, 2, Chu-Sing Yang 1, Tien-Wen

More information

Multi-Robot Traffic Planning Using ACO

Multi-Robot Traffic Planning Using ACO Multi-Robot Traffic Planning Using ACO DR. ANUPAM SHUKLA, SANYAM AGARWAL ABV-Indian Institute of Information Technology and Management, Gwalior INDIA Sanyam.iiitm@gmail.com Abstract: - Path planning is

More information

ANT COLONY OPTIMIZATION ALGORITHM FOR RESOURCE LEVELING PROBLEM OF CONSTRUCTION PROJECT

ANT COLONY OPTIMIZATION ALGORITHM FOR RESOURCE LEVELING PROBLEM OF CONSTRUCTION PROJECT ANT COLONY OPTIMIZATION ALGORITHM FOR RESOURCE LEVELING PROBLEM OF CONSTRUCTION PROJECT Ying XIONG 1, Ya Ping KUANG 2 1. School of Economics and Management, Being Jiaotong Univ., Being, China. 2. College

More information

Design of Electronic Medical Record System Based on Cloud Computing Technology

Design of Electronic Medical Record System Based on Cloud Computing Technology TELKOMNIKA Indonesian Journal of Electrical Engineering Vol.12, No.5, May 2014, pp. 4010 ~ 4017 DOI: http://dx.doi.org/10.11591/telkomnika.v12i5.4392 4010 Design of Electronic Medical Record System Based

More information

Towards Participatory Design of Multi-agent Approach to Transport Demands

Towards Participatory Design of Multi-agent Approach to Transport Demands ISSN (Online): 1694-0784 ISSN (Print): 1694-0814 Towards Participatory Design of Multi-agent Approach to Transport Demands 10 Yee Ming Chen 1, Bo-Yuan Wang Department of Industrial Engineering and Management

More information

A Load Balancing Algorithm based on the Variation Trend of Entropy in Homogeneous Cluster

A Load Balancing Algorithm based on the Variation Trend of Entropy in Homogeneous Cluster , pp.11-20 http://dx.doi.org/10.14257/ ijgdc.2014.7.2.02 A Load Balancing Algorithm based on the Variation Trend of Entropy in Homogeneous Cluster Kehe Wu 1, Long Chen 2, Shichao Ye 2 and Yi Li 2 1 Beijing

More information

International Journal of Emerging Technology & Research

International Journal of Emerging Technology & Research International Journal of Emerging Technology & Research An Implementation Scheme For Software Project Management With Event-Based Scheduler Using Ant Colony Optimization Roshni Jain 1, Monali Kankariya

More information

The Application Research of Ant Colony Algorithm in Search Engine Jian Lan Liu1, a, Li Zhu2,b

The Application Research of Ant Colony Algorithm in Search Engine Jian Lan Liu1, a, Li Zhu2,b 3rd International Conference on Materials Engineering, Manufacturing Technology and Control (ICMEMTC 2016) The Application Research of Ant Colony Algorithm in Search Engine Jian Lan Liu1, a, Li Zhu2,b

More information

STUDY OF PROJECT SCHEDULING AND RESOURCE ALLOCATION USING ANT COLONY OPTIMIZATION 1

STUDY OF PROJECT SCHEDULING AND RESOURCE ALLOCATION USING ANT COLONY OPTIMIZATION 1 STUDY OF PROJECT SCHEDULING AND RESOURCE ALLOCATION USING ANT COLONY OPTIMIZATION 1 Prajakta Joglekar, 2 Pallavi Jaiswal, 3 Vandana Jagtap Maharashtra Institute of Technology, Pune Email: 1 somanprajakta@gmail.com,

More information

Optimize Position and Path Planning of Automated Optical Inspection

Optimize Position and Path Planning of Automated Optical Inspection Journal of Computational Information Systems 8: 7 (2012) 2957 2963 Available at http://www.jofcis.com Optimize Position and Path Planning of Automated Optical Inspection Hao WU, Yongcong KUANG, Gaofei

More information

THE ACO ALGORITHM FOR CONTAINER TRANSPORTATION NETWORK OF SEAPORTS

THE ACO ALGORITHM FOR CONTAINER TRANSPORTATION NETWORK OF SEAPORTS THE ACO ALGORITHM FOR CONTAINER TRANSPORTATION NETWORK OF SEAPORTS Zian GUO Associate Professor School of Civil and Hydraulic Engineering Dalian University of Technology 2 Linggong Road, Ganjingzi District,

More information

Capability Service Management System for Manufacturing Equipments in

Capability Service Management System for Manufacturing Equipments in Capability Service Management System for Manufacturing Equipments in Cloud Manufacturing 1 Junwei Yan, 2 Sijin Xin, 3 Quan Liu, 4 Wenjun Xu *1, Corresponding Author School of Information Engineering, Wuhan

More information

Indoor Surveillance Security Robot with a Self-Propelled Patrolling Vehicle

Indoor Surveillance Security Robot with a Self-Propelled Patrolling Vehicle C Indoor Surveillance Security Robot with a Self-Propelled Patrolling Vehicle Hou-Tsan Lee, Wei-Chuan Lin, Jing-Siang Huang Department of Information Technology, TakMing University of Science and Technology

More information

CLOUD DATABASE ROUTE SCHEDULING USING COMBANATION OF PARTICLE SWARM OPTIMIZATION AND GENETIC ALGORITHM

CLOUD DATABASE ROUTE SCHEDULING USING COMBANATION OF PARTICLE SWARM OPTIMIZATION AND GENETIC ALGORITHM CLOUD DATABASE ROUTE SCHEDULING USING COMBANATION OF PARTICLE SWARM OPTIMIZATION AND GENETIC ALGORITHM *Shabnam Ghasemi 1 and Mohammad Kalantari 2 1 Deparment of Computer Engineering, Islamic Azad University,

More information

A Scheme for Implementing Load Balancing of Web Server

A Scheme for Implementing Load Balancing of Web Server Journal of Information & Computational Science 7: 3 (2010) 759 765 Available at http://www.joics.com A Scheme for Implementing Load Balancing of Web Server Jianwu Wu School of Politics and Law and Public

More information

Numerical Research on Distributed Genetic Algorithm with Redundant

Numerical Research on Distributed Genetic Algorithm with Redundant Numerical Research on Distributed Genetic Algorithm with Redundant Binary Number 1 Sayori Seto, 2 Akinori Kanasugi 1,2 Graduate School of Engineering, Tokyo Denki University, Japan 10kme41@ms.dendai.ac.jp,

More information

Multifunctional Barcode Inventory System for Retailing. Are You Ready for It?

Multifunctional Barcode Inventory System for Retailing. Are You Ready for It? Multifunctional Barcode Inventory System for Retailing. Are You Ready for It? Ling Shi Cai, Leau Yu Beng, Charlie Albert Lasuin, Tan Soo Fun, Chin Pei Yee Abstract This paper explains the development of

More information

WEB SERVICES OF MMS APPLICATIONS ON MOBILE DEVICES

WEB SERVICES OF MMS APPLICATIONS ON MOBILE DEVICES Journal of Marine Science and Technology, Vol. 14, No. 3, pp. 165-169 (2006) 165 WEB SERVICES OF MMS APPLICATIONS ON MOBILE DEVICES Cheng-Chih Yang* and Cheng-Min Lin** Key words: MMS, PDA, WSDL, GPRS.

More information

IAJIT First Online Publication

IAJIT First Online Publication Using the Ant Colony Algorithm for Real-Time Automatic Route of School Buses Tuncay Yigit and Ozkan Unsal Department of Computer Engineering, Süleyman Demirel University, Turkey Abstract: Transportation

More information

TEST CASE SELECTION & PRIORITIZATION USING ANT COLONY OPTIMIZATION

TEST CASE SELECTION & PRIORITIZATION USING ANT COLONY OPTIMIZATION TEST CASE SELECTION & PRIORITIZATION USING ANT COLONY OPTIMIZATION Bharti Suri Computer Science Department Assistant Professor, USIT, GGSIPU New Delhi, India bhartisuri@gmail.com Shweta Singhal Information

More information

INTERNATIONAL JOURNAL OF COMPUTER ENGINEERING & TECHNOLOGY (IJCET)

INTERNATIONAL JOURNAL OF COMPUTER ENGINEERING & TECHNOLOGY (IJCET) INTERNATIONAL JOURNAL OF COMPUTER ENGINEERING & TECHNOLOGY (IJCET) International Journal of Computer Engineering and Technology (IJCET), ISSN 0976 6367(Print), ISSN 0976 6367(Print) ISSN 0976 6375(Online)

More information

Wireless Sensor Networks Coverage Optimization based on Improved AFSA Algorithm

Wireless Sensor Networks Coverage Optimization based on Improved AFSA Algorithm , pp. 99-108 http://dx.doi.org/10.1457/ijfgcn.015.8.1.11 Wireless Sensor Networks Coverage Optimization based on Improved AFSA Algorithm Wang DaWei and Wang Changliang Zhejiang Industry Polytechnic College

More information

Original Research Articles

Original Research Articles Original Research Articles Researchers Mr.Ramchandra K. Gurav, Prof. Mahesh S. Kumbhar Department of Electronics & Telecommunication, Rajarambapu Institute of Technology, Sakharale, M.S., INDIA Email-

More information

Research and realization of Resource Cloud Encapsulation in Cloud Manufacturing

Research and realization of Resource Cloud Encapsulation in Cloud Manufacturing www.ijcsi.org 579 Research and realization of Resource Cloud Encapsulation in Cloud Manufacturing Zhang Ming 1, Hu Chunyang 2 1 Department of Teaching and Practicing, Guilin University of Electronic Technology

More information

Establishment of Fire Control Management System in Building Information Modeling Environment

Establishment of Fire Control Management System in Building Information Modeling Environment Establishment of Fire Control Management System in Building Information Modeling Environment Yan-Chyuan Shiau 1, Chong-Teng Chang 2 Department of Construction Management, Chung Hua University, 707, Wu-Fu

More information

Journal of Theoretical and Applied Information Technology 20 th July 2015. Vol.77. No.2 2005-2015 JATIT & LLS. All rights reserved.

Journal of Theoretical and Applied Information Technology 20 th July 2015. Vol.77. No.2 2005-2015 JATIT & LLS. All rights reserved. EFFICIENT LOAD BALANCING USING ANT COLONY OPTIMIZATION MOHAMMAD H. NADIMI-SHAHRAKI, ELNAZ SHAFIGH FARD, FARAMARZ SAFI Department of Computer Engineering, Najafabad branch, Islamic Azad University, Najafabad,

More information

Solving Traveling Salesman Problem by Using Improved Ant Colony Optimization Algorithm

Solving Traveling Salesman Problem by Using Improved Ant Colony Optimization Algorithm Solving Traveling Salesman Problem by Using Improved Ant Colony Optimization Algorithm Zar Chi Su Su Hlaing and May Aye Khine, Member, IACSIT Abstract Ant colony optimization () is a heuristic algorithm

More information

ACO Hypercube Framework for Solving a University Course Timetabling Problem

ACO Hypercube Framework for Solving a University Course Timetabling Problem ACO Hypercube Framework for Solving a University Course Timetabling Problem José Miguel Rubio, Franklin Johnson and Broderick Crawford Abstract We present a resolution technique of the University course

More information

RESEARCH ON THE APPLICATION OF WORKFLOW MANAGEMENT SYSTEM IN COLLABORATIVE PLATFORM FOR ENGLISH TEACHING

RESEARCH ON THE APPLICATION OF WORKFLOW MANAGEMENT SYSTEM IN COLLABORATIVE PLATFORM FOR ENGLISH TEACHING Computer Modelling and New Technologies, 2013, vol. 17, no. 3, 93 98 Transport and Telecommunication Institute, Lomonosov 1, LV-1019, Riga, Latvia RESEARCH ON THE APPLICATION OF WORKFLOW MANAGEMENT SYSTEM

More information

A Survey on Load Balancing Techniques Using ACO Algorithm

A Survey on Load Balancing Techniques Using ACO Algorithm A Survey on Load Balancing Techniques Using ACO Algorithm Preeti Kushwah Department of Computer Science & Engineering, Acropolis Institute of Technology and Research Indore bypass road Mangliya square

More information

Implementing Ant Colony Optimization for Test Case Selection and Prioritization

Implementing Ant Colony Optimization for Test Case Selection and Prioritization Implementing Ant Colony Optimization for Test Case Selection and Prioritization Bharti Suri Assistant Professor, Computer Science Department USIT, GGSIPU Delhi, India Shweta Singhal Student M.Tech (IT)

More information

Sensor-Based Robotic Model for Vehicle Accident Avoidance

Sensor-Based Robotic Model for Vehicle Accident Avoidance Copyright 2012 American Scientific Publishers All rights reserved Printed in the United States of America Journal of Computational Intelligence and Electronic Systems Vol. 1, 1 6, 2012 Sensor-Based Robotic

More information

Research on Applying Web3D Technology to College Library Instruction of Online Book Navigation System. Wang Shuo, Mu Dawei, Zhao Jinlong, Hu Xiaoli

Research on Applying Web3D Technology to College Library Instruction of Online Book Navigation System. Wang Shuo, Mu Dawei, Zhao Jinlong, Hu Xiaoli RESEARCH ON APPLYING WEB3D TECHNOLOGY TO COLLEGE LIBRARY INSTRUCTION OF ONLINE 3D BOOK NAVIGATION SYSTEM Wang Shuo, Mu Dawei, Zhao Jinlong, Hu Xiaoli (Library of Capital Normal University, Beijing, China,

More information

Optimal PID Controller Design for AVR System

Optimal PID Controller Design for AVR System Tamkang Journal of Science and Engineering, Vol. 2, No. 3, pp. 259 270 (2009) 259 Optimal PID Controller Design for AVR System Ching-Chang Wong*, Shih-An Li and Hou-Yi Wang Department of Electrical Engineering,

More information

An ant colony optimization for single-machine weighted tardiness scheduling with sequence-dependent setups

An ant colony optimization for single-machine weighted tardiness scheduling with sequence-dependent setups Proceedings of the 6th WSEAS International Conference on Simulation, Modelling and Optimization, Lisbon, Portugal, September 22-24, 2006 19 An ant colony optimization for single-machine weighted tardiness

More information

The Design and Application of Water Jet Propulsion Boat Weibo Song, Junhai Jiang3, a, Shuping Zhao, Kaiyan Zhu, Qihua Wang

The Design and Application of Water Jet Propulsion Boat Weibo Song, Junhai Jiang3, a, Shuping Zhao, Kaiyan Zhu, Qihua Wang International Conference on Automation, Mechanical Control and Computational Engineering (AMCCE 2015) The Design and Application of Water Jet Propulsion Boat Weibo Song, Junhai Jiang3, a, Shuping Zhao,

More information

Web Mining using Artificial Ant Colonies : A Survey

Web Mining using Artificial Ant Colonies : A Survey Web Mining using Artificial Ant Colonies : A Survey Richa Gupta Department of Computer Science University of Delhi ABSTRACT : Web mining has been very crucial to any organization as it provides useful

More information

A Service Revenue-oriented Task Scheduling Model of Cloud Computing

A Service Revenue-oriented Task Scheduling Model of Cloud Computing Journal of Information & Computational Science 10:10 (2013) 3153 3161 July 1, 2013 Available at http://www.joics.com A Service Revenue-oriented Task Scheduling Model of Cloud Computing Jianguang Deng a,b,,

More information

Wii Remote Calibration Using the Sensor Bar

Wii Remote Calibration Using the Sensor Bar Wii Remote Calibration Using the Sensor Bar Alparslan Yildiz Abdullah Akay Yusuf Sinan Akgul GIT Vision Lab - http://vision.gyte.edu.tr Gebze Institute of Technology Kocaeli, Turkey {yildiz, akay, akgul}@bilmuh.gyte.edu.tr

More information

An ACO-LB Algorithm for Task Scheduling in the Cloud Environment

An ACO-LB Algorithm for Task Scheduling in the Cloud Environment 466 JOURNAL OF SOFTWARE, VOL. 9, NO. 2, FEBRUARY 2014 An ACO-LB Algorithm for Task Scheduling in the Cloud Environment Shengjun Xue, Mengying Li, Xiaolong Xu, and Jingyi Chen Nanjing University of Information

More information

Development of a Web-based Information Service Platform for Protected Crop Pests

Development of a Web-based Information Service Platform for Protected Crop Pests Development of a Web-based Information Service Platform for Protected Crop Pests Chong Huang 1, Haiguang Wang 1 1 Department of Plant Pathology, China Agricultural University, Beijing, P. R. China 100193

More information

An ACO-based Approach for Scheduling Task Graphs with Communication Costs

An ACO-based Approach for Scheduling Task Graphs with Communication Costs An ACO-based Approach for Scheduling Task Graphs with Communication Costs Markus Bank Udo Hönig Wolfram Schiffmann FernUniversität Hagen Lehrgebiet Rechnerarchitektur 58084 Hagen, Germany {Markus.Bank,

More information

Biological inspired algorithm for Storage Area Networks (ACOSAN)

Biological inspired algorithm for Storage Area Networks (ACOSAN) Biological inspired algorithm for Storage Area Networks (ACOSAN) Anabel Fraga Vázquez 1 1 Universidad Carlos III de Madrid Av. Universidad, 30, Leganés, Madrid, SPAIN afraga@inf.uc3m.es Abstract. The routing

More information

TOURISM DEMAND FORECASTING USING A NOVEL HIGH-PRECISION FUZZY TIME SERIES MODEL. Ruey-Chyn Tsaur and Ting-Chun Kuo

TOURISM DEMAND FORECASTING USING A NOVEL HIGH-PRECISION FUZZY TIME SERIES MODEL. Ruey-Chyn Tsaur and Ting-Chun Kuo International Journal of Innovative Computing, Information and Control ICIC International c 2014 ISSN 1349-4198 Volume 10, Number 2, April 2014 pp. 695 701 OURISM DEMAND FORECASING USING A NOVEL HIGH-PRECISION

More information

Nighttime Vehicle Distance Alarm System

Nighttime Vehicle Distance Alarm System Proceedings of the 7th WSEAS Int. Conf. on Signal Processing, Computational Geometry & Artificial Vision, Athens, Greece, August 24-26, 2007 226 ighttime Vehicle Distance Alarm System MIG-CI LU *, WEI-YE

More information

Database Modeling and Visualization Simulation technology Based on Java3D Hongxia Liu

Database Modeling and Visualization Simulation technology Based on Java3D Hongxia Liu International Conference on Information Sciences, Machinery, Materials and Energy (ICISMME 05) Database Modeling and Visualization Simulation technology Based on Java3D Hongxia Liu Department of Electronic

More information

A Hybrid Load Balancing Policy underlying Cloud Computing Environment

A Hybrid Load Balancing Policy underlying Cloud Computing Environment A Hybrid Load Balancing Policy underlying Cloud Computing Environment S.C. WANG, S.C. TSENG, S.S. WANG*, K.Q. YAN* Chaoyang University of Technology 168, Jifeng E. Rd., Wufeng District, Taichung 41349

More information

3D SCANNING: A NEW APPROACH TOWARDS MODEL DEVELOPMENT IN ADVANCED MANUFACTURING SYSTEM

3D SCANNING: A NEW APPROACH TOWARDS MODEL DEVELOPMENT IN ADVANCED MANUFACTURING SYSTEM 3D SCANNING: A NEW APPROACH TOWARDS MODEL DEVELOPMENT IN ADVANCED MANUFACTURING SYSTEM Dr. Trikal Shivshankar 1, Patil Chinmay 2, Patokar Pradeep 3 Professor, Mechanical Engineering Department, SSGM Engineering

More information

THE LEAN-RESOURCES BASED CONSTRUCTION PROJECT PLANNING AND CONTROL SYSTEM

THE LEAN-RESOURCES BASED CONSTRUCTION PROJECT PLANNING AND CONTROL SYSTEM THE LEAN-RESOURCES BASED CONSTRUCTION PROJECT PLANNING AND CONTROL SYSTEM Tzu-An Chiang Department of Business Administration, National Taipei University of Business, Taipei (100), Taiwan phdallen@ntub.edu.tw

More information

Distributed Web-Based Desktop E-Manufacturing System

Distributed Web-Based Desktop E-Manufacturing System Distributed Web-Based Desktop E-Manufacturing System Jyh-Hwa Tzou Department of Mechanical Engineering, Wu-Feng Institute of Technology Chian-Kuo Rd, Sec. 2, Ming-Hsiung, Chia-Yi 621, Taiwan, R.O.C. Email:

More information

ISSN: 2321-7782 (Online) Volume 2, Issue 4, April 2014 International Journal of Advance Research in Computer Science and Management Studies

ISSN: 2321-7782 (Online) Volume 2, Issue 4, April 2014 International Journal of Advance Research in Computer Science and Management Studies ISSN: 2321-7782 (Online) Volume 2, Issue 4, April 2014 International Journal of Advance Research in Computer Science and Management Studies Research Article / Paper / Case Study Available online at: www.ijarcsms.com

More information

A method of generating free-route walk-through animation using vehicle-borne video image

A method of generating free-route walk-through animation using vehicle-borne video image A method of generating free-route walk-through animation using vehicle-borne video image Jun KUMAGAI* Ryosuke SHIBASAKI* *Graduate School of Frontier Sciences, Shibasaki lab. University of Tokyo 4-6-1

More information

AN APPROACH FOR SOFTWARE TEST CASE SELECTION USING HYBRID PSO

AN APPROACH FOR SOFTWARE TEST CASE SELECTION USING HYBRID PSO INTERNATIONAL JOURNAL OF RESEARCH IN COMPUTER APPLICATIONS AND ROBOTICS ISSN 2320-7345 AN APPROACH FOR SOFTWARE TEST CASE SELECTION USING HYBRID PSO 1 Preeti Bala Thakur, 2 Prof. Toran Verma 1 Dept. of

More information

Optimized New Efficient Load Balancing Technique For Scheduling Virtual Machine

Optimized New Efficient Load Balancing Technique For Scheduling Virtual Machine Optimized New Efficient Load Balancing Technique For Scheduling Virtual Machine B.Preethi 1, Prof. C. Kamalanathan 2, 1 PG Scholar, 2 Professor 1,2 Bannari Amman Institute of Technology Sathyamangalam,

More information

Research on the Performance Optimization of Hadoop in Big Data Environment

Research on the Performance Optimization of Hadoop in Big Data Environment Vol.8, No.5 (015), pp.93-304 http://dx.doi.org/10.1457/idta.015.8.5.6 Research on the Performance Optimization of Hadoop in Big Data Environment Jia Min-Zheng Department of Information Engineering, Beiing

More information

An Improved Ant Colony Optimization Algorithm for Software Project Planning and Scheduling

An Improved Ant Colony Optimization Algorithm for Software Project Planning and Scheduling An Improved Ant Colony Optimization Algorithm for Software Project Planning and Scheduling Avinash Mahadik Department Of Computer Engineering Alard College Of Engineering And Management,Marunje, Pune Email-avinash.mahadik5@gmail.com

More information

Software Project Planning and Resource Allocation Using Ant Colony Optimization with Uncertainty Handling

Software Project Planning and Resource Allocation Using Ant Colony Optimization with Uncertainty Handling Software Project Planning and Resource Allocation Using Ant Colony Optimization with Uncertainty Handling Vivek Kurien1, Rashmi S Nair2 PG Student, Dept of Computer Science, MCET, Anad, Tvm, Kerala, India

More information

Towards a Content Delivery Load Balance Algorithm Based on Probability Matching in Cloud Storage

Towards a Content Delivery Load Balance Algorithm Based on Probability Matching in Cloud Storage Send Orders for Reprints to reprints@benthamscience.ae The Open Cybernetics & Systemics Journal, 2015, 9, 2211-2217 2211 Open Access Towards a Content Delivery Load Balance Algorithm Based on Probability

More information

PHOTOGRAMMETRIC TECHNIQUES FOR MEASUREMENTS IN WOODWORKING INDUSTRY

PHOTOGRAMMETRIC TECHNIQUES FOR MEASUREMENTS IN WOODWORKING INDUSTRY PHOTOGRAMMETRIC TECHNIQUES FOR MEASUREMENTS IN WOODWORKING INDUSTRY V. Knyaz a, *, Yu. Visilter, S. Zheltov a State Research Institute for Aviation System (GosNIIAS), 7, Victorenko str., Moscow, Russia

More information

Friendly Medical Image Sharing Scheme

Friendly Medical Image Sharing Scheme Journal of Information Hiding and Multimedia Signal Processing 2014 ISSN 2073-4212 Ubiquitous International Volume 5, Number 3, July 2014 Frily Medical Image Sharing Scheme Hao-Kuan Tso Department of Computer

More information

Preventing DDOS attack in Mobile Ad-hoc Network using a Secure Intrusion Detection System

Preventing DDOS attack in Mobile Ad-hoc Network using a Secure Intrusion Detection System Preventing DDOS attack in Mobile Ad-hoc Network using a Secure Intrusion Detection System Shams Fathima M.Tech,Department of Computer Science Kakatiya Institute of Technology & Science, Warangal,India

More information

ACO FOR OPTIMAL SENSOR LAYOUT

ACO FOR OPTIMAL SENSOR LAYOUT Stefka Fidanova 1, Pencho Marinov 1 and Enrique Alba 2 1 Institute for Parallel Processing, Bulgarian Academy of Science, Acad. G. Bonchev str. bl.25a, 1113 Sofia, Bulgaria 2 E.T.S.I. Informatica, Grupo

More information

How To Balance A Web Server With Remaining Capacity

How To Balance A Web Server With Remaining Capacity Remaining Capacity Based Load Balancing Architecture for Heterogeneous Web Server System Tsang-Long Pao Dept. Computer Science and Engineering Tatung University Taipei, ROC Jian-Bo Chen Dept. Computer

More information

A New Method for Traffic Forecasting Based on the Data Mining Technology with Artificial Intelligent Algorithms

A New Method for Traffic Forecasting Based on the Data Mining Technology with Artificial Intelligent Algorithms Research Journal of Applied Sciences, Engineering and Technology 5(12): 3417-3422, 213 ISSN: 24-7459; e-issn: 24-7467 Maxwell Scientific Organization, 213 Submitted: October 17, 212 Accepted: November

More information

Supply Chain Forecasting Model Using Computational Intelligence Techniques

Supply Chain Forecasting Model Using Computational Intelligence Techniques CMU.J.Nat.Sci Special Issue on Manufacturing Technology (2011) Vol.10(1) 19 Supply Chain Forecasting Model Using Computational Intelligence Techniques Wimalin S. Laosiritaworn Department of Industrial

More information

Object Request Reduction in Home Nodes and Load Balancing of Object Request in Hybrid Decentralized Web Caching

Object Request Reduction in Home Nodes and Load Balancing of Object Request in Hybrid Decentralized Web Caching 2012 2 nd International Conference on Information Communication and Management (ICICM 2012) IPCSIT vol. 55 (2012) (2012) IACSIT Press, Singapore DOI: 10.7763/IPCSIT.2012.V55.5 Object Request Reduction

More information

Research on Task Planning Based on Activity Period in Manufacturing Grid

Research on Task Planning Based on Activity Period in Manufacturing Grid Research on Task Planning Based on Activity Period in Manufacturing Grid He Yu an, Yu Tao, Hu Da chao Abstract In manufacturing grid (MG), activities of the manufacturing task need to be planed after the

More information

Swarm Intelligence Algorithms Parameter Tuning

Swarm Intelligence Algorithms Parameter Tuning Swarm Intelligence Algorithms Parameter Tuning Milan TUBA Faculty of Computer Science Megatrend University of Belgrade Bulevar umetnosti 29, N. Belgrade SERBIA tuba@ieee.org Abstract: - Nature inspired

More information

A SURVEY ON LOAD BALANCING ALGORITHMS IN CLOUD COMPUTING

A SURVEY ON LOAD BALANCING ALGORITHMS IN CLOUD COMPUTING A SURVEY ON LOAD BALANCING ALGORITHMS IN CLOUD COMPUTING Harshada Raut 1, Kumud Wasnik 2 1 M.Tech. Student, Dept. of Computer Science and Tech., UMIT, S.N.D.T. Women s University, (India) 2 Professor,

More information

RFID Based 3D Indoor Navigation System Integrated with Smart Phones

RFID Based 3D Indoor Navigation System Integrated with Smart Phones RFID Based 3D Indoor Navigation System Integrated with Smart Phones Y. Ortakci*, E. Demiral*, I. R. Karas* * Karabuk University, Computer Engineering Department, Demir Celik Kampusu, 78050, Karabuk, Turkey

More information

AUTOMATIC ACCIDENT DETECTION AND AMBULANCE RESCUE WITH INTELLIGENT TRAFFIC LIGHT SYSTEM

AUTOMATIC ACCIDENT DETECTION AND AMBULANCE RESCUE WITH INTELLIGENT TRAFFIC LIGHT SYSTEM AUTOMATIC ACCIDENT DETECTION AND AMBULANCE RESCUE WITH INTELLIGENT TRAFFIC LIGHT SYSTEM Mr.S.Iyyappan 1, Mr.V.Nandagopal 2 P.G Scholar, Dept. of EEE, Ganadipathy Tulis s Jain Engineering College, Vellore,

More information

Optimizing Resource Consumption in Computational Cloud Using Enhanced ACO Algorithm

Optimizing Resource Consumption in Computational Cloud Using Enhanced ACO Algorithm Optimizing Resource Consumption in Computational Cloud Using Enhanced ACO Algorithm Preeti Kushwah, Dr. Abhay Kothari Department of Computer Science & Engineering, Acropolis Institute of Technology and

More information

Comparison of Ant Colony and Bee Colony Optimization for Spam Host Detection

Comparison of Ant Colony and Bee Colony Optimization for Spam Host Detection International Journal of Engineering Research and Development eissn : 2278-067X, pissn : 2278-800X, www.ijerd.com Volume 4, Issue 8 (November 2012), PP. 26-32 Comparison of Ant Colony and Bee Colony Optimization

More information

Circle Object Recognition Based on Monocular Vision for Home Security Robot

Circle Object Recognition Based on Monocular Vision for Home Security Robot Journal of Applied Science and Engineering, Vol. 16, No. 3, pp. 261 268 (2013) DOI: 10.6180/jase.2013.16.3.05 Circle Object Recognition Based on Monocular Vision for Home Security Robot Shih-An Li, Ching-Chang

More information

Research on the UHF RFID Channel Coding Technology based on Simulink

Research on the UHF RFID Channel Coding Technology based on Simulink Vol. 6, No. 7, 015 Research on the UHF RFID Channel Coding Technology based on Simulink Changzhi Wang Shanghai 0160, China Zhicai Shi* Shanghai 0160, China Dai Jian Shanghai 0160, China Li Meng Shanghai

More information

Cloud Computing for Agent-based Traffic Management Systems

Cloud Computing for Agent-based Traffic Management Systems Cloud Computing for Agent-based Traffic Management Systems Manoj A Patil Asst.Prof. IT Dept. Khyamling A Parane Asst.Prof. CSE Dept. D. Rajesh Asst.Prof. IT Dept. ABSTRACT Increased traffic congestion

More information

Comparison of WCA with AODV and WCA with ACO using clustering algorithm

Comparison of WCA with AODV and WCA with ACO using clustering algorithm Comparison of WCA with AODV and WCA with ACO using clustering algorithm Deepthi Hudedagaddi, Pallavi Ravishankar, Rakesh T M, Shashikanth Dengi ABSTRACT The rapidly changing topology of Mobile Ad hoc networks

More information

A Comparative Study of Scheduling Algorithms for Real Time Task

A Comparative Study of Scheduling Algorithms for Real Time Task , Vol. 1, No. 4, 2010 A Comparative Study of Scheduling Algorithms for Real Time Task M.Kaladevi, M.C.A.,M.Phil., 1 and Dr.S.Sathiyabama, M.Sc.,M.Phil.,Ph.D, 2 1 Assistant Professor, Department of M.C.A,

More information

A Fast Scene Constructing Method for 3D Power Big Data Visualization

A Fast Scene Constructing Method for 3D Power Big Data Visualization Journal of Communications Vol. 0, No. 0, October 05 A Fast Scene Constructing Method for 3D Power Big Data Visualization Zhao-Yang Qu and Jing-Yuan Huang School of Information Engineering of Northeast

More information

International Journal of Engineering Technology, Management and Applied Sciences. www.ijetmas.com November 2014, Volume 2 Issue 6, ISSN 2349-4476

International Journal of Engineering Technology, Management and Applied Sciences. www.ijetmas.com November 2014, Volume 2 Issue 6, ISSN 2349-4476 ERP SYSYTEM Nitika Jain 1 Niriksha 2 1 Student, RKGITW 2 Student, RKGITW Uttar Pradesh Tech. University Uttar Pradesh Tech. University Ghaziabad, U.P., India Ghaziabad, U.P., India ABSTRACT Student ERP

More information

A Dynamic Resource Management with Energy Saving Mechanism for Supporting Cloud Computing

A Dynamic Resource Management with Energy Saving Mechanism for Supporting Cloud Computing A Dynamic Resource Management with Energy Saving Mechanism for Supporting Cloud Computing Liang-Teh Lee, Kang-Yuan Liu, Hui-Yang Huang and Chia-Ying Tseng Department of Computer Science and Engineering,

More information

ACO Based Dynamic Resource Scheduling for Improving Cloud Performance

ACO Based Dynamic Resource Scheduling for Improving Cloud Performance ACO Based Dynamic Resource Scheduling for Improving Cloud Performance Priyanka Mod 1, Prof. Mayank Bhatt 2 Computer Science Engineering Rishiraj Institute of Technology 1 Computer Science Engineering Rishiraj

More information

Effective Load Balancing for Cloud Computing using Hybrid AB Algorithm

Effective Load Balancing for Cloud Computing using Hybrid AB Algorithm Effective Load Balancing for Cloud Computing using Hybrid AB Algorithm 1 N. Sasikala and 2 Dr. D. Ramesh PG Scholar, Department of CSE, University College of Engineering (BIT Campus), Tiruchirappalli,

More information

A Performance Comparison of GA and ACO Applied to TSP

A Performance Comparison of GA and ACO Applied to TSP A Performance Comparison of GA and ACO Applied to TSP Sabry Ahmed Haroun Laboratoire LISER, ENSEM, UH2C Casablanca, Morocco. Benhra Jamal Laboratoire LISER, ENSEM, UH2C Casablanca, Morocco. El Hassani

More information

Design call center management system of e-commerce based on BP neural network and multifractal

Design call center management system of e-commerce based on BP neural network and multifractal Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research, 2014, 6(6):951-956 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 Design call center management system of e-commerce

More information