Parameter identification for simulating debris flows using cellular automata

Size: px
Start display at page:

Download "Parameter identification for simulating debris flows using cellular automata"

Transcription

1 Parameter identification for simulating debris flows using cellular automata Kristina Georgieva Ruhr University Bochum Petyo Gadzhanov Ruhr University Bochum Abstract: The increase in temperature due to the climate change and the human intervention in natural systems increase the risk of debris flows. In densely populated areas debris flows cause severe damage to people and infrastructure. Therefore, it is important to analyze and predict debris flows realistically. In the last years, cellular automata have been applied to simulate the behavior and movement of debris flows. The main challenge in applying these automata is the appropriate specification of global parameters for calculating new cell states. This paper presents the implementation of a parameter identification framework for debris flow simulation based on the SCIDDICA cellular automata model (D Ambrosio, 2003). To demonstrate the performance of the framework, validation tests have been conducted, based on controlled experiments. Keywords: cellular automata, debris flow, simulation, parameter identification 1. Introduction Debris flows are one of the most common types of landslides, which occur mostly in mountain and glacial areas. Activated by addition of moisture, erosion, wildfires or volcanic eruptions, debris flows damage infrastructure and endanger humans. Various attempts have been made to thoroughly assess the physics of debris flows. However, invasive techniques to collect slope data, such as installing sensors in boreholes, often change the state of the debris. Therefore, models to numerically simulate debris flows have been developed. SCIDDICA is a family of deterministic models based on the Cellular Automata (CA) computational paradigm, specially developed for debris flow simulations (D Ambrosio, 2003). CA represent a mathematical idealization of complex systems and describe the dynamical behavior of natural phenomena in terms of interactions between system particles. Patterns of complex behavior are thus generated by discretizing space and time to process a large 211

2 number of identical, simple, locally interacting components (Ilachinski, 2011). The components are referred to as cells in the literature. Cells interact only with cells in their neighborhood and update their current state according to a uniquely defined set of rules called transition function. By taking into account the states of the cells in the neighborhood, cell generations evolve from the initial state of the system until a termination condition is fulfilled. CA have gained popularity in diverse scientific areas, because they allow to process the interactions between the cells in a fully parallel manner. As a result, computationally efficient modeling of natural phenomena is possible. SCIDDICA is a two-dimensional hexagonal CA model for simulating debris flows. In SCIDDICA, the cell state can be decomposed in sub-states, namely the altitude of the bedrock, the thickness of landslide debris, the depth of erodible soil cover, and the run-up height. These cell sub-states are computed at each simulation step for each cell using a transition function. In addition, global parameters account for the general characteristics of the model. The global parameters include: apothem of the cell p a, adhesion (debris thickness that cannot leave the cell) p adh, friction threshold for debris outflows p f, relaxation rate of debris outflows p r, run-up loss at each step p rl, activation threshold for mobilization of the soil cover p mt, and factor of progressive erosion p er. The global parameters are initialized at the beginning of the simulation and remain constant during simulation execution. Finding appropriate values for the global parameters is the main challenge in applying SCIDDICA or similar CA models. One way to obtain appropriate global parameter values is to calibrate the model against debris flows in an analogous geological context (D Ambrosio, 2003). For that purpose, historical debris flows are compared with simulations. Parameter values are manually assigned and modified with respect to the result of the simulation to continuously improve the set of parameters. However, the described process is computationally intensive and requires human evaluation for each simulation execution. Therefore, an approach to automatically identify optimal values of global parameters is needed. Iovine, D Ambrosio and Di Gregorio have presented an automated technique for identification of optimal global parameter values based on genetic algorithms (Iovine, 2004). An average debris 212

3 flow simulation with SCIDDICA requires at least CA steps. To evaluate the best set of global parameters, the simulation is run multiple times with different global parameter values. However, the computation is carried out sequentially. As a consequence, the evaluation of the parameters requires days when performed on a single computer. To overcome this limitation, a high-performance CA simulation framework for SCIDDICA, capable to automatically identify optimal parameter values, has been developed. 2. Case study The parameter identification framework has been validated against an experiment conducted at the USGS debris flow flume in Oregon, USA (Iverson, 2010). The flume is a rectangular concrete channel 95 meters long and 2 meters wide, which slopes 31 degrees and ends with a planar runout surface (Figure 1). To create a debris flow, a mixture of 9.4 m3 watersaturated gravel, sand and mud is placed behind a headgate at the top of the channel, and then released. Time-series data with high resolution is collected at three measurement cross sections downslope from the headgate at 33, 66 and 90 meters. The aggregated data implies mean peak thickness values of the flow of ~0.2 m and standard deviations of ~0.05 m. Figure 1: Flume geometry (Iverson, 2010) 3. Inverse problem A simulation is a forward problem in terms that the result of a measurement is predicted. In contrast, using the result of some measurement to estimate parameter values is referred to as an inverse problem (Tarantola, 2005). Inverse problems are described by a model space and a data space. For the debris flow parameter identification problem they are defined as follows: 213

4 Model space is the search space for the parameter values. Attempts to assign reasonable values to the global parameters and execute the simulation have shown that the parameters with the biggest influence on the SCIDDICA simulation outcome are run-up loss, height threshold and adhesion. The factor of progressive erosion and the activation threshold for the mobilization of the soil cover are not varied, because no erosion can occur in a concrete channel. The value of each of the varied parameters must be within a certain range. Range bounds (Table 1) were adopted from the algorithm proposed by Iovine (Iovine, 2004). They were further restricted in accordance to the validation experiment. The model space M is established by combining all feasible parameter valuese as a Cartesian product (Formula 2) such that (1) where the parameters can take any value within the range. The data space consists of all conceivable instrumental responses, i.e. the debris thickness at 33 and 66 meters approaching 0 and the thickness at the 90th meter approximating 0.15 after the debris stopped moving. Table 1: Global parameters evaluated by the framework Parameter Range Best value Run-up loss p rl Friction threshold p f Adhesion p adh Objective function To identify the optimal global parameter values, the least squared method is used. The least squared method is a standard approach to find the best fit to a data set. The idea is to compute the differences between the actual real case values and the simulated values and to minimize their squared sum. In this fashion, the absolute simulation error is minimized. Formula 2 expresses the objective function f to be minimized by the optimization framework, where tm denotes the measured debris thickness, ts - the simulated debris thickness, pm - the mean peak value of the measured thickness, ps the simulated peak, dm - the standard deviation of the measured thickness, and ds the simulated standard deviation. The differences are computed for the data collected at the three measurement cross sections of the flume. 214

