Optimize Position and Path Planning of Automated Optical Inspection

Size: px
Start display at page:

Download "Optimize Position and Path Planning of Automated Optical Inspection"

Transcription

1 Journal of Computational Information Systems 8: 7 (2012) Available at Optimize Position and Path Planning of Automated Optical Inspection Hao WU, Yongcong KUANG, Gaofei OUYANG, Hongwei XIE, Xianmin ZHANG Key Laboratory of Precision Equipment and Manufacturing Technology of Guangdong Province, South China University of Technology, Guangzhou , China Abstract A three layers of MARK point method is proposed to improve the printed circuit board(pcb) position accuracy of automated optical inspection(aoi).to minimize the overall working time, the path planning problem can be modeled as a standard travelling salesman problem (TSP), and a new method based on Hopfield net algorithm is proposed to optimize the path planning problem. The experiments show that the three layers of MARK point improve the position accuracy and the Hopfield net optimize the planning path. Keywords: Automated Optical Inspection; Three Layers of MARK Point; Hopfield Net 1 Introduction In recent years, PCB(printed circuit board) assembly using SMT(surface mount technology) is very popular in electronic manufacturing [1],the size of the component assembled on the PCB become more and more small[2, 3]. The automated optical inspection (AOI) [4] has been applied to replace the traditional visual inspection. The position accuracy of the PCB has great influence on the inspection process, and the path planning problem will influence the overall working time of AOI. The traditional position method is using the MARK point to adjust the PCB in the loading process [5], but the position error produced by single board assembly and partial uneven surface in the board cannot be compensated with the whole board alignment only. In order to decrease the position error in these situation, the three layers of PCB MARK point method was proposed. To minimize the overall working time, the path planning is to find the optimal path. The path planning includes the position of the inspection windows and the planning of visiting sequence path. In this paper, the inspection windows are determined previously, so we focus on solution to the planning of visiting sequence path. Corresponding author. address: zhangxm@scut.edu.cn (Xianmin ZHANG) / Copyright 2012 Binary Information Press April 2012

2 2958 H. Wu et al. /Journal of Computational Information Systems 8: 7 (2012) Tae-Hyoung Park and Hwa-Jung Kim [6] proposed a unified method to determine the inspection clusters and visiting sequence simultaneously. A hybrid genetic algorithm was applied to solve the highly complicated optimization problem. The optimal solution quality was improved significantly. However, the solving time was too long. Luo Bing and Zhang Yun [7] proposed to do the path planning in two steps: at first to determine the least number of inspection windows based on ant colony algorithm; then combined with gradually approaching method to seek the shortest inspection path and to fix every inspection window. The solution was very well but the solution process was too complicated and timeconsuming. Tapas Kanungo, David M. Mount and Nathan S. Netanyahu et al [8] presented a simple k- means clustering method to minimize the inspection windows, the solution was efficient but easily entrapped into the local optimal. To improve the efficiency of the solution, we proposed a new method to solve the visiting sequencing problem. The Hopfield net algorithm [9] is applied to solve the optimization problem. The experimental results verify the proposed method efficiency and useful using of a commercial machine. 2 Position Compensation There are three different layers of MARK point in the checking process. The first layer is the whole board MARK point, which compensates the error in loading the PCB board. The second layer is the single board MARK point, which compensates the error in the single board assembly. The last layer is partial FOV MARK point, which compensates the error caused by uneven surface in some area of the PCB board. After compensating the three levels MARK point compensation, the accurate position of the checking components are fixed. Then the checking result is obtained after inspection of the component. The process is shown in Fig.1. Fig. 1: Workflow of the PCB checking process The position error of each inspection component also was obtained in this inspection process, the position error P was calculated in Eq. 1

3 H. Wu et al. /Journal of Computational Information Systems 8: 7 (2012) P = P P (1) P is confirmed in the programmed configuration, P can be ensured in the inspection process. The position error P obey the normal distribution. So the positioning performance can be estimated by the standard deviation of statistic all the components position error. 3 Path Planning Problem Fig.2 shows a typical AOI machine that consists of a gantry and a camera. The gantry moves in x-direction, and the camera moves along the gantry in y-direction. These x and y-direction movements can occur currently. Since the FOV (field of view) of camera is bounded by its limit, the camera travels over whole area of board to acquire overall images. Fig. 2: Structure of AOI machine Fig.3 shows inspection windows, FOV and camera path the AOI machine. The inspection window is rectangle area to be inspected by camera, which includes component and soldering pad. Several hundreds or thousands of windows are usually located in one PCB. FOV is the maximum image area that can be acquired by one shot of camera. The size of FOV is a constant parameter of camera. The inspection cluster is a group of inspection windows that can be captured by one shot of camera. So the size of FOV limits that of the inspection cluster. The camera starts from a given waiting position, and visits every cluster to acquire image data for all inspection windows. The camera path is the sequence of clusters visited by camera. Fig. 3: Inspection windows, FOV and camera path