5 (2) 5. Implementation To simulate debris flow events with CA, a multi-module framework has been developed the Debris Flow Simulation Framework (DFSF). A basic overview of its architecture and most important modules is represented by Figure 2. The entire implementation has been carried out in Java. Figure 2: The Debris Flow Simulation Framework (DFSF) architecture overview 5.1. CA core The CA module provides fundamental entities and specifies basic transformation and processing behavior required to derive a cellular model. As shown in Figure 3, the CA core consists of the following building blocks: Cell defines base soil properties of a finite geographic area in a geometry independent manner. Thus, cells with different geometric form like triangle, square or hexagon are supported. Moreover, cells are the only atomic entity and do not depend on any other building block. A cell is able to detect changes in its own state. Grid is a set of a finite number of cells. The total number of cells defines the resolution of a simulation. An increase of the grid resolution leads to improvement in the area representation, whilst degrading the processing speed. The grid is also able to track its own state based on the states of the cells it contains. Neighborhood is defined for each cell in the grid. It consists of the cell itself, also called central cell, and all adjacent cells. The number of neighbors depends on the 215

6 geometric form of the cell. Thus, every neighborhood could be represented as a finite subset of the grid. Overlay describes an abstract layer applied atop the cellular grid at the beginning of the simulation. Its main purpose is to specify the topographic terrain on which the debris flow takes place by providing cells with data such as altitude of the bedrock, the thickness of landslide debris and the depth of erodible soil cover. Cell Transformation defines a function, which is used repeatedly by the CA to transform cells. A cell transformation could be considered analogous to a transition function as defined in automata theory. Transformations may take into account not only the current state of a specific cell, but also the states of its neighbors. DFSF transformations are designed to operate on a single cell at a time, therefore fully supporting functions applied only to a specific subset of grid cells. Grid Transformer is responsible for the execution of a set of transformations on each cell that is part of the grid. To do so, the transformer iterates sequentially over a predefined collection of transformations. Generation is a set of grid cells, the state of which had changed during processing of the specified transformations. A generation is created after the grid transformer had finished execution and right before the simulation time unit is advanced by 1. Processor is the top-most CA entity. It is designed to establish bindings between other modules, to control the interactions among them and to define a basic simulation processing behavior. Communication with modules external to the CA core is also performed by the processor. The implementation of the processor is strongly problem-oriented and highly dependent on the geometry form of the cells. Therefore, DFSF provides an abstract definition of the processor entity. To ensure maximum problem detachment and ease of future extensibility most of the above introduced building blocks are implemented in abstract manner. 216

7 Figure 3: CA core building blocks as they relate to each other Figure 4: Cell neighborhood and the corresponding indexes with respect to the central cell The CA core communicates with the other modules through the processor. The communication is accomplished by utilizing an event-based notification pipeline. The pipeline enables the propagation of messages and data upon occurrence of predefined events. Implementation is carried out following the publish-subscribe pattern to support multiple external modules as subscribers SCIDDICA implementation To enable CA processing as specified by SCIDDICA, a new tangible DFSF model has been derived. The model is based on the CA core specified above. It utilizes hexagonal cells that expose soil and topographic properties as required by SCIDDICA. The neighborhood of each cell consists of six directly adjacent cells. To provide position awareness, an indexing approach for neighbors is introduced with respect to the central cell. Starting from the north side, indexes from 0 to 5 are assigned to each adjacent cell in clockwise direction. An example is shown in Figure 4. If no immediate neighbor exists, i.e. if the central cell lies on a grid border, an empty reference is saved for the current index. The transition function consists of four independently defined cell transformations. An adapted variant of the SCIDDICA S4a transformation rules are utilized by the latest version of the DFSF model. They are applied simultaneously to the whole grid by the grid transformer. 217

8 5.3. Flume simulation To recreate the structure of the Debris Flow Flume at H.J. Andrews Experimental Forest, a specific overlay is derived and applied atop the CA grid. Cell altitudes are altered to model the walls, headgate and slope of the flume channel. Debris thickness is specified only for the cells behind the gates, thus fulfilling the initial SCIDDICA conditions. The position of the headgate is considered a reference point, or 0, with respect to the channel length. Cross-sections are established downslope at 33, 66 and 90 meters. At these points measurement data such as mean thickness and peak thickness is collected and propagated for further processing and analysis. To visually verify and present the debris flow simulation, a problem-specific Graphical User Interface (GUI) has been implemented. Based on the open source Visualization Toolkit (VTK) project ( the GUI provides a real-time 3D representation of the changing cell states and thus of the whole simulated event, as shown in Figure 5. The visualization data required by the GUI module is obtained through the event-based notification pipeline that is exposed by the processor entity of the CA core. Figure 5: The DFSF Graphical User Interface module 218

9 A generic file Input/Output (I/O) module has also been implemented. Based on the generation entity, provided as part of the CA core, it allows the preservation of already completed simulations. Registering as a subscriber enables the I/O to receive notifications when new generations had been created. Utilizing binary serialization on selected only cell sub-states leads to fast write access speed and space-efficient preservation, due to the lack of data overhead. Reading a simulation file allows the visual recreation of a simulation, thus eliminating the mostly heavy computational effort. 6. Optimization To identify the optimal values of global debris flow parameters, the flume simulation is coupled with the Multi-method Optimization Package (MOPACK) MOPACK MOPACK is a Java-based framework, which provides interfaces and complete implementation of miscellaneous optimization algorithms by utilizing several optimization strategies and deterministic and stochastic methods (Nguyen, 2012). In addition, MOPACK provides a flexible distribution concept to carry out simulations simultaneously in a distributed computing environment by exploiting parallel computing paradigms. The distribution concept is based on the high performance cloud computing framework GridGain, which relies on a very fast MapReduce implementation ( Particle Swarm Optimization (PSO) has been applied to find optimal global parameter values. PSO is a stochastic population-based technique, in which, a swarm of potential solutions, called particles, is used (Kennedy and Eberhart, 1995). The particles do not depend on each other. As a result, PSO is well suited for execution in distributed environments. MOPACK offers an implementation of PSO, which is able to operate in parallel, thus providing an opportunity to accelerate optimization. For parameter identification, a MOPACK debris flow optimization problem is defined. It consists of an objective function and a set of global debris flow parameters. For all parameters minimum, maximum and initial values are specified. By varying the given parameters within their min-max range, numerous solutions are evaluated during the optimization process. Parameters, which lead to a fully minimized objective function, are considered identified and thus a solution of the debris flow optimization problem. 219

10 6.2. Results As is often the case with optimization problems, no single optimal solution exists. After several refinements of the initial minimum-maximum range of the global parameters, an absolute error approaching 0.2 has been reached. To achieve similar values an average of ~320 MOPACK iterations were required. Figure 6 presents the absolute error devolution as a function of the optimization iterations. The graphic results from an optimization of a simulation with 8 cells horizontal resolution. Figure 6: Absolute error devolution as a function of optimization iterations 7. Conclusions The design and prototype implementation of a parameter identification framework for debris flow simulation based on cellular automata have been presented in this paper. The framework comprises of a core CA module, an implementation of a debris flow model, and an integrated optimization framework. It has been shown, that the optimization framework, operating in a fully parallel manner, allows for high-performance identification of optimal values of global parameters. The framework, presented in this paper, has been validated against an experiment conducted at the USGS debris flow flume. Although the feasibility of the implemented parameter identification approach has been demonstrated, the framework can further be improved by extending the objective function to provide more accurate representation of the debris distribution. Future research also includes validation of the framework against real historical debris flows and execution of simulations in analogous geological contexts. 220

11 Literatur D Ambrosio D., Di Gregorio S., and Iovine G. (2003) Simulating debris flows through a hexagonal cellular automata model: SCIDDICA S3 hex, Nat. Hazards Earth Syst. Sci., Vol. 3, pp Ilachinski, A. (2011) Cellular Automata: A Discrete Universe. World Scientific Publishing Co. Pte. Ltd., Singapore Iovine, G., D Ambrosio, D., and Di Gregorio, S. (2004). Applying genetic algorithms for calibrating a hexagonal cellular automata model for the simulation of debris flows characterised by strong inertial effects, Geomorphology, Elsevier Science, Vol. 66, Issue 1-4, March, 2005, pp Iverson, R. M., Logan, M., LaHusen, R. G., and Berti, M. (2010). The perfect debris flow? Aggregated results from 28 large-scale experiments, Journal of Geophysical Research, Vol.115, Issue F3, 2010, pp. F03005 Kennedy, J. and Eberhart, R. (1995). Particle Swarm Optimization, Proceedings of IEEE International Conference on Neural Networks. IV. pp Nguyen, V.V., Hartmann, D., and König, M. (2012) A distributed agent-based approach for simulation-based optimization, Advanced Engineering Informatics, Vol.26, Issue 4, October 2012, pp Tarantola, Albert (2005). Inverse Problem Theory and Methods for Model Parameter Estimation, Society for Industrial and Applied Mathematics, Philadelphia 221

12 222

Tsunami Wave Simulation Models Based on Hexagonal Cellular Automata

Tsunami Wave Simulation Models Based on Hexagonal Cellular Automata Tsunami Wave Simulation Models Based on Hexagonal Cellular Automata E.SYED MOHAMED Department of Computer Science and Engineering BS Abdur Rahman University, Chennai INDIA syedmohamed@bsauniv.ac.in http://www.bsauniv.ac.in

More information

FITTING PIECEWISE LINEAR FUNCTIONS USING PARTICLE SWARM OPTIMIZATION

FITTING PIECEWISE LINEAR FUNCTIONS USING PARTICLE SWARM OPTIMIZATION Suranaree J. Sci. Technol. Vol. 19 No. 4; October - December 2012 259 FITTING PIECEWISE LINEAR FUNCTIONS USING PARTICLE SWARM OPTIMIZATION Pavee Siriruk * Received: February 28, 2013; Revised: March 12,

More information

Scalar Visualization

Scalar Visualization Scalar Visualization Visualizing scalar data Popular scalar visualization techniques Color mapping Contouring Height plots outline Recap of Chap 4: Visualization Pipeline 1. Data Importing 2. Data Filtering

More information

Particle Swarm Optimization

Particle Swarm Optimization Particle Swarm Optimization Gonçalo Pereira INESC-ID and Instituto Superior Técnico Porto Salvo, Portugal gpereira@gaips.inesc-id.pt April 15, 2011 1 What is it? Particle Swarm Optimization is an algorithm

More information

Contents of Lecture. Surface (Terrain) Data Models. Terrain Surface Representation. Sampling in Surface Model DEM

Contents of Lecture. Surface (Terrain) Data Models. Terrain Surface Representation. Sampling in Surface Model DEM Lecture 13: Advanced Data Models: Terrain mapping and Analysis Contents of Lecture Surface Data Models DEM GRID Model TIN Model Visibility Analysis Geography 373 Spring, 2006 Changjoo Kim 11/29/2006 1

More information

SIMULATION OF ARTIFICIAL SYSTEMS BEHAVIOR IN PARAMETRIC EIGHT-DIMENSIONAL SPACE

SIMULATION OF ARTIFICIAL SYSTEMS BEHAVIOR IN PARAMETRIC EIGHT-DIMENSIONAL SPACE 78 Proceedings of the 4 th International Conference on Informatics and Information Technology SIMULATION OF ARTIFICIAL SYSTEMS BEHAVIOR IN PARAMETRIC EIGHT-DIMENSIONAL SPACE D. Ulbikiene, J. Ulbikas, K.

More information

Inertia Weight. v i = ωv i +φ 1 R(0,1)(p i x i )+φ 2 R(0,1)(p g x i ) The new velocity update equation:

Inertia Weight. v i = ωv i +φ 1 R(0,1)(p i x i )+φ 2 R(0,1)(p g x i ) The new velocity update equation: Convergence of PSO The velocity update equation: v i = v i +φ 1 R(0,1)(p i x i )+φ 2 R(0,1)(p g x i ) for some values of φ 1 and φ 2 the velocity grows without bound can bound velocity to range [ V max,v

More information

Three-Dimensional Off-Line Path Planning for Unmanned Aerial Vehicle Using Modified Particle Swarm Optimization

Three-Dimensional Off-Line Path Planning for Unmanned Aerial Vehicle Using Modified Particle Swarm Optimization Three-Dimensional Off-Line Path Planning for Unmanned Aerial Vehicle Using Modified Particle Swarm Optimization Lana Dalawr Jalal Abstract This paper addresses the problem of offline path planning for

More information

Generalized Coordinates for Cellular Automata Grids

Generalized Coordinates for Cellular Automata Grids Generalized Coordinates for Cellular Automata Grids Lev Naumov Saint-Peterburg State Institute of Fine Mechanics and Optics, Computer Science Department, 197101 Sablinskaya st. 14, Saint-Peterburg, Russia

More information

Self-formation, Development and Reproduction of the Artificial System

Self-formation, Development and Reproduction of the Artificial System Solid State Phenomena Vols. 97-98 (4) pp 77-84 (4) Trans Tech Publications, Switzerland Journal doi:.48/www.scientific.net/ssp.97-98.77 Citation (to be inserted by the publisher) Copyright by Trans Tech

More information

Research Article Path Planning Using a Hybrid Evolutionary Algorithm Based on Tree Structure Encoding

Research Article Path Planning Using a Hybrid Evolutionary Algorithm Based on Tree Structure Encoding e Scientific World Journal, Article ID 746260, 8 pages http://dx.doi.org/10.1155/2014/746260 Research Article Path Planning Using a Hybrid Evolutionary Algorithm Based on Tree Structure Encoding Ming-Yi

More information

Ancient Kiln Landscape Evolution Based on Particle Swarm Optimization and Cellular Automata Model

Ancient Kiln Landscape Evolution Based on Particle Swarm Optimization and Cellular Automata Model , pp.218-223 http://dx.doi.org/10.14257/astl.2014.53.46 Ancient Kiln Landscape Evolution Based on Particle Swarm Optimization and Cellular Automata Model Tao Liu 1 *, Xuan Xiao 2, Donglan Ying 3 E-mail:

More information

Liquefaction Analysis in 3D based on Neural Network Algorithm

Liquefaction Analysis in 3D based on Neural Network Algorithm Liquefaction Analysis in 3D based on Neural Network Algorithm M. Tolon Istanbul Technical University, Turkey D. Ural Istanbul Technical University, Turkey SUMMARY: Simplified techniques based on in situ

More information

On a fast discrete straight line segment detection

On a fast discrete straight line segment detection On a fast discrete straight line segment detection Ali Abdallah, Roberto Cardarelli, Giulio Aielli University of Rome Tor Vergata Abstract Detecting lines is one of the fundamental problems in image processing.

More information

Conway s Game of Life Wang An Aloysius & Koh Shang Hui

Conway s Game of Life Wang An Aloysius & Koh Shang Hui Wang An Aloysius & Koh Shang Hui Winner of Foo Kean Pew Memorial Prize and Gold Award Singapore Mathematics Project Festival 2014 Abstract Conway s Game of Life is a cellular automaton devised by the British

More information

Parallel calculation of LS factor for regional scale soil erosion assessment

Parallel calculation of LS factor for regional scale soil erosion assessment Parallel calculation of LS factor for regional scale soil erosion assessment Kai Liu 1, Guoan Tang 2 1 Key Laboratory of Virtual Geographic Environment (Nanjing Normal University), Ministry of Education,

More information

ARMA MODEL SELECTION USING PARTICLE SWARM OPTIMIZATION AND AIC CRITERIA. Mark S. Voss a b. and Xin Feng.

ARMA MODEL SELECTION USING PARTICLE SWARM OPTIMIZATION AND AIC CRITERIA. Mark S. Voss a b. and Xin Feng. Copyright 2002 IFAC 5th Triennial World Congress, Barcelona, Spain ARMA MODEL SELECTION USING PARTICLE SWARM OPTIMIZATION AND AIC CRITERIA Mark S. Voss a b and Xin Feng a Department of Civil and Environmental

More information

Experimental Study on Bound Handling Techniques for Multi-Objective Particle Swarm Optimization

Experimental Study on Bound Handling Techniques for Multi-Objective Particle Swarm Optimization Experimental Study on Bound Handling Techniques for Multi-Objective Particle Swarm Optimization adfa, p. 1, 2011. Springer-Verlag Berlin Heidelberg 2011 Devang Agarwal and Deepak Sharma Department of Mechanical

More information

FOOTPRINTS EXTRACTION

FOOTPRINTS EXTRACTION Building Footprints Extraction of Dense Residential Areas from LiDAR data KyoHyouk Kim and Jie Shan Purdue University School of Civil Engineering 550 Stadium Mall Drive West Lafayette, IN 47907, USA {kim458,

More information

Strategies for simulating pedestrian navigation with multiple reinforcement learning agents

Strategies for simulating pedestrian navigation with multiple reinforcement learning agents Strategies for simulating pedestrian navigation with multiple reinforcement learning agents Francisco Martinez-Gil, Miguel Lozano, Fernando Ferna ndez Presented by: Daniel Geschwender 9/29/2016 1 Overview

More information

Module 1 Lecture Notes 2. Optimization Problem and Model Formulation

Module 1 Lecture Notes 2. Optimization Problem and Model Formulation Optimization Methods: Introduction and Basic concepts 1 Module 1 Lecture Notes 2 Optimization Problem and Model Formulation Introduction In the previous lecture we studied the evolution of optimization

More information

Argha Roy* Dept. of CSE Netaji Subhash Engg. College West Bengal, India.

Argha Roy* Dept. of CSE Netaji Subhash Engg. College West Bengal, India. Volume 3, Issue 3, March 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Training Artificial

More information

6. NEURAL NETWORK BASED PATH PLANNING ALGORITHM 6.1 INTRODUCTION

6. NEURAL NETWORK BASED PATH PLANNING ALGORITHM 6.1 INTRODUCTION 6 NEURAL NETWORK BASED PATH PLANNING ALGORITHM 61 INTRODUCTION In previous chapters path planning algorithms such as trigonometry based path planning algorithm and direction based path planning algorithm

More information

A *69>H>N6 #DJGC6A DG C<>C::G>C<,8>:C8:H /DA 'D 2:6G, ()-"&"3 -"(' ( +-" " " % '.+ % ' -0(+$,

A *69>H>N6 #DJGC6A DG C<>C::G>C<,8>:C8:H /DA 'D 2:6G, ()-&3 -(' ( +-   % '.+ % ' -0(+$, The structure is a very important aspect in neural network design, it is not only impossible to determine an optimal structure for a given problem, it is even impossible to prove that a given structure

More information

CELLULAR AUTOMATA IN MATHEMATICAL MODELING JOSH KANTOR. 1. History

CELLULAR AUTOMATA IN MATHEMATICAL MODELING JOSH KANTOR. 1. History CELLULAR AUTOMATA IN MATHEMATICAL MODELING JOSH KANTOR 1. History Cellular automata were initially conceived of in 1948 by John von Neumann who was searching for ways of modeling evolution. He was trying

More information

CS443: Digital Imaging and Multimedia Binary Image Analysis. Spring 2008 Ahmed Elgammal Dept. of Computer Science Rutgers University

CS443: Digital Imaging and Multimedia Binary Image Analysis. Spring 2008 Ahmed Elgammal Dept. of Computer Science Rutgers University CS443: Digital Imaging and Multimedia Binary Image Analysis Spring 2008 Ahmed Elgammal Dept. of Computer Science Rutgers University Outlines A Simple Machine Vision System Image segmentation by thresholding

More information

Cost Model Approach to Identify Snow Avalanche prone Zones

Cost Model Approach to Identify Snow Avalanche prone Zones Cost Model Approach to Identify Snow Avalanche prone Zones Abstract The snow avalanches are natural processes, occurring perhaps 1,000,000 times per year, worldwide. Lots of research work has been done

More information

A Particle Swarm Optimization Algorithm for Solving Flexible Job-Shop Scheduling Problem

A Particle Swarm Optimization Algorithm for Solving Flexible Job-Shop Scheduling Problem 2011, TextRoad Publication ISSN 2090-4304 Journal of Basic and Applied Scientific Research www.textroad.com A Particle Swarm Optimization Algorithm for Solving Flexible Job-Shop Scheduling Problem Mohammad

More information

A Data Classification Algorithm of Internet of Things Based on Neural Network

A Data Classification Algorithm of Internet of Things Based on Neural Network A Data Classification Algorithm of Internet of Things Based on Neural Network https://doi.org/10.3991/ijoe.v13i09.7587 Zhenjun Li Hunan Radio and TV University, Hunan, China 278060389@qq.com Abstract To

More information

Meta- Heuristic based Optimization Algorithms: A Comparative Study of Genetic Algorithm and Particle Swarm Optimization

Meta- Heuristic based Optimization Algorithms: A Comparative Study of Genetic Algorithm and Particle Swarm Optimization 2017 2 nd International Electrical Engineering Conference (IEEC 2017) May. 19 th -20 th, 2017 at IEP Centre, Karachi, Pakistan Meta- Heuristic based Optimization Algorithms: A Comparative Study of Genetic

More information

An Approach to Polygonal Approximation of Digital CurvesBasedonDiscreteParticleSwarmAlgorithm

An Approach to Polygonal Approximation of Digital CurvesBasedonDiscreteParticleSwarmAlgorithm Journal of Universal Computer Science, vol. 13, no. 10 (2007), 1449-1461 submitted: 12/6/06, accepted: 24/10/06, appeared: 28/10/07 J.UCS An Approach to Polygonal Approximation of Digital CurvesBasedonDiscreteParticleSwarmAlgorithm

More information

Thoughts on Representing Spatial Objects. William A. Huber Quantitative Decisions Rosemont, PA

Thoughts on Representing Spatial Objects. William A. Huber Quantitative Decisions Rosemont, PA Thoughts on Representing Spatial Objects William A. Huber Quantitative Decisions Rosemont, PA Overview 1. Some Ways to Structure Space 2. What to Put into a Grid 3. Objects and Fields 4. Hybrid Structures

More information

CHAPTER 6 ORTHOGONAL PARTICLE SWARM OPTIMIZATION

CHAPTER 6 ORTHOGONAL PARTICLE SWARM OPTIMIZATION 131 CHAPTER 6 ORTHOGONAL PARTICLE SWARM OPTIMIZATION 6.1 INTRODUCTION The Orthogonal arrays are helpful in guiding the heuristic algorithms to obtain a good solution when applied to NP-hard problems. This

More information

Particle Swarm Optimization Based Approach for Location Area Planning in Cellular Networks

Particle Swarm Optimization Based Approach for Location Area Planning in Cellular Networks International Journal of Intelligent Systems and Applications in Engineering Advanced Technology and Science ISSN:2147-67992147-6799 www.atscience.org/ijisae Original Research Paper Particle Swarm Optimization

More information

IMAGE PROCESSING AND IMAGE REGISTRATION ON SPIRAL ARCHITECTURE WITH salib

IMAGE PROCESSING AND IMAGE REGISTRATION ON SPIRAL ARCHITECTURE WITH salib IMAGE PROCESSING AND IMAGE REGISTRATION ON SPIRAL ARCHITECTURE WITH salib Stefan Bobe 1 and Gerald Schaefer 2,* 1 University of Applied Sciences, Bielefeld, Germany. 2 School of Computing and Informatics,

More information

arxiv: v1 [math.co] 7 Dec 2018

arxiv: v1 [math.co] 7 Dec 2018 SEQUENTIALLY EMBEDDABLE GRAPHS JACKSON AUTRY AND CHRISTOPHER O NEILL arxiv:1812.02904v1 [math.co] 7 Dec 2018 Abstract. We call a (not necessarily planar) embedding of a graph G in the plane sequential

More information

Handling Multi Objectives of with Multi Objective Dynamic Particle Swarm Optimization

Handling Multi Objectives of with Multi Objective Dynamic Particle Swarm Optimization Handling Multi Objectives of with Multi Objective Dynamic Particle Swarm Optimization Richa Agnihotri #1, Dr. Shikha Agrawal #1, Dr. Rajeev Pandey #1 # Department of Computer Science Engineering, UIT,

More information

ADAPTIVE AND DYNAMIC LOAD BALANCING METHODOLOGIES FOR DISTRIBUTED ENVIRONMENT

ADAPTIVE AND DYNAMIC LOAD BALANCING METHODOLOGIES FOR DISTRIBUTED ENVIRONMENT ADAPTIVE AND DYNAMIC LOAD BALANCING METHODOLOGIES FOR DISTRIBUTED ENVIRONMENT PhD Summary DOCTORATE OF PHILOSOPHY IN COMPUTER SCIENCE & ENGINEERING By Sandip Kumar Goyal (09-PhD-052) Under the Supervision

More information

6. Object Identification L AK S H M O U. E D U

6. Object Identification L AK S H M O U. E D U 6. Object Identification L AK S H M AN @ O U. E D U Objects Information extracted from spatial grids often need to be associated with objects not just an individual pixel Group of pixels that form a real-world

More information

UNIT 9C Randomness in Computation: Cellular Automata Principles of Computing, Carnegie Mellon University

UNIT 9C Randomness in Computation: Cellular Automata Principles of Computing, Carnegie Mellon University UNIT 9C Randomness in Computation: Cellular Automata 1 Exam locations: Announcements 2:30 Exam: Sections A, B, C, D, E go to Rashid (GHC 4401) Sections F, G go to PH 125C. 3:30 Exam: All sections go to

More information

Lecture 6: GIS Spatial Analysis. GE 118: INTRODUCTION TO GIS Engr. Meriam M. Santillan Caraga State University

Lecture 6: GIS Spatial Analysis. GE 118: INTRODUCTION TO GIS Engr. Meriam M. Santillan Caraga State University Lecture 6: GIS Spatial Analysis GE 118: INTRODUCTION TO GIS Engr. Meriam M. Santillan Caraga State University 1 Spatial Data It can be most simply defined as information that describes the distribution

More information

Efficient Self-Reconfigurable Implementations Using On-Chip Memory

Efficient Self-Reconfigurable Implementations Using On-Chip Memory 10th International Conference on Field Programmable Logic and Applications, August 2000. Efficient Self-Reconfigurable Implementations Using On-Chip Memory Sameer Wadhwa and Andreas Dandalis University

More information

CHAPTER 3 A FAST K-MODES CLUSTERING ALGORITHM TO WAREHOUSE VERY LARGE HETEROGENEOUS MEDICAL DATABASES

CHAPTER 3 A FAST K-MODES CLUSTERING ALGORITHM TO WAREHOUSE VERY LARGE HETEROGENEOUS MEDICAL DATABASES 70 CHAPTER 3 A FAST K-MODES CLUSTERING ALGORITHM TO WAREHOUSE VERY LARGE HETEROGENEOUS MEDICAL DATABASES 3.1 INTRODUCTION In medical science, effective tools are essential to categorize and systematically

More information

Seventh Grade Mathematics Content Standards and Objectives

Seventh Grade Mathematics Content Standards and Objectives Seventh Grade Mathematics Content Standards and Objectives Standard 1: Number and Operations beyond the field of mathematics, students will M.S.7.1 demonstrate understanding of numbers, ways of representing

More information

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

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

More information

GENETIC ALGORITHM VERSUS PARTICLE SWARM OPTIMIZATION IN N-QUEEN PROBLEM

GENETIC ALGORITHM VERSUS PARTICLE SWARM OPTIMIZATION IN N-QUEEN PROBLEM Journal of Al-Nahrain University Vol.10(2), December, 2007, pp.172-177 Science GENETIC ALGORITHM VERSUS PARTICLE SWARM OPTIMIZATION IN N-QUEEN PROBLEM * Azhar W. Hammad, ** Dr. Ban N. Thannoon Al-Nahrain

More information

Alaska Mathematics Standards Vocabulary Word List Grade 7

Alaska Mathematics Standards Vocabulary Word List Grade 7 1 estimate proportion proportional relationship rate ratio rational coefficient rational number scale Ratios and Proportional Relationships To find a number close to an exact amount; an estimate tells

More information

What are Cellular Automata?

What are Cellular Automata? What are Cellular Automata? It is a model that can be used to show how the elements of a system interact with each other. Each element of the system is assigned a cell. The cells can be 2-dimensional squares,

More information

ENTITIES IN THE OBJECT-ORIENTED DESIGN PROCESS MODEL

ENTITIES IN THE OBJECT-ORIENTED DESIGN PROCESS MODEL INTERNATIONAL DESIGN CONFERENCE - DESIGN 2000 Dubrovnik, May 23-26, 2000. ENTITIES IN THE OBJECT-ORIENTED DESIGN PROCESS MODEL N. Pavković, D. Marjanović Keywords: object oriented methodology, design process

More information

A Simple Placement and Routing Algorithm for a Two-Dimensional Computational Origami Architecture

A Simple Placement and Routing Algorithm for a Two-Dimensional Computational Origami Architecture A Simple Placement and Routing Algorithm for a Two-Dimensional Computational Origami Architecture Robert S. French April 5, 1989 Abstract Computational origami is a parallel-processing concept in which

More information

Two-dimensional Totalistic Code 52

Two-dimensional Totalistic Code 52 Two-dimensional Totalistic Code 52 Todd Rowland Senior Research Associate, Wolfram Research, Inc. 100 Trade Center Drive, Champaign, IL The totalistic two-dimensional cellular automaton code 52 is capable

More information

Planar Graphs with Many Perfect Matchings and Forests

Planar Graphs with Many Perfect Matchings and Forests Planar Graphs with Many Perfect Matchings and Forests Michael Biro Abstract We determine the number of perfect matchings and forests in a family T r,3 of triangulated prism graphs. These results show that

More information

USING NEURAL NETWORK FOR PREDICTION OF THE DYNAMIC PERIOD AND AMPLIFICATION FACTOR OF SOIL FOR MICROZONATION IN URBAN AREA

USING NEURAL NETWORK FOR PREDICTION OF THE DYNAMIC PERIOD AND AMPLIFICATION FACTOR OF SOIL FOR MICROZONATION IN URBAN AREA USING NEURAL NETWORK FOR PREDICTION OF THE DYNAMIC PERIOD AND AMPLIFICATION FACTOR OF SOIL FOR MICROZONATION IN URBAN AREA Tahamoli Roodsari, Mehrzad 1 and Habibi, Mohammad Reza 2 1 M.S. in Earthquake

More information

Data Mining. Part 2. Data Understanding and Preparation. 2.4 Data Transformation. Spring Instructor: Dr. Masoud Yaghini. Data Transformation

Data Mining. Part 2. Data Understanding and Preparation. 2.4 Data Transformation. Spring Instructor: Dr. Masoud Yaghini. Data Transformation Data Mining Part 2. Data Understanding and Preparation 2.4 Spring 2010 Instructor: Dr. Masoud Yaghini Outline Introduction Normalization Attribute Construction Aggregation Attribute Subset Selection Discretization

More information

D020 Statics in Magnetotellurics - Shift or Model?

D020 Statics in Magnetotellurics - Shift or Model? D020 Statics in Magnetotellurics - Shift or Model? W. Soyer* (WesternGeco-Geosystem), S. Hallinan (WesternGeco- Geosystem), R.L. Mackie (WesternGeco-Geosystem) & W. Cumming (Cumming Geoscience) SUMMARY

More information

Optimal Design of a Parallel Beam System with Elastic Supports to Minimize Flexural Response to Harmonic Loading

Optimal Design of a Parallel Beam System with Elastic Supports to Minimize Flexural Response to Harmonic Loading 11 th World Congress on Structural and Multidisciplinary Optimisation 07 th -12 th, June 2015, Sydney Australia Optimal Design of a Parallel Beam System with Elastic Supports to Minimize Flexural Response

More information

Two Algorithms of Image Segmentation and Measurement Method of Particle s Parameters

Two Algorithms of Image Segmentation and Measurement Method of Particle s Parameters Appl. Math. Inf. Sci. 6 No. 1S pp. 105S-109S (2012) Applied Mathematics & Information Sciences An International Journal @ 2012 NSP Natural Sciences Publishing Cor. Two Algorithms of Image Segmentation

More information

Chapter 3. Image Processing Methods. (c) 2008 Prof. Dr. Michael M. Richter, Universität Kaiserslautern

Chapter 3. Image Processing Methods. (c) 2008 Prof. Dr. Michael M. Richter, Universität Kaiserslautern Chapter 3 Image Processing Methods The Role of Image Processing Methods (1) An image is an nxn matrix of gray or color values An image processing method is algorithm transforming such matrices or assigning

More information

OPTIMIZED TASK ALLOCATION IN SENSOR NETWORKS

OPTIMIZED TASK ALLOCATION IN SENSOR NETWORKS OPTIMIZED TASK ALLOCATION IN SENSOR NETWORKS Ali Bagherinia 1 1 Department of Computer Engineering, Islamic Azad University-Dehdasht Branch, Dehdasht, Iran ali.bagherinia@gmail.com ABSTRACT In this paper

More information

QUANTUM BASED PSO TECHNIQUE FOR IMAGE SEGMENTATION

QUANTUM BASED PSO TECHNIQUE FOR IMAGE SEGMENTATION International Journal of Computer Engineering and Applications, Volume VIII, Issue I, Part I, October 14 QUANTUM BASED PSO TECHNIQUE FOR IMAGE SEGMENTATION Shradha Chawla 1, Vivek Panwar 2 1 Department

More information

Density Based Clustering using Modified PSO based Neighbor Selection

Density Based Clustering using Modified PSO based Neighbor Selection Density Based Clustering using Modified PSO based Neighbor Selection K. Nafees Ahmed Research Scholar, Dept of Computer Science Jamal Mohamed College (Autonomous), Tiruchirappalli, India nafeesjmc@gmail.com

More information

DEVELOPMENT OF PROTOTYPE OF INTEGRATED EARTHQUAKE DISASTER SIMULATOR USING DIGITAL CITY AND STRONG GROUND MOTION SIMULATOR WITH HIGH-RESOLUTION

DEVELOPMENT OF PROTOTYPE OF INTEGRATED EARTHQUAKE DISASTER SIMULATOR USING DIGITAL CITY AND STRONG GROUND MOTION SIMULATOR WITH HIGH-RESOLUTION 13 th World Conference on Earthquake Engineering Vancouver, B.C., Canada August 1-6, 2004 Paper No. 1418 DEVELOPMENT OF PROTOTYPE OF INTEGRATED EARTHQUAKE DISASTER SIMULATOR USING DIGITAL CITY AND STRONG

More information

Accurate Thermo-Fluid Simulation in Real Time Environments. Silvia Poles, Alberto Deponti, EnginSoft S.p.A. Frank Rhodes, Mentor Graphics

Accurate Thermo-Fluid Simulation in Real Time Environments. Silvia Poles, Alberto Deponti, EnginSoft S.p.A. Frank Rhodes, Mentor Graphics Accurate Thermo-Fluid Simulation in Real Time Environments Silvia Poles, Alberto Deponti, EnginSoft S.p.A. Frank Rhodes, Mentor Graphics M e c h a n i c a l a n a l y s i s W h i t e P a p e r w w w. m

More information

Terrain correction. Backward geocoding. Terrain correction and ortho-rectification. Why geometric terrain correction? Rüdiger Gens

Terrain correction. Backward geocoding. Terrain correction and ortho-rectification. Why geometric terrain correction? Rüdiger Gens Terrain correction and ortho-rectification Terrain correction Rüdiger Gens Why geometric terrain correction? Backward geocoding remove effects of side looking geometry of SAR images necessary step to allow

More information

Cell-to-switch assignment in. cellular networks. barebones particle swarm optimization

Cell-to-switch assignment in. cellular networks. barebones particle swarm optimization Cell-to-switch assignment in cellular networks using barebones particle swarm optimization Sotirios K. Goudos a), Konstantinos B. Baltzis, Christos Bachtsevanidis, and John N. Sahalos RadioCommunications

More information

Data Partitioning. Figure 1-31: Communication Topologies. Regular Partitions

Data Partitioning. Figure 1-31: Communication Topologies. Regular Partitions Data In single-program multiple-data (SPMD) parallel programs, global data is partitioned, with a portion of the data assigned to each processing node. Issues relevant to choosing a partitioning strategy

More information

LECTURE 16: SWARM INTELLIGENCE 2 / PARTICLE SWARM OPTIMIZATION 2

LECTURE 16: SWARM INTELLIGENCE 2 / PARTICLE SWARM OPTIMIZATION 2 15-382 COLLECTIVE INTELLIGENCE - S18 LECTURE 16: SWARM INTELLIGENCE 2 / PARTICLE SWARM OPTIMIZATION 2 INSTRUCTOR: GIANNI A. DI CARO BACKGROUND: REYNOLDS BOIDS Reynolds created a model of coordinated animal

More information

EXAM SOLUTIONS. Image Processing and Computer Vision Course 2D1421 Monday, 13 th of March 2006,

EXAM SOLUTIONS. Image Processing and Computer Vision Course 2D1421 Monday, 13 th of March 2006, School of Computer Science and Communication, KTH Danica Kragic EXAM SOLUTIONS Image Processing and Computer Vision Course 2D1421 Monday, 13 th of March 2006, 14.00 19.00 Grade table 0-25 U 26-35 3 36-45

More information

Particle Swarm Optimization applied to Pattern Recognition

Particle Swarm Optimization applied to Pattern Recognition Particle Swarm Optimization applied to Pattern Recognition by Abel Mengistu Advisor: Dr. Raheel Ahmad CS Senior Research 2011 Manchester College May, 2011-1 - Table of Contents Introduction... - 3 - Objectives...

More information

entire search space constituting coefficient sets. The brute force approach performs three passes through the search space, with each run the se

entire search space constituting coefficient sets. The brute force approach performs three passes through the search space, with each run the se Evolving Simulation Modeling: Calibrating SLEUTH Using a Genetic Algorithm M. D. Clarke-Lauer 1 and Keith. C. Clarke 2 1 California State University, Sacramento, 625 Woodside Sierra #2, Sacramento, CA,

More information

Increasing interconnection network connectivity for reducing operator complexity in asynchronous vision systems

Increasing interconnection network connectivity for reducing operator complexity in asynchronous vision systems Increasing interconnection network connectivity for reducing operator complexity in asynchronous vision systems Valentin Gies and Thierry M. Bernard ENSTA, 32 Bd Victor 75015, Paris, FRANCE, contact@vgies.com,

More information

2D image segmentation based on spatial coherence

2D image segmentation based on spatial coherence 2D image segmentation based on spatial coherence Václav Hlaváč Czech Technical University in Prague Center for Machine Perception (bridging groups of the) Czech Institute of Informatics, Robotics and Cybernetics

More information

Analysis Ready Data For Land (CARD4L-ST)

Analysis Ready Data For Land (CARD4L-ST) Analysis Ready Data For Land Product Family Specification Surface Temperature (CARD4L-ST) Document status For Adoption as: Product Family Specification, Surface Temperature This Specification should next

More information

DATA MODELS IN GIS. Prachi Misra Sahoo I.A.S.R.I., New Delhi

DATA MODELS IN GIS. Prachi Misra Sahoo I.A.S.R.I., New Delhi DATA MODELS IN GIS Prachi Misra Sahoo I.A.S.R.I., New Delhi -110012 1. Introduction GIS depicts the real world through models involving geometry, attributes, relations, and data quality. Here the realization

More information

An Introduction to Agent Based Modeling with Repast Michael North

An Introduction to Agent Based Modeling with Repast Michael North An Introduction to Agent Based Modeling with Repast Michael North north@anl.gov www.cas.anl.gov Repast is an Agent-Based Modeling and Simulation (ABMS) Toolkit with a Focus on Social Simulation Our goal

More information

Seismic regionalization based on an artificial neural network

Seismic regionalization based on an artificial neural network Seismic regionalization based on an artificial neural network *Jaime García-Pérez 1) and René Riaño 2) 1), 2) Instituto de Ingeniería, UNAM, CU, Coyoacán, México D.F., 014510, Mexico 1) jgap@pumas.ii.unam.mx