4 2960 H. Wu et al. /Journal of Computational Information Systems 8: 7 (2012) The sequencing problem can be modeled as a standard travelling salesman problem (TSP). Therefore we can apply directly the well-known Hopfield neural network model to the sequencing problem, then an optimal path can be got using this model. The continuous Hopfield neural network has the optimization calculation characteristics. The target function of TSP responds to the Hopfield net energy function [10, 11]. The sequence of the cities responds to the Hopfield net neurons state. According to the stability of the Hopfield net, when the energy function reaches the minimum value, the whole neurons states approach to balance, the order of the cities is the optimal path. The whole process is shown in Fig.4 (1) Model mapping Fig. 4: Process of hopfield net optimization In order to map the TSP to the dynamic process of the Hopfield net, the relation matrix was introduced. Using N N matrix represent the N cities. Table 1 show that there are 5 cities A, B, C, D, E,the visiting route is A C E D B. Table 1: Visiting route of 5 cities order city A (2) Build energy function and dynamic equation B C D E The energy function is corresponding to the target function (the optimal path). Meanwhile, there is only a 1 in each column and each row. The energy function E includes the restraint and the target: E = A 2 N N ( V xi 1) 2 + A 2 x=1 i=1 N N ( V xi 1) 2 + D 2 i=1 x=1 N N N V xi d xy V y,i+1 (2) x=1 y=1 i=1 A = 200, D = 100 The dynamic equation is: du xi dt = E V xi = A( N N V xi 1) A( V yi 1) D i=1 y=1 N d xy V y,i+1 (3) y=1 (3) Initialize the Hopfield net

5 H. Wu et al. /Journal of Computational Information Systems 8: 7 (2012) Based on the experiences, the initial input of the net is: U xi (t) = U 0 ln(n 1) + δ xi (x, i = 1, 2,..., N; t = 0) (4) U 0 = 0.1; N is the number of cities; δ xi is a random value between -1 and 1 (4) Optimal calculation When the net structure and parameter is determined, the optimal calculation is: Step 1: according to the position of the N cities, compute the distance between cities; Step 2: initialize the Hopfield net; Step 3: calculate the dynamic equation according to the Eq.3, and using the first order Euler equation to iteration: Step 4: calculate V xi (t) by U xi (t + 1) = U xi (t) + du xi T (5) dt V xi (t) = g(u xi (t)) = 1 2 [1 + tan sig(u xi(t) U 0 )] (6) Step 5: acquired the energy function E according to Eq.2 Step 6: stopping criterion, if the iterations number k > 10000, then stop, otherwise, k = k +1, go back to step 3 4 The Experiments To evaluate the performance of the proposed method, The size of FOV is16(mm) 12(mm), and the image acquisition time for one FOV is 0.25 (sec). PCBs with size of 146(mm) 270(mm) in the SMT production assembly line were inspected by the AOI system[12,13], the size is normalization in path planning. Fig.5 shows the AOI system. As the alignment method mentioned above, the PCB location based on three levels of MARK point, the whole PCB board is consist of two single boards, which was shown in Fig.6. Fig. 5: The AOI system used in the experiment

6 2962 H. Wu et al. /Journal of Computational Information Systems 8: 7 (2012) Fig. 6: Three layers of MARK point The alignment effect of the whole board alignment only and the whole board combined the single board with the partial FOV alignment is shown below, the whole board alignment has the standard deviation of in axis x and in axis y ; in the condition of the whole board combine the single board with the partial FOV alignmentthe standard deviation is in axis x and in axis y separately. So the new three layers of MARK point have a higher position accuracy. The optimal path using the c-means and Hopfield net are shown in Fig.7 and Fig.8 separately. The optimal path using the c-means is ,the total length is The optimal path using the Hopfield net is ,the total length is The Hopfield net method acquired a more optimal result than the c-means method. Fig. 7: Optimal path using c-means method 5 Fig. 8: Optimal path using hopfield net method Conclusion In this paper, a new three levels of MARK point is proposed to improve the position accuracy caused by the partial uneven. Additionally, a new method based on Hopfield net is proposed to the path planning problem. The experimental results show that the position accuracy has

7 H. Wu et al. /Journal of Computational Information Systems 8: 7 (2012) been improved by using the three levels of MARK point, while the Hopfield net also acquires an optimizing path. Acknowledgement This work is supported by the National Science Foundation for distinguished young scholars of China ( ); the United Fund of NSFC and Guangdong province (U ), Project GDUPS (2010) and the Fundamental Research Funds for the Central Universities (2012ZP0004). The supports are greatly acknowledged. References [1] M. Magenta, F. Rectal and C. H. Dangle et al. Automatic PCB Inspection Algorithms: A Survey. Computer Vision and Image Understanding, 63(2), pages , [2] T. ZedniceK, P. Vasina and Z. Sita et al. Lead-free soldering effect to tantalum capacitors, 26th International Spring Seminar on Electronics Technology, pages 85-89, [3] J. Nguyen, D. Geiger, D. Rooney and D. Shangguan. Solder Joint Characteristics and Reliability of Lead-Free Area Array Packages Assembled Under Various Tin-Lead Soldering Process Conditions, 2007 Electronic Components and Technology Conference, pages , [4] D. W. Raymond, D. F. Haigh. Why automate optical inspection. International Test Conference, pages 1033, [5] Chang-bing Bai, Chun Qi. Fast detection of circular pcb mark using Hough transform. Optoelectronic Engineering, 32(9), pages 75-78, [6] Tae-Hyoung Park, Hwa-Jung Kim. Path planning of automatic optical inspection machines for PCB assembly systems IEEE International Symposium on Computational Intelligence in Robotics and Automation, pages , [7] Luo Bing and Zhang Yun. SMT automatic optical inspection path planning based on ant colony algorithm. Chinese Journal of Scientific Instrument, 27 (6), pages 94-97, [8] Kanungo. T, Mount. D. M and Netanyahu. N. S et al. An efficient k-means clustering algorithm: analysis and implementation, IEEE Transactions on Pattern Analysis and Machine Intelligence, 24(7), pages , [9] J. J. Hopfield and D. W. Tank. Neural Computation of Decisions in Optimization Problems. Biological Cybernetics, 52(3), pages , [10] Wang Ling and Zheng Dazhong. Study on TSP and Optimization Based on Hopfield Neural Network. Control and decision, 14(6), pages , [11] Sun Shouyu, Zheng Junli. A modified algorithm and theoretical analysis for Hopfield network solving TSP. Acta Electronica Sinica, 23 (1), pages 73-78, [12] Fupei Wu and Xianmin Zhang. Feature-Extraction-Based Inspection Algorithm for IC Solder Joints. IEEE Transactions on components, packaging and manufacturing technology, 1(5), pages , [13] Hongwei Xie, Yongcong Kuang, Gaofei Ouyang et al. An incremental Clustering Based Solder Joint Inspection Algorithm for Chip component. Journal of Computational Information Systems, 7 (14), pages , 2011.