More information

Radio Network Planning with Combinatorial Optimisation Algorithms

Radio Network Planning with Combinatorial Optimisation Algorithms Author manuscript, published in "ACTS Mobile Telecommunications Summit 96, Granada : Spain (1996)" Radio Network Planning with Combinatorial Optimisation Algorithms P. Calégari, F. Guidec, P. Kuonen, EPFL,

More information

Motion Detection Algorithm

Motion Detection Algorithm Volume 1, No. 12, February 2013 ISSN 2278-1080 The International Journal of Computer Science & Applications (TIJCSA) RESEARCH PAPER Available Online at http://www.journalofcomputerscience.com/ Motion Detection

More information

Record Linkage using Probabilistic Methods and Data Mining Techniques

Record Linkage using Probabilistic Methods and Data Mining Techniques Doi:10.5901/mjss.2017.v8n3p203 Abstract Record Linkage using Probabilistic Methods and Data Mining Techniques Ogerta Elezaj Faculty of Economy, University of Tirana Gloria Tuxhari Faculty of Economy, University

More information

COMPUTATIONAL AND EXPERIMENTAL INTERFEROMETRIC ANALYSIS OF A CONE-CYLINDER-FLARE BODY. Abstract. I. Introduction

COMPUTATIONAL AND EXPERIMENTAL INTERFEROMETRIC ANALYSIS OF A CONE-CYLINDER-FLARE BODY. Abstract. I. Introduction COMPUTATIONAL AND EXPERIMENTAL INTERFEROMETRIC ANALYSIS OF A CONE-CYLINDER-FLARE BODY John R. Cipolla 709 West Homeway Loop, Citrus Springs FL 34434 Abstract A series of computational fluid dynamic (CFD)

More information

Data Representation in Visualisation

Data Representation in Visualisation Data Representation in Visualisation Visualisation Lecture 4 Taku Komura Institute for Perception, Action & Behaviour School of Informatics Taku Komura Data Representation 1 Data Representation We have

More information

Unsupervised Learning and Clustering

Unsupervised Learning and Clustering Unsupervised Learning and Clustering Selim Aksoy Department of Computer Engineering Bilkent University saksoy@cs.bilkent.edu.tr CS 551, Spring 2008 CS 551, Spring 2008 c 2008, Selim Aksoy (Bilkent University)

More information

The packing problem: A divide and conquer algorithm on cellular automata

The packing problem: A divide and conquer algorithm on cellular automata The packing problem: A divide and conquer algorithm on cellular automata Nicolas Bacquey Groupe de Recherche en Informatique, Image, Automatique et Instrumentation de Caen Université de Caen Basse-Normandie,

More information

PARTICLE SWARM OPTIMIZATION (PSO)

PARTICLE SWARM OPTIMIZATION (PSO) PARTICLE SWARM OPTIMIZATION (PSO) J. Kennedy and R. Eberhart, Particle Swarm Optimization. Proceedings of the Fourth IEEE Int. Conference on Neural Networks, 1995. A population based optimization technique

More information