Vision for Solder Paste Depositing

Vision for Solder Paste Depositing 2007 IEEE International Conference on Control and Automation WeC5-3 Guangzhou, CHINA - May 30 to June 1, 2007 An Integrated Inspection Method based on Machine Vision for Solder Paste Depositing Shenglin

More information

Image Processing Based Automatic Visual Inspection System for PCBs

Image Processing Based Automatic Visual Inspection System for PCBs IOSR Journal of Engineering (IOSRJEN) ISSN: 2250-3021 Volume 2, Issue 6 (June 2012), PP 1451-1455 www.iosrjen.org Image Processing Based Automatic Visual Inspection System for PCBs Sanveer Singh 1, Manu

More information

Automated Optical Inspection is one of many manufacturing test methods common in the assembly of printed circuit boards. This list includes:

Automated Optical Inspection is one of many manufacturing test methods common in the assembly of printed circuit boards. This list includes: What is AOI? Automated Optical Inspection is one of many manufacturing test methods common in the assembly of printed circuit boards. This list includes: Test methods for electronic assemblies: - FT (Functional

More information

COLOR-BASED PRINTED CIRCUIT BOARD SOLDER SEGMENTATION

COLOR-BASED PRINTED CIRCUIT BOARD SOLDER SEGMENTATION COLOR-BASED PRINTED CIRCUIT BOARD SOLDER SEGMENTATION Tz-Sheng Peng ( 彭 志 昇 ), Chiou-Shann Fuh ( 傅 楸 善 ) Dept. of Computer Science and Information Engineering, National Taiwan University E-mail: r96922118@csie.ntu.edu.tw

More information

Automatic Detection of PCB Defects

Automatic Detection of PCB Defects IJIRST International Journal for Innovative Research in Science & Technology Volume 1 Issue 6 November 2014 ISSN (online): 2349-6010 Automatic Detection of PCB Defects Ashish Singh PG Student Vimal H.

More information

Chapter 2 The Research on Fault Diagnosis of Building Electrical System Based on RBF Neural Network

Chapter 2 The Research on Fault Diagnosis of Building Electrical System Based on RBF Neural Network Chapter 2 The Research on Fault Diagnosis of Building Electrical System Based on RBF Neural Network Qian Wu, Yahui Wang, Long Zhang and Li Shen Abstract Building electrical system fault diagnosis is the

More information

14.10.2014. Overview. Swarms in nature. Fish, birds, ants, termites, Introduction to swarm intelligence principles Particle Swarm Optimization (PSO)

14.10.2014. Overview. Swarms in nature. Fish, birds, ants, termites, Introduction to swarm intelligence principles Particle Swarm Optimization (PSO) Overview Kyrre Glette kyrrehg@ifi INF3490 Swarm Intelligence Particle Swarm Optimization Introduction to swarm intelligence principles Particle Swarm Optimization (PSO) 3 Swarms in nature Fish, birds,

More information

An Automatic Optical Inspection System for the Diagnosis of Printed Circuits Based on Neural Networks

An Automatic Optical Inspection System for the Diagnosis of Printed Circuits Based on Neural Networks An Automatic Optical Inspection System for the Diagnosis of Printed Circuits Based on Neural Networks Ahmed Nabil Belbachir 1, Alessandra Fanni 2, Mario Lera 3 and Augusto Montisci 2 1 Vienna University

More information

High-Mix Low-Volume Flow Shop Manufacturing System Scheduling

High-Mix Low-Volume Flow Shop Manufacturing System Scheduling Proceedings of the 14th IAC Symposium on Information Control Problems in Manufacturing, May 23-25, 2012 High-Mix Low-Volume low Shop Manufacturing System Scheduling Juraj Svancara, Zdenka Kralova Institute

More information

The application of image division method on automatic optical inspection of PCBA

The application of image division method on automatic optical inspection of PCBA 1 1 1 1 0 The application of image division method on automatic optical inspection of PCBA Min-Chie Chiu Department of Automatic Control Engineering Chungchou Institute of Technology, Lane, Sec. 3, Shanchiao

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

Analecta Vol. 8, No. 2 ISSN 2064-7964

Analecta Vol. 8, No. 2 ISSN 2064-7964 EXPERIMENTAL APPLICATIONS OF ARTIFICIAL NEURAL NETWORKS IN ENGINEERING PROCESSING SYSTEM S. Dadvandipour Institute of Information Engineering, University of Miskolc, Egyetemváros, 3515, Miskolc, Hungary,

More information

An Energy-Based Vehicle Tracking System using Principal Component Analysis and Unsupervised ART Network

An Energy-Based Vehicle Tracking System using Principal Component Analysis and Unsupervised ART Network Proceedings of the 8th WSEAS Int. Conf. on ARTIFICIAL INTELLIGENCE, KNOWLEDGE ENGINEERING & DATA BASES (AIKED '9) ISSN: 179-519 435 ISBN: 978-96-474-51-2 An Energy-Based Vehicle Tracking System using Principal

More information

VECTORAL IMAGING THE NEW DIRECTION IN AUTOMATED OPTICAL INSPECTION

VECTORAL IMAGING THE NEW DIRECTION IN AUTOMATED OPTICAL INSPECTION VECTORAL IMAGING THE NEW DIRECTION IN AUTOMATED OPTICAL INSPECTION Mark J. Norris Vision Inspection Technology, LLC Haverhill, MA mnorris@vitechnology.com ABSTRACT Traditional methods of identifying and

More information

Valuetronics Holdings Limited. A pictorial tour of our Daya Bay facility

Valuetronics Holdings Limited. A pictorial tour of our Daya Bay facility Valuetronics Holdings Limited A pictorial tour of our Daya Bay facility In early 2006, we acquired the land use rights to a 110,200 sqm land parcel in the Daya Bay Technology District, Huizhou City, Guangdong

More information

Effect of Using Neural Networks in GA-Based School Timetabling

Effect of Using Neural Networks in GA-Based School Timetabling Effect of Using Neural Networks in GA-Based School Timetabling JANIS ZUTERS Department of Computer Science University of Latvia Raina bulv. 19, Riga, LV-1050 LATVIA janis.zuters@lu.lv Abstract: - The school

More information

Industrial Robotics. Training Objective

Industrial Robotics. Training Objective Training Objective After watching the program and reviewing this printed material, the viewer will learn the basics of industrial robot technology and how robots are used in a variety of manufacturing

More information

An Algorithm for Classification of Five Types of Defects on Bare Printed Circuit Board

An Algorithm for Classification of Five Types of Defects on Bare Printed Circuit Board IJCSES International Journal of Computer Sciences and Engineering Systems, Vol. 5, No. 3, July 2011 CSES International 2011 ISSN 0973-4406 An Algorithm for Classification of Five Types of Defects on Bare

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

A Study of Various Methods to find K for K-Means Clustering

A Study of Various Methods to find K for K-Means Clustering International Journal of Computer Sciences and Engineering Open Access Review Paper Volume-4, Issue-3 E-ISSN: 2347-2693 A Study of Various Methods to find K for K-Means Clustering Hitesh Chandra Mahawari

More information

Preface xiii Introduction xv 1 Planning for surface mount design General electronic products 3 Dedicated service electronic products 3 High-reliability electronic products 4 Defining the environmental

More information

Defect Detection of SMT Electronic Modules

Defect Detection of SMT Electronic Modules Appl. Math. Inf. Sci. 7, No. 2, 515-520 (2013) 515 Applied Mathematics & Information Sciences An International Journal Defect Detection of SMT Electronic Modules Xibing Li 1 and Jianjia Wang 2 1 School

More information

Automated Contact Resistance Tester CR-2601

Automated Contact Resistance Tester CR-2601 Automated Contact Resistance Tester CR-2601 What s New What s New Summary of Hardware Improvements: The middle Stiffener has been improved and no longer comes in direct contact with the main board thus

More information

ROBOTIC PRINTED CIRCUIT BOARD ASSEMBLY LINE

ROBOTIC PRINTED CIRCUIT BOARD ASSEMBLY LINE ROBOTIC PRINTED CIRCUIT BOARD ASSEMBLY LINE MET 415 By Martin Houlroyd 03/29/14 DEPARTMENT MAP 1. BARE PCBS 2. SOLDER PASTE 3. IC ASSEMBLY 4. REFLOW SOLDERING 5. AQUEOUS CLEANING 6. VISUAL INSPECTION 7.

More information

HYBRID GENETIC ALGORITHM PARAMETER EFFECTS FOR OPTIMIZATION OF CONSTRUCTION RESOURCE ALLOCATION PROBLEM. Jin-Lee KIM 1, M. ASCE

HYBRID GENETIC ALGORITHM PARAMETER EFFECTS FOR OPTIMIZATION OF CONSTRUCTION RESOURCE ALLOCATION PROBLEM. Jin-Lee KIM 1, M. ASCE 1560 HYBRID GENETIC ALGORITHM PARAMETER EFFECTS FOR OPTIMIZATION OF CONSTRUCTION RESOURCE ALLOCATION PROBLEM Jin-Lee KIM 1, M. ASCE 1 Assistant Professor, Department of Civil Engineering and Construction

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

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

Real-Time Path Planning and Navigation for a Web-Based Mobile Robot Using a Modified Ant Colony Optimization Algorithm 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

More information

Choosing a Stencil. By William E. Coleman, Ph.D. and Michael R. Burgess

Choosing a Stencil. By William E. Coleman, Ph.D. and Michael R. Burgess Choosing a Stencil Is a stencil a commodity or a precision tool? A commodity is something that can be purchased from many suppliers, with the expectation that the performance will be the same. A precision

More information

SOLDER CHARGE SMT: THE DESIGN AND VALIDATION OF NEW SOLDER ATTACH TECHNOLOGIES

SOLDER CHARGE SMT: THE DESIGN AND VALIDATION OF NEW SOLDER ATTACH TECHNOLOGIES SOLDER CHARGE SMT: THE DESIGN AND VALIDATION OF NEW SOLDER ATTACH TECHNOLOGIES Jim Hines 1, Kirk Peloza 2, Adam Stanczak 3, David Geiger 4 1 Molex Lisle, IL, USA 2 Molex Lisle, IL, USA 3 Molex Lisle, IL,

More information

Force/position control of a robotic system for transcranial magnetic stimulation

Force/position control of a robotic system for transcranial magnetic stimulation Force/position control of a robotic system for transcranial magnetic stimulation W.N. Wan Zakaria School of Mechanical and System Engineering Newcastle University Abstract To develop a force control scheme

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

Prototyping Printed Circuit Boards

Prototyping Printed Circuit Boards Prototyping Printed Circuit Boards From concept to prototype to production. (HBRC) PCB Design and Fabrication Agenda Introduction Why PCBs? Stage 1 Understanding the rules Stage 2 Planning the board. Stage

More information

Neural Network based Vehicle Classification for Intelligent Traffic Control

Neural Network based Vehicle Classification for Intelligent Traffic Control Neural Network based Vehicle Classification for Intelligent Traffic Control Saeid Fazli 1, Shahram Mohammadi 2, Morteza Rahmani 3 1,2,3 Electrical Engineering Department, Zanjan University, Zanjan, IRAN

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

An analysis of suitable parameters for efficiently applying K-means clustering to large TCPdump data set using Hadoop framework

An analysis of suitable parameters for efficiently applying K-means clustering to large TCPdump data set using Hadoop framework An analysis of suitable parameters for efficiently applying K-means clustering to large TCPdump data set using Hadoop framework Jakrarin Therdphapiyanak Dept. of Computer Engineering Chulalongkorn University

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

PCB Quality Inspection. Student Manual

PCB Quality Inspection. Student Manual PCB Quality Inspection Student Manual Unit 2: Inspection Overview Section 2.1: Purpose of Inspection What Is The Purpose of Inspection? There are 2 reasons why Inspection is performed: o To verify the

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

The Basics of FEA Procedure

The Basics of FEA Procedure CHAPTER 2 The Basics of FEA Procedure 2.1 Introduction This chapter discusses the spring element, especially for the purpose of introducing various concepts involved in use of the FEA technique. A spring

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

Large-Scale Data Sets Clustering Based on MapReduce and Hadoop

Large-Scale Data Sets Clustering Based on MapReduce and Hadoop Journal of Computational Information Systems 7: 16 (2011) 5956-5963 Available at http://www.jofcis.com Large-Scale Data Sets Clustering Based on MapReduce and Hadoop Ping ZHOU, Jingsheng LEI, Wenjun YE

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

Sensory-motor control scheme based on Kohonen Maps and AVITE model

Sensory-motor control scheme based on Kohonen Maps and AVITE model Sensory-motor control scheme based on Kohonen Maps and AVITE model Juan L. Pedreño-Molina, Antonio Guerrero-González, Oscar A. Florez-Giraldo, J. Molina-Vilaplana Technical University of Cartagena Department

More information

MACHINE VISION FOR SMARTPHONES. Essential machine vision camera requirements to fulfill the needs of our society

MACHINE VISION FOR SMARTPHONES. Essential machine vision camera requirements to fulfill the needs of our society MACHINE VISION FOR SMARTPHONES Essential machine vision camera requirements to fulfill the needs of our society INTRODUCTION With changes in our society, there is an increased demand in stateof-the art

More information

AOI and X-ray Inspection of PCB Assemblies

AOI and X-ray Inspection of PCB Assemblies AOI and X-ray Inspection of PCB Assemblies Electronic Materials and Assembly Processes for Space (EMPS) Workshop HYTEK, Aalborg, Denmark 29th May 2013 Automatic Optical Inspection (AOI) and X-ray Inspection

More information

Big Data Storage Architecture Design in Cloud Computing

Big Data Storage Architecture Design in Cloud Computing Big Data Storage Architecture Design in Cloud Computing Xuebin Chen 1, Shi Wang 1( ), Yanyan Dong 1, and Xu Wang 2 1 College of Science, North China University of Science and Technology, Tangshan, Hebei,

More information

Design and Implementation of IaaS platform based on tool migration Wei Ding

Design and Implementation of IaaS platform based on tool migration Wei Ding 4th International Conference on Mechatronics, Materials, Chemistry and Computer Engineering (ICMMCCE 2015) Design and Implementation of IaaS platform based on tool migration Wei Ding State Key Laboratory

More information

K Thangadurai P.G. and Research Department of Computer Science, Government Arts College (Autonomous), Karur, India. ktramprasad04@yahoo.

K Thangadurai P.G. and Research Department of Computer Science, Government Arts College (Autonomous), Karur, India. ktramprasad04@yahoo. Enhanced Binary Small World Optimization Algorithm for High Dimensional Datasets K Thangadurai P.G. and Research Department of Computer Science, Government Arts College (Autonomous), Karur, India. ktramprasad04@yahoo.com

More information

Knowledge Acquisition Approach Based on Rough Set in Online Aided Decision System for Food Processing Quality and Safety

Knowledge Acquisition Approach Based on Rough Set in Online Aided Decision System for Food Processing Quality and Safety , pp. 381-388 http://dx.doi.org/10.14257/ijunesst.2014.7.6.33 Knowledge Acquisition Approach Based on Rough Set in Online Aided ecision System for Food Processing Quality and Safety Liu Peng, Liu Wen,

More information

Automatic Mining of Internet Translation Reference Knowledge Based on Multiple Search Engines

Automatic Mining of Internet Translation Reference Knowledge Based on Multiple Search Engines , 22-24 October, 2014, San Francisco, USA Automatic Mining of Internet Translation Reference Knowledge Based on Multiple Search Engines Baosheng Yin, Wei Wang, Ruixue Lu, Yang Yang Abstract With the increasing

More information

Journal of Chemical and Pharmaceutical Research, 2014, 6(5): 621-625. Research Article

Journal of Chemical and Pharmaceutical Research, 2014, 6(5): 621-625. Research Article Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research, 2014, 6(5): 621-625 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 Analysis on the problems and countermeasures for

More information

Figure 1. The cloud scales: Amazon EC2 growth [2].

Figure 1. The cloud scales: Amazon EC2 growth [2]. - Chung-Cheng Li and Kuochen Wang Department of Computer Science National Chiao Tung University Hsinchu, Taiwan 300 shinji10343@hotmail.com, kwang@cs.nctu.edu.tw Abstract One of the most important issues

More information

A Genetic Algorithm-Evolved 3D Point Cloud Descriptor

A Genetic Algorithm-Evolved 3D Point Cloud Descriptor A Genetic Algorithm-Evolved 3D Point Cloud Descriptor Dominik Wȩgrzyn and Luís A. Alexandre IT - Instituto de Telecomunicações Dept. of Computer Science, Univ. Beira Interior, 6200-001 Covilhã, Portugal

More information

A Robust Method for Solving Transcendental Equations

A Robust Method for Solving Transcendental Equations www.ijcsi.org 413 A Robust Method for Solving Transcendental Equations Md. Golam Moazzam, Amita Chakraborty and Md. Al-Amin Bhuiyan Department of Computer Science and Engineering, Jahangirnagar University,

More information

Comparing Digital and Analogue X-ray Inspection for BGA, Flip Chip and CSP Analysis

Comparing Digital and Analogue X-ray Inspection for BGA, Flip Chip and CSP Analysis Comparing Digital and Analogue X-ray Inspection for BGA, Flip Chip and CSP Analysis David Bernard & Steve Ainsworth Dage Precision Industries Abstract Non-destructive testing during the manufacture of

More information

3 An Illustrative Example

3 An Illustrative Example Objectives An Illustrative Example Objectives - Theory and Examples -2 Problem Statement -2 Perceptron - Two-Input Case -4 Pattern Recognition Example -5 Hamming Network -8 Feedforward Layer -8 Recurrent

More information

BGA - Ball Grid Array Inspection Workshop. Bob Willis leadfreesoldering.com

BGA - Ball Grid Array Inspection Workshop. Bob Willis leadfreesoldering.com BGA - Ball Grid Array Inspection Workshop Bob Willis leadfreesoldering.com Mixed Technology Assembly Processes Adhesive Dispensing Component Placement Adhesive Curing Turn Boar Over Conventional Insertion

More information

Automatic Labeling of Lane Markings for Autonomous Vehicles

Automatic Labeling of Lane Markings for Autonomous Vehicles Automatic Labeling of Lane Markings for Autonomous Vehicles Jeffrey Kiske Stanford University 450 Serra Mall, Stanford, CA 94305 jkiske@stanford.edu 1. Introduction As autonomous vehicles become more popular,

More information

ScienceDirect. Model Planning Production and Logistics Activities in Business Networks

ScienceDirect. Model Planning Production and Logistics Activities in Business Networks Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 69 ( 2014 ) 370 376 24th DAAAM International Symposium on Intelligent Manufacturing and Automation, 2013 Model Planning Production

More information

Mechanical Analysis of Crossbeam in a Gantry Machine Tool and its Deformation Compensation

Mechanical Analysis of Crossbeam in a Gantry Machine Tool and its Deformation Compensation Send Orders for Reprints to reprints@benthamscience.ae The Open Mechanical Engineering Journal, 2015, 9, 213-218 213 Open Access Mechanical Analysis of Crossbeam in a Gantry Machine Tool and its Deformation

More information

Machine Vision Optimizing Electronics Production

Machine Vision Optimizing Electronics Production Expert Guide Machine Vision Optimizing Electronics Production Introduction Today, semiconductors cannot be manufactured without using machine vision. In fact, machine vision is an enabling technology that

More information

Vision-based Real-time Driver Fatigue Detection System for Efficient Vehicle Control

Vision-based Real-time Driver Fatigue Detection System for Efficient Vehicle Control Vision-based Real-time Driver Fatigue Detection System for Efficient Vehicle Control D.Jayanthi, M.Bommy Abstract In modern days, a large no of automobile accidents are caused due to driver fatigue. To

More information

EM Clustering Approach for Multi-Dimensional Analysis of Big Data Set

EM Clustering Approach for Multi-Dimensional Analysis of Big Data Set EM Clustering Approach for Multi-Dimensional Analysis of Big Data Set Amhmed A. Bhih School of Electrical and Electronic Engineering Princy Johnson School of Electrical and Electronic Engineering Martin

More information

Cloud database dynamic route scheduling based on polymorphic ant colony optimization algorithm

Cloud database dynamic route scheduling based on polymorphic ant colony optimization algorithm Cloud database dynamic route scheduling based on polymorphic ant colony optimization algorithm Chen Qing * Yong Zhong Liuming Xiang Chengdu Inst. of Computer Applications Chinese Academy of Science People's

More information

Relating Vanishing Points to Catadioptric Camera Calibration

Relating Vanishing Points to Catadioptric Camera Calibration Relating Vanishing Points to Catadioptric Camera Calibration Wenting Duan* a, Hui Zhang b, Nigel M. Allinson a a Laboratory of Vision Engineering, University of Lincoln, Brayford Pool, Lincoln, U.K. LN6

More information

Parallel Data Selection Based on Neurodynamic Optimization in the Era of Big Data

Parallel Data Selection Based on Neurodynamic Optimization in the Era of Big Data Parallel Data Selection Based on Neurodynamic Optimization in the Era of Big Data Jun Wang Department of Mechanical and Automation Engineering The Chinese University of Hong Kong Shatin, New Territories,

More information

Journal of Chemical and Pharmaceutical Research, 2014, 6(5): 647-651. Research Article

Journal of Chemical and Pharmaceutical Research, 2014, 6(5): 647-651. Research Article Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research, 2014, 6(5): 647-651 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 Comprehensive colliery safety monitoring system

More information

Miniaturizing Flexible Circuits for use in Medical Electronics. Nate Kreutter 3M

Miniaturizing Flexible Circuits for use in Medical Electronics. Nate Kreutter 3M Miniaturizing Flexible Circuits for use in Medical Electronics Nate Kreutter 3M Drivers for Medical Miniaturization Market Drivers for Increased use of Medical Electronics Aging Population Early Detection

More information

Comparison of K-means and Backpropagation Data Mining Algorithms

Comparison of K-means and Backpropagation Data Mining Algorithms Comparison of K-means and Backpropagation Data Mining Algorithms Nitu Mathuriya, Dr. Ashish Bansal Abstract Data mining has got more and more mature as a field of basic research in computer science and

More information

3D On-chip Data Center Networks Using Circuit Switches and Packet Switches

3D On-chip Data Center Networks Using Circuit Switches and Packet Switches 3D On-chip Data Center Networks Using Circuit Switches and Packet Switches Takahide Ikeda Yuichi Ohsita, and Masayuki Murata Graduate School of Information Science and Technology, Osaka University Osaka,

More information

Complex Network Visualization based on Voronoi Diagram and Smoothed-particle Hydrodynamics

Complex Network Visualization based on Voronoi Diagram and Smoothed-particle Hydrodynamics Complex Network Visualization based on Voronoi Diagram and Smoothed-particle Hydrodynamics Zhao Wenbin 1, Zhao Zhengxu 2 1 School of Instrument Science and Engineering, Southeast University, Nanjing, Jiangsu

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

The Use of Cuckoo Search in Estimating the Parameters of Software Reliability Growth Models

The Use of Cuckoo Search in Estimating the Parameters of Software Reliability Growth Models The Use of Cuckoo Search in Estimating the Parameters of Software Reliability Growth Models Dr. Najla Akram AL-Saati and Marwa Abd-ALKareem Software Engineering Dept. College of Computer Sciences & Mathematics,

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

International Journal Information Theories and Applications, Vol. 19, Number 2, 2012

International Journal Information Theories and Applications, Vol. 19, Number 2, 2012 126 International Journal Information Theories and Applications, Vol. 19, Number 2, 2012 PORTABLE BIOSENSOR: FROM IDEA TO MARKET Volodymyr Romanov, Dmytro Artemenko, Yuriy Brayko, Igor Galelyuka, Roza

More information

Automatic Calibration of an In-vehicle Gaze Tracking System Using Driver s Typical Gaze Behavior

Automatic Calibration of an In-vehicle Gaze Tracking System Using Driver s Typical Gaze Behavior Automatic Calibration of an In-vehicle Gaze Tracking System Using Driver s Typical Gaze Behavior Kenji Yamashiro, Daisuke Deguchi, Tomokazu Takahashi,2, Ichiro Ide, Hiroshi Murase, Kazunori Higuchi 3,

More information

MACHINE VISION MNEMONICS, INC. 102 Gaither Drive, Suite 4 Mount Laurel, NJ 08054 USA 856-234-0970 www.mnemonicsinc.com

MACHINE VISION MNEMONICS, INC. 102 Gaither Drive, Suite 4 Mount Laurel, NJ 08054 USA 856-234-0970 www.mnemonicsinc.com MACHINE VISION by MNEMONICS, INC. 102 Gaither Drive, Suite 4 Mount Laurel, NJ 08054 USA 856-234-0970 www.mnemonicsinc.com Overview A visual information processing company with over 25 years experience

More information

The Combination Forecasting Model of Auto Sales Based on Seasonal Index and RBF Neural Network

The Combination Forecasting Model of Auto Sales Based on Seasonal Index and RBF Neural Network , pp.67-76 http://dx.doi.org/10.14257/ijdta.2016.9.1.06 The Combination Forecasting Model of Auto Sales Based on Seasonal Index and RBF Neural Network Lihua Yang and Baolin Li* School of Economics and

More information

Research on Clustering Analysis of Big Data Yuan Yuanming 1, 2, a, Wu Chanle 1, 2

Research on Clustering Analysis of Big Data Yuan Yuanming 1, 2, a, Wu Chanle 1, 2 Advanced Engineering Forum Vols. 6-7 (2012) pp 82-87 Online: 2012-09-26 (2012) Trans Tech Publications, Switzerland doi:10.4028/www.scientific.net/aef.6-7.82 Research on Clustering Analysis of Big Data

More information

Influence of the Socket on Chip-level ESD Testing

Influence of the Socket on Chip-level ESD Testing 266 PIERS Proceedings, Guangzhou, China, August 25 28, 2014 Influence of the Socket on Chip-level ESD Testing Yu Xiao 1, Jiancheng Li 2, Jianfei Wu 2, Yunzhi Kang 3, and Jianwei Su 1 1 P. O. Box 9010,

More information

Optimum Design of Worm Gears with Multiple Computer Aided Techniques

Optimum Design of Worm Gears with Multiple Computer Aided Techniques Copyright c 2008 ICCES ICCES, vol.6, no.4, pp.221-227 Optimum Design of Worm Gears with Multiple Computer Aided Techniques Daizhong Su 1 and Wenjie Peng 2 Summary Finite element analysis (FEA) has proved

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

Load Balancing Algorithm Based on Services

Load Balancing Algorithm Based on Services Journal of Information & Computational Science 10:11 (2013) 3305 3312 July 20, 2013 Available at http://www.joics.com Load Balancing Algorithm Based on Services Yufang Zhang a, Qinlei Wei a,, Ying Zhao

More information

Wafer Level Testing Challenges for Flip Chip and Wafer Level Packages

Wafer Level Testing Challenges for Flip Chip and Wafer Level Packages Wafer Level Testing Challenges for Flip Chip and Wafer Level Packages by Lim Kok Hwa and Andy Chee STATS ChipPAC Ltd. 5 Yishun Street 23, Singapore 768442 kokhwa.lim@statschippac.com; kenghwee.chee@statschippac.com

More information

ARTIFICIAL INTELLIGENCE METHODS IN EARLY MANUFACTURING TIME ESTIMATION

ARTIFICIAL INTELLIGENCE METHODS IN EARLY MANUFACTURING TIME ESTIMATION 1 ARTIFICIAL INTELLIGENCE METHODS IN EARLY MANUFACTURING TIME ESTIMATION B. Mikó PhD, Z-Form Tool Manufacturing and Application Ltd H-1082. Budapest, Asztalos S. u 4. Tel: (1) 477 1016, e-mail: miko@manuf.bme.hu

More information

Metallized Particle Interconnect A simple solution for high-speed, high-bandwidth applications

Metallized Particle Interconnect A simple solution for high-speed, high-bandwidth applications Metallized Particle Interconnect A simple solution for high-speed, high-bandwidth applications The MPI Material Advantage Advantages: High-Density - Scalable Pitches down to 0,8 mm pitch possible - Scalable

More information

Intrusion Detection via Machine Learning for SCADA System Protection

Intrusion Detection via Machine Learning for SCADA System Protection Intrusion Detection via Machine Learning for SCADA System Protection S.L.P. Yasakethu Department of Computing, University of Surrey, Guildford, GU2 7XH, UK. s.l.yasakethu@surrey.ac.uk J. Jiang Department

More information

Data Mining Cluster Analysis: Basic Concepts and Algorithms. Lecture Notes for Chapter 8. Introduction to Data Mining

Data Mining Cluster Analysis: Basic Concepts and Algorithms. Lecture Notes for Chapter 8. Introduction to Data Mining Data Mining Cluster Analysis: Basic Concepts and Algorithms Lecture Notes for Chapter 8 Introduction to Data Mining by Tan, Steinbach, Kumar Tan,Steinbach, Kumar Introduction to Data Mining 4/8/2004 Hierarchical

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

UPS battery remote monitoring system in cloud computing

UPS battery remote monitoring system in cloud computing , pp.11-15 http://dx.doi.org/10.14257/astl.2014.53.03 UPS battery remote monitoring system in cloud computing Shiwei Li, Haiying Wang, Qi Fan School of Automation, Harbin University of Science and Technology

More information

PCB Component Placement Inspection

PCB Component Placement Inspection Executive Summary PCB Component Placement Inspection Optimet s ConoProbe Mark10 HD with a 50 mm focal length lens was used to inspect PCB component placement. The PCB board inspected contained both individual

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

How To Use Neural Networks In Data Mining

How To Use Neural Networks In Data Mining International Journal of Electronics and Computer Science Engineering 1449 Available Online at www.ijecse.org ISSN- 2277-1956 Neural Networks in Data Mining Priyanka Gaur Department of Information and

More information

Performance Evaluation On Human Resource Management Of China S Commercial Banks Based On Improved Bp Neural Networks

Performance Evaluation On Human Resource Management Of China S Commercial Banks Based On Improved Bp Neural Networks Performance Evaluation On Human Resource Management Of China S *1 Honglei Zhang, 2 Wenshan Yuan, 1 Hua Jiang 1 School of Economics and Management, Hebei University of Engineering, Handan 056038, P. R.

More information

Detection of Bare PCB Defects by Image Subtraction Method using Machine Vision

Detection of Bare PCB Defects by Image Subtraction Method using Machine Vision , July 6-8, 2011, London, U.K. Detection of Bare PCB Defects by Image Subtraction Method using Machine Vision Ajay Pal Singh Chauhan, Sharat Chandra Bhardwaj Abstract A Printed Circuit Board (PCB) consists

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

MS Excel as Tool for Modeling, Dynamic Simulation and Visualization ofmechanical Motion

MS Excel as Tool for Modeling, Dynamic Simulation and Visualization ofmechanical Motion MS Excel as Tool for Modeling, Dynamic Simulation and Visualization ofmechanical Motion MARIE HUBALOVSKA, STEPAN HUBALOVSKY, MARCELA FRYBOVA Department of Informatics Faculty of Science University of Hradec

More information

Designing Applications with Distributed Databases in a Hybrid Cloud

Designing Applications with Distributed Databases in a Hybrid Cloud Designing Applications with Distributed Databases in a Hybrid Cloud Evgeniy Pluzhnik 1, Oleg Lukyanchikov 2, Evgeny Nikulchev 1 & Simon Payain 1 1 Moscow Technological Institute, Moscow, 119334, Russia,

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

PCB DETECTION AND CLASSIFICATION USING DIGITAL IMAGEPROCESSING

PCB DETECTION AND CLASSIFICATION USING DIGITAL IMAGEPROCESSING PCB DETECTION AND CLASSIFICATION USING DIGITAL IMAGEPROCESSING 1 Shashikumar Vishwakarma, 2 SahilTikke, 3 Chinmay Manurkar, 4 Ankit Thanekar 1,2,3,4 Electronics and Telecommunication (B.E), KJSIEIT, (India)

More information