Fractals: a way to represent natural objects

Fractals: a way to represent natural objects Fractals: a way to represent natural objects In spatial information systems there are two kinds of entity to model: natural earth features like terrain and coastlines; human-made objects like buildings

More information

Automatic registration of terrestrial laser scans for geological deformation monitoring

Automatic registration of terrestrial laser scans for geological deformation monitoring Automatic registration of terrestrial laser scans for geological deformation monitoring Daniel Wujanz 1, Michael Avian 2, Daniel Krueger 1, Frank Neitzel 1 1 Chair of Geodesy and Adjustment Theory, Technische

More information

Measuring and Evaluating Dissimilarity in Data and Pattern Spaces

Measuring and Evaluating Dissimilarity in Data and Pattern Spaces Measuring and Evaluating Dissimilarity in Data and Pattern Spaces Irene Ntoutsi, Yannis Theodoridis Database Group, Information Systems Laboratory Department of Informatics, University of Piraeus, Greece

More information

CT79 SOFT COMPUTING ALCCS-FEB 2014

CT79 SOFT COMPUTING ALCCS-FEB 2014 Q.1 a. Define Union, Intersection and complement operations of Fuzzy sets. For fuzzy sets A and B Figure Fuzzy sets A & B The union of two fuzzy sets A and B is a fuzzy set C, written as C=AUB or C=A OR

More information

Standards Level by Objective Hits Goals Objs # of objs by % w/in std Title Level Mean S.D. Concurr.

Standards Level by Objective Hits Goals Objs # of objs by % w/in std Title Level Mean S.D. Concurr. Table 9. Categorical Concurrence Between Standards and Assessment as Rated by Six Reviewers Florida Grade 9 athematics Number of Assessment Items - Standards evel by Objective Hits Cat. Goals Objs # of

More information

Application of Two-dimensional Periodic Cellular Automata in Image Processing

Application of Two-dimensional Periodic Cellular Automata in Image Processing International Journal of Computer, Mathematical Sciences and Applications Serials Publications Vol. 5, No. 1-2, January-June 2011, pp. 49 55 ISSN: 0973-6786 Application of Two-dimensional Periodic Cellular

More information

Three-dimensional nondestructive evaluation of cylindrical objects (pipe) using an infrared camera coupled to a 3D scanner

Three-dimensional nondestructive evaluation of cylindrical objects (pipe) using an infrared camera coupled to a 3D scanner Three-dimensional nondestructive evaluation of cylindrical objects (pipe) using an infrared camera coupled to a 3D scanner F. B. Djupkep Dizeu, S. Hesabi, D. Laurendeau, A. Bendada Computer Vision and

More information

CHAPTER 2 TEXTURE CLASSIFICATION METHODS GRAY LEVEL CO-OCCURRENCE MATRIX AND TEXTURE UNIT

CHAPTER 2 TEXTURE CLASSIFICATION METHODS GRAY LEVEL CO-OCCURRENCE MATRIX AND TEXTURE UNIT CHAPTER 2 TEXTURE CLASSIFICATION METHODS GRAY LEVEL CO-OCCURRENCE MATRIX AND TEXTURE UNIT 2.1 BRIEF OUTLINE The classification of digital imagery is to extract useful thematic information which is one

More information

Machine Learning Applications for Data Center Optimization

Machine Learning Applications for Data Center Optimization Machine Learning Applications for Data Center Optimization Jim Gao, Google Ratnesh Jamidar Indian Institute of Technology, Kanpur October 27, 2014 Outline Introduction Methodology General Background Model

More information

Scalar Visualization

Scalar Visualization Scalar Visualization 5-1 Motivation Visualizing scalar data is frequently encountered in science, engineering, and medicine, but also in daily life. Recalling from earlier, scalar datasets, or scalar fields,

More information

DETECTION AND ROBUST ESTIMATION OF CYLINDER FEATURES IN POINT CLOUDS INTRODUCTION

DETECTION AND ROBUST ESTIMATION OF CYLINDER FEATURES IN POINT CLOUDS INTRODUCTION DETECTION AND ROBUST ESTIMATION OF CYLINDER FEATURES IN POINT CLOUDS Yun-Ting Su James Bethel Geomatics Engineering School of Civil Engineering Purdue University 550 Stadium Mall Drive, West Lafayette,

More information

Geometric Accuracy Evaluation, DEM Generation and Validation for SPOT-5 Level 1B Stereo Scene

Geometric Accuracy Evaluation, DEM Generation and Validation for SPOT-5 Level 1B Stereo Scene Geometric Accuracy Evaluation, DEM Generation and Validation for SPOT-5 Level 1B Stereo Scene Buyuksalih, G.*, Oruc, M.*, Topan, H.*,.*, Jacobsen, K.** * Karaelmas University Zonguldak, Turkey **University

More information

Unit Maps: Grade 8 Math

Unit Maps: Grade 8 Math Real Number Relationships 8.3 Number and operations. The student represents and use real numbers in a variety of forms. Representation of Real Numbers 8.3A extend previous knowledge of sets and subsets

More information

RGB Digital Image Forgery Detection Using Singular Value Decomposition and One Dimensional Cellular Automata

RGB Digital Image Forgery Detection Using Singular Value Decomposition and One Dimensional Cellular Automata RGB Digital Image Forgery Detection Using Singular Value Decomposition and One Dimensional Cellular Automata Ahmad Pahlavan Tafti Mohammad V. Malakooti Department of Computer Engineering IAU, UAE Branch

More information

DISCRETE DOMAIN REPRESENTATION FOR SHAPE CONCEPTUALIZATION

DISCRETE DOMAIN REPRESENTATION FOR SHAPE CONCEPTUALIZATION DISCRETE DOMAIN REPRESENTATION FOR SHAPE CONCEPTUALIZATION Zoltán Rusák, Imre Horváth, György Kuczogi, Joris S.M. Vergeest, Johan Jansson Department of Design Engineering Delft University of Technology

More information

The Genetic Algorithm for finding the maxima of single-variable functions

The Genetic Algorithm for finding the maxima of single-variable functions Research Inventy: International Journal Of Engineering And Science Vol.4, Issue 3(March 2014), PP 46-54 Issn (e): 2278-4721, Issn (p):2319-6483, www.researchinventy.com The Genetic Algorithm for finding

More information