Edge preserving smoothing by Euclidean shortening flow

Size: px
Start display at page:

Download "Edge preserving smoothing by Euclidean shortening flow"

Transcription

1 Proceeding International Mathematica Sympoium Augut 5, Perth, Autralia UR: Edge preerving moothing by Euclidean hortening flow Deign of Algorithm with Mathematica Bart M. ter Haar Romeny, Marku A. van Almick Eindhoven Univerity of Technology Eindhoven, the Netherland B.M.terHaarRomeny@tue.nl, M.A.v.Almick@tue.nl Initialization Differentiation of dicrete data i done by convolution of the data with the derivative of a Gauian function (ee for a careful explanation [1]). Thi i implemented for D dicrete image with the function gd: gau::uage "gau x, i the normalized Gauian kernel function. For higher dimenion take product, e.g. gau x,subcript,x gau y,subcript,y.\n \t cale in pixel."; gau x_, _ ; : N 1 E x ; gd::uage "gd im,nx,ny,,option calculate the Gauian derivative of a D image by patial convolution. It i optimized for peed by 1D convolution per dimenion. The image i conidered cyclic in each direction. \n im D input image it.\n nx order of differentiation to x Integer.\n ny order of differentiation to y Integer.\n cale in pixel "; Option gd kernelsamplerange 6, 6 ; gd im_it, nx_, ny_, _, opt?optionq : Module x, y, kpleft, kpright, kx, ky, mid, tmp, kpleft, kpright kernelsamplerange. opt. Option gd ; kx N Table Evaluate D gau x,, x, nx, x, Floor kpleft 1, Ceiling kpright 1 ; ky If nx ny, kx, N Table Evaluate D gau y,, y, ny, y, Floor kpleft 1, Ceiling kpright 1 ;

2 36 mid Ceiling ength #1 &; tmp Tranpoe itconvolve kx, im, 1, mid kx, 1, mid kx ; Tranpoe itconvolve ky, tmp, 1, mid ky, 1, mid ky ; SetOption itdenityplot, Meh Fale, ApectRatio Automatic ; SetOption itplot, PlotJoined True ; Off General::"pell1" ; Graphic`; The function GetUR from the Jink example read data from the internet. Need["Jink`"]; GetUR[url_String, opt?optionq] := JavaBlock[ Module[{u, tream, numread, outfile, buf}, IntallJava[]; u = JavaNew["java.net.UR", url]; tream = u@openstream[]; If[tream === $Failed, Return[$Failed]]; buf = JavaNew["[B", ]; (* i an arbitrary buffer ize *) outfile = OpenTemporary[DOSTextFormat->Fale, CharacterEncoding->{}]; While[(numRead = tream@read[buf]) >, WriteString[outFile, FromCharacterCode[If[# <, # + 56, #]& /@ Take[JavaObjectToExpreion[buf], numread]]] ]; tream@cloe[]; Cloe[outFile] (* Cloe return the filename *)]]; Unprotect[Get]; Get[_String] := Module[{tempFile, re}, tempfile = GetUR[]; If[tempFile =!= $Failed, re = Get[tempFile]; DeleteFile[tempFile]; re, (* ele *) $Failed ] ] /; StringMatchQ[, " Protect[Get]; NotebookOpenUR[url_String] := NotebookOpen[GetUR[url]] Introduction Edge preerving moothing i a locally adaptive proce, where the ize of the blurkernel, applied to uppre the noie, i a local function of the edge trength [, 3]. Blurring i decribed by a partial differential equation, the diffuion equation. At trong edge, the conductivity of the diffuion i reduced. Thi wa firt introduced into the realm of computer viion by Perona and Malik [4] in It wa a huge ucce, a it alo enhanced the remaining edge. But at trong edge, the noie remained, and there wa a parameter k that had to be et.

3 Alvarez [5] came up with an elegant olution for both iue, by propoing a new nonlinear image evolution cheme, where 363 the local edge direction wa taken into account. Thi olution i known a Euclidean Shortening Flow. We firt give the theory and implementation of Perona & Malik nonlinear diffuion, then we focu on Euclidean hortening flow. The lat ection dicue an implementation on a noie ultraound image. Thi paper i baed on Chapter 1 of [1]. Nonlinear Diffuion Equation The diffuion equation i given by, where t i the diffuion time, i the gradient of the luminance, t and i the aplacian. Perona and Malik introduced a conductivity coefficient (c) i introduced in the diffuion equation: c, where c i a function of the local (differential) tructure, e.g. edge, c c, x, x,. Conider the analogon of diffuion of heat in a metal plate with a local iolator. Edge in image become the local iolator. Mathematica i ideal to explore the nonlinear diffuion equation firt, find a numerical (forward Euler) approximation, and implement the dicrete derivative by a convolution with Gauian derivative operator by pattern matching. The Perona & Malik Equation Perona and Malik [] propoed to make c a function of the gradient magnitude in order to reduce the diffuion at the location of edge: c with c k. So, the Perona and Malik (P&M) equation become k. Expanding the differential operator for the right hand ide, we get in D: Calculu`VectorAnalyi`; SetCoordinate Carteian x, y, z ; Grad x, y, ; Div Exp. Simplify k 1,1, x,y, 1,, x,y, k k k,1, x, y,,, x, y, 4,1, x, y, 1,, x, y, 1,1, x, y, k 1,, x, y,,, x, y, The mot traightforward numerical approximation of c i the forward-euler approximation c. The function gd[im,nx,ny, ] implement the derivative of the dicrete image im, nx time with repect to x, ny time with repect to y, at cale. It i defined in the initialization package. c E x x,y y x,y k ; pm im_, _, k_ x c x x, y y c y x, y. Derivative n_, m_ x_, y_ gd im, n, m, Simplify; We calculate the variable conductance diffuion firt on a imple mall (64, maximum: 55): 64) noiy tet image of a black dik (minimum: im Table If x 3 y 3 3,, 55 1 Random, y, 64, x, 64 ; Forward-Euler approximation cheme:

4 364 peronamalik im_, _, _, k_, n_ : Module, evolved im; Do evolved pm evolved,, k, n ; evolved ; where im i the input image, i the time tep, i the cale of the differential operator, k i the conductivity control parameter and n i the number of iteration. Here i an example of it performance: line Red, ine, 3, 64, 3 ; DiplayTogetherArray itdenityplot #, Epilog line & im, imp peronamalik im,.1,.7, 5,, itplot im 3, imp 3, ImageSize 38 ; Figure. Example of Perona & Malik edge-preerving moothing. The profile along the red line i depicted below. Note that the noie i removed, the edge have remained their teepne. Euclidean hortening flow Alvarez, Guichard, ion and Morel [5] realized that the P&M variable conductance diffuion wa complicated by the choice of the parameter k. They reaoned that the principal influence on the local conductivity hould be to direct the flow in the direction of the gradient only: thi lead to much diffuion along the edge, but virtually no diffuion acro the edge. Thi led to the propoal to make the intenity flow a function of the unit gradient vector co, in, o one obtain the (nonlinear) diffuion equation. Thi i implemented a follow:

5 Clear ; Calculu`VectorAnalyi`; SetCoordinate Carteian x, y, z ; Grad x, y, ; 365. Div. Simplify,, x, y, 1,, x, y,,1, x, y, 1,, x, y, 1,1, x, y,,1, x, y,,, x, y,,1, x, y, 1,, x, y, The enthuiam of Alvarez et al. about thi equation led them to the name fundamental equation of image proceing (!). Thi PDE i better known a the Euclidean hortening flow equation. The numerical iterative approximation to the nonlinear PDE become: euclideanhortening im_, nrtep_, _, evolutionrange_ : Module, imt, evolutionrange nrtep; imt im; Do imt gd imt,,, gd imt, 1,, gd imt,, 1, gd imt, 1,, gd imt, 1, 1, gd imt,, 1, gd imt,,, gd imt,, 1, gd imt, 1,,, nrtep ; imt ; Thi i an example for an ultraound image with it particular peckle pattern: imagefile = GetUR[" BRomeny/FEV/Image/ultraound-kidney.gif"]; im = Import[imageFile,"GIF"][[1,1]]; DeleteFile[imageFile]; Dimenion im 6, 345 DiplayTogetherArray itdenityplot im, Plotabel "Original", itdenityplot euclideanhortening im, 6,.8, 9, Plotabel "cale " ToString, ImageSize ; Original cale Figure. Euclidean hortening flow on a pixel ultraound image (ource: Note that the peckle i markedly reduced, and the edge remain teep.

6 366 Dicuion Thi edge-preerving moothing cheme i an adaptive blurring proce. It i implemented through an evolution equation, i.e. a nonlinear partial differential equation, the nonlinear diffuion equation. The performance i good, and can be extended to higher dimenional image, uch a 3D and 3D-time. Note that the enhanced image are calculated for improved contour and tructure analyi, not to be viewed for final diagnoi. A doctor will alway prefer the original data, while the enhanced image are good input for conequent tepd in an image analyi routine, e.g. a 3D egmentation for 3D viualization. Thi i a rich field, with many development [] and peed improvement by efficient numerical approximation [6]. See for a detailed overview alo [7]. Reference [1] B. M. ter Haar Romeny, Front-end viion and multicale image analyi. Dordrecht: Kluwer Academic Publiher, 3. Written in Mathematica. [] B. M. ter Haar Romeny (ed.), Geometry-driven diffuion in computer viion. Dordrecht: Kluwer Academic Publiher, [3] W. J. Nieen, B. M. ter Haar Romeny,. M. J. Florack, and M. A. Viergever, A general framework for geometrydriven evolution equation, Intern. Journal of Computer Viion, vol. 1, no. 3, pp , [4] P. Perona and J. Malik, Scale-pace and edge detection uing aniotropic diffuion, in IEEE Computer Society Workhop on Computer Viion, (Miami, F), pp. 16-, [5]. Alvarez, F. Guichard, P.. ion, and J. M. Morel, Axiom and fundamental equation of image proceing, Archive for Rational Mechanic, vol. 13, pp , September [6] J. Weickert, B. M. ter Haar Romeny, and M. A. Viergever, Efficient and reliable cheme for nonlinear diffuion filtering, IEEE Tr. on Image Proceing, Vol. 7, , [7] J. Weickert, Aniotropic diffuion in image proceing, ECMI Serie, Teubner Verlag, Stuttgart, ISBN About the Author Bart M. ter Haar Romeny received an MSc degree in Applied Phyic at Delft Univerity, and a PhD degree (1983) at Utrecht Univerity, the Netherland. He erved from 1983 till 1 a principal phyicit and aociate profeor at the Dept. of Radiology and the Image Science Intitute at Utrecht Univerity. He i now full profeor at Eindhoven Univerity of Technology, Dept. of Biomedical Engineering. Hi interet are medical image analyi and multi-cale computer viion, it mathematical foundation and clinical application. A focu on the human viual ytem give biological inpiration for the mathematic. He i the author of a popular interactive tutorial book on perceptually inpired multi-cale image analyi, written in Mathematica. Bart M. ter Haar Romeny Eindhoven Univerity of Technology Biomedical Engineering Image Analyi and Interpretation PO Box 513, WH MB Eindhoven The Netherland B.M.terHaarRomeny@tue.nl Marku van Almick Eindhoven Univerity of Technology Biomedical Engineering

7 Image Analyi and Interpretation PO Box 513, WH MB Eindhoven The Netherland 367

CENTER-POINT MODEL OF DEFORMABLE SURFACE

CENTER-POINT MODEL OF DEFORMABLE SURFACE CENTER-POINT MODEL OF DEFORMABLE SURFACE Piotr M. Szczypinki Iintitute of Electronic, Technical Univerity of Lodz, Poland Abtract: Key word: Center-point model of deformable urface for egmentation of 3D

More information

Image authentication and tamper detection using fragile watermarking in spatial domain

Image authentication and tamper detection using fragile watermarking in spatial domain International Journal of Advanced Reearch in Computer Engineering & Technology (IJARCET) Volume 6, Iue 7, July 2017, ISSN: 2278 1323 Image authentication and tamper detection uing fragile watermarking

More information

Dither Removal. Bart M. ter Haar Romeny. Image Dithering. This article has not been updated for Mathematica 8.

Dither Removal. Bart M. ter Haar Romeny. Image Dithering. This article has not been updated for Mathematica 8. This article has not been updated for Mathematica 8. The Mathematica Journal Dither Removal Bart M. ter Haar Romeny Mathematica is ideal for explaining the design of seemingly complex mathematical methods.

More information

Performance of a Robust Filter-based Approach for Contour Detection in Wireless Sensor Networks

Performance of a Robust Filter-based Approach for Contour Detection in Wireless Sensor Networks Performance of a Robut Filter-baed Approach for Contour Detection in Wirele Senor Network Hadi Alati, William A. Armtrong, Jr., and Ai Naipuri Department of Electrical and Computer Engineering The Univerity

More information

Anisotropic filtering on normal field and curvature tensor field using optimal estimation theory

Anisotropic filtering on normal field and curvature tensor field using optimal estimation theory Aniotropic filtering on normal field and curvature tenor field uing optimal etimation theory Min Liu Yuhen Liu and Karthik Ramani Purdue Univerity, Wet Lafayette, Indiana, USA Email: {liu66 liu28 ramani}@purdue.edu

More information

Research on Star Image Noise Filtering Based on Diffusion Model of Regularization Influence Function

Research on Star Image Noise Filtering Based on Diffusion Model of Regularization Influence Function 016 Sith International Conference on Intrumentation & Meaurement Computer Communication and Control Reearch on Star Image Noie Filtering Baed on Diffuion Model of Regularization Influence Function SunJianming

More information

Development of an atmospheric climate model with self-adapting grid and physics

Development of an atmospheric climate model with self-adapting grid and physics Intitute of Phyic Publihing Journal of Phyic: Conference Serie 16 (2005) 353 357 doi:10.1088/1742-6596/16/1/049 SciDAC 2005 Development of an atmopheric climate model with elf-adapting grid and phyic Joyce

More information

A reduced reference image quality metric based on feature fusion and neural networks

A reduced reference image quality metric based on feature fusion and neural networks Univerity of Wollongong Reearch Online Faculty of Engineering and Information Science - Paper: Part A Faculty of Engineering and Information Science 2011 A reduced reference image quality metric baed on

More information

Universität Augsburg. Institut für Informatik. Approximating Optimal Visual Sensor Placement. E. Hörster, R. Lienhart.

Universität Augsburg. Institut für Informatik. Approximating Optimal Visual Sensor Placement. E. Hörster, R. Lienhart. Univerität Augburg à ÊÇÅÍÆ ËÀǼ Approximating Optimal Viual Senor Placement E. Hörter, R. Lienhart Report 2006-01 Januar 2006 Intitut für Informatik D-86135 Augburg Copyright c E. Hörter, R. Lienhart Intitut

More information

Motivation: Level Sets. Input Data Noisy. Easy Case Use Marching Cubes. Intensity Varies. Non-uniform Exposure. Roger Crawfis

Motivation: Level Sets. Input Data Noisy. Easy Case Use Marching Cubes. Intensity Varies. Non-uniform Exposure. Roger Crawfis Level Set Motivation: Roger Crawfi Slide collected from: Fan Ding, Charle Dyer, Donald Tanguay and Roger Crawfi 4/24/2003 R. Crawfi, Ohio State Univ. 109 Eay Cae Ue Marching Cube Input Data Noiy 4/24/2003

More information

DAROS: Distributed User-Server Assignment And Replication For Online Social Networking Applications

DAROS: Distributed User-Server Assignment And Replication For Online Social Networking Applications DAROS: Ditributed Uer-Server Aignment And Replication For Online Social Networking Application Thuan Duong-Ba School of EECS Oregon State Univerity Corvalli, OR 97330, USA Email: duongba@eec.oregontate.edu

More information

Laboratory Exercise 6

Laboratory Exercise 6 Laboratory Exercie 6 Adder, Subtractor, and Multiplier The purpoe of thi exercie i to examine arithmetic circuit that add, ubtract, and multiply number. Each type of circuit will be implemented in two

More information

Comparison of Methods for Horizon Line Detection in Sea Images

Comparison of Methods for Horizon Line Detection in Sea Images Comparion of Method for Horizon Line Detection in Sea Image Tzvika Libe Evgeny Gerhikov and Samuel Koolapov Department of Electrical Engineering Braude Academic College of Engineering Karmiel 2982 Irael

More information

ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK

ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK ES05 Analyi and Deign of Engineering Sytem: Lab : An Introductory Tutorial: Getting Started with SIMULINK What i SIMULINK? SIMULINK i a oftware package for modeling, imulating, and analyzing dynamic ytem.

More information

Audio-Visual Voice Command Recognition in Noisy Conditions

Audio-Visual Voice Command Recognition in Noisy Conditions Audio-Viual Voice Command Recognition in Noiy Condition Joef Chaloupka, Jan Nouza, Jindrich Zdanky Laboratory of Computer Speech Proceing, Intitute of Information Technology and Electronic, Technical Univerity

More information

CSE 250B Assignment 4 Report

CSE 250B Assignment 4 Report CSE 250B Aignment 4 Report March 24, 2012 Yuncong Chen yuncong@c.ucd.edu Pengfei Chen pec008@ucd.edu Yang Liu yal060@c.ucd.edu Abtract In thi project, we implemented the recurive autoencoder (RAE) a decribed

More information

Outline. Medical Image Processing with Orientation Scores. Mathematica in the BioMIM lab. The Biomedical Image Analysis group

Outline. Medical Image Processing with Orientation Scores. Mathematica in the BioMIM lab. The Biomedical Image Analysis group Medical Image Processing with Orientation Scores Erik Franken*, Remco Duits, Markus van Almsick, Bart ter Haar Romeny *E-mail: e.m.franken@tue.nl About our Research Group Eindhoven University of Technology

More information

An Active Stereo Vision System Based on Neural Pathways of Human Binocular Motor System

An Active Stereo Vision System Based on Neural Pathways of Human Binocular Motor System Journal of Bionic Engineering 4 (2007) 185 192 An Active Stereo Viion Sytem Baed on Neural Pathway of Human Binocular Motor Sytem Yu-zhang Gu 1, Makoto Sato 2, Xiao-lin Zhang 2 1. Department of Advanced

More information

A Novel Architecture for Real Time Implementation of Edge Detectors on FPGA

A Novel Architecture for Real Time Implementation of Edge Detectors on FPGA IJCSI International Journal of Computer Science Iue, Vol. 8, Iue 1, January 2011 193 A Novel Architecture for Real Time Implementation of Edge Detector on FPGA Sudeep K C 1 and Dr. Jharna Majumdar 2 1

More information

Hassan Ghaziri AUB, OSB Beirut, Lebanon Key words Competitive self-organizing maps, Meta-heuristics, Vehicle routing problem,

Hassan Ghaziri AUB, OSB Beirut, Lebanon Key words Competitive self-organizing maps, Meta-heuristics, Vehicle routing problem, COMPETITIVE PROBABIISTIC SEF-ORGANIZING MAPS FOR ROUTING PROBEMS Haan Ghaziri AUB, OSB Beirut, ebanon ghaziri@aub.edu.lb Abtract In thi paper, we have applied the concept of the elf-organizing map (SOM)

More information

3D SMAP Algorithm. April 11, 2012

3D SMAP Algorithm. April 11, 2012 3D SMAP Algorithm April 11, 2012 Baed on the original SMAP paper [1]. Thi report extend the tructure of MSRF into 3D. The prior ditribution i modified to atify the MRF property. In addition, an iterative

More information

Computer Aided Drafting, Design and Manufacturing Volume 25, Number 3, September 2015, Page 10

Computer Aided Drafting, Design and Manufacturing Volume 25, Number 3, September 2015, Page 10 Computer Aided Drafting, Deign and Manufacturing Volume 5, umber 3, September 015, Page 10 CADDM Reearch of atural Geture Recognition and Interactive Technology Compatible with YCbCr and SV Color Space

More information

International Journal of Engineering Research & Technology (IJERT) ISSN: Vol. 2 Issue 5, May

International Journal of Engineering Research & Technology (IJERT) ISSN: Vol. 2 Issue 5, May Intertage Pipeline VLI Architecture for 2-D DWT Ajinkya. Bankar 1,Bhavika. haha 2, P.K. Kadbe 3 E&TC Department, Pune Univerity 1,2,3 VPCOE Baramati Abtract In thi paper, a cheme for the deign of a high-pd

More information

A User-Attention Based Focus Detection Framework and Its Applications

A User-Attention Based Focus Detection Framework and Its Applications A Uer-Attention Baed Focu Detection Framework and It Application Chia-Chiang Ho, Wen-Huang Cheng, Ting-Jian Pan, Ja-Ling Wu Communication and Multimedia Laboratory, Department of Computer Science and Information

More information

Lecture 8: More Pipelining

Lecture 8: More Pipelining Overview Lecture 8: More Pipelining David Black-Schaffer davidbb@tanford.edu EE8 Spring 00 Getting Started with Lab Jut get a ingle pixel calculating at one time Then look into filling your pipeline Multiplier

More information

A Multi-objective Genetic Algorithm for Reliability Optimization Problem

A Multi-objective Genetic Algorithm for Reliability Optimization Problem International Journal of Performability Engineering, Vol. 5, No. 3, April 2009, pp. 227-234. RAMS Conultant Printed in India A Multi-objective Genetic Algorithm for Reliability Optimization Problem AMAR

More information

/06/$ IEEE 364

/06/$ IEEE 364 006 IEEE International ympoium on ignal Proceing and Information Technology oie Variance Etimation In ignal Proceing David Makovoz IPAC, California Intitute of Technology, MC-0, Paadena, CA, 95 davidm@ipac.caltech.edu;

More information

Focused Video Estimation from Defocused Video Sequences

Focused Video Estimation from Defocused Video Sequences Focued Video Etimation from Defocued Video Sequence Junlan Yang a, Dan Schonfeld a and Magdi Mohamed b a Multimedia Communication Lab, ECE Dept., Univerity of Illinoi, Chicago, IL b Phyical Realization

More information

IMPROVED JPEG DECOMPRESSION OF DOCUMENT IMAGES BASED ON IMAGE SEGMENTATION. Tak-Shing Wong, Charles A. Bouman, and Ilya Pollak

IMPROVED JPEG DECOMPRESSION OF DOCUMENT IMAGES BASED ON IMAGE SEGMENTATION. Tak-Shing Wong, Charles A. Bouman, and Ilya Pollak IMPROVED DECOMPRESSION OF DOCUMENT IMAGES BASED ON IMAGE SEGMENTATION Tak-Shing Wong, Charle A. Bouman, and Ilya Pollak School of Electrical and Computer Engineering Purdue Univerity ABSTRACT We propoe

More information

3D MODELLING WITH LINEAR APPROACHES USING GEOMETRIC PRIMITIVES

3D MODELLING WITH LINEAR APPROACHES USING GEOMETRIC PRIMITIVES MAKARA, TEKNOLOGI, VOL. 9, NO., APRIL 5: 3-35 3D MODELLING WITH LINEAR APPROACHES USING GEOMETRIC PRIMITIVES Mochammad Zulianyah Informatic Engineering, Faculty of Engineering, ARS International Univerity,

More information

Advanced Encryption Standard and Modes of Operation

Advanced Encryption Standard and Modes of Operation Advanced Encryption Standard and Mode of Operation G. Bertoni L. Breveglieri Foundation of Cryptography - AES pp. 1 / 50 AES Advanced Encryption Standard (AES) i a ymmetric cryptographic algorithm AES

More information

Modeling of underwater vehicle s dynamics

Modeling of underwater vehicle s dynamics Proceeding of the 11th WEA International Conference on YTEM, Agio Nikolao, Crete Iland, Greece, July 23-25, 2007 44 Modeling of underwater vehicle dynamic ANDRZEJ ZAK Department of Radiolocation and Hydrolocation

More information

Performance of three recursive algorithms for fast space-variant Gaussian filtering

Performance of three recursive algorithms for fast space-variant Gaussian filtering ARTICLE IN PRESS Real-Time Imaging 9 (23) 215 228 Performance of three recurive algorithm for fat pace-variant Gauian filtering Sovira Tan*, Jaon L. Dale, Alan Johnton Department of Pychology, Univerity

More information

A New Approach to Pipeline FFT Processor

A New Approach to Pipeline FFT Processor A ew Approach to Pipeline FFT Proceor Shouheng He and Mat Torkelon Department of Applied Electronic, Lund Univerity S- Lund, SWEDE email: he@tde.lth.e; torkel@tde.lth.e Abtract A new VLSI architecture

More information

Image Morphing Using Deformation Techniques

Image Morphing Using Deformation Techniques Image Morphing Uing Deformation Technique Seung-Yong Lee, Kyung-Yong Chwa, Jame Hahn, and Sung Yong Shin Department of Computer Science Korea Advanced Intitute of Science and Technology 373-1 Kuong-dong

More information

Interface Tracking in Eulerian and MMALE Calculations

Interface Tracking in Eulerian and MMALE Calculations Interface Tracking in Eulerian and MMALE Calculation Gabi Luttwak Rafael P.O.Box 2250, Haifa 31021,Irael Interface Tracking in Eulerian and MMALE Calculation 3D Volume of Fluid (VOF) baed recontruction

More information

Research Article Unsupervised SAR Image Segmentation Based on a Hierarchical TMF Model in the Discrete Wavelet Domain for Sea Area Detection

Research Article Unsupervised SAR Image Segmentation Based on a Hierarchical TMF Model in the Discrete Wavelet Domain for Sea Area Detection Dicrete Dynamic in Nature and Society, Article ID 354704, 9 page http://dx.doi.org/10.1155/2014/354704 Reearch Article Unupervied SAR Image Segmentation Baed on a Hierarchical TMF Model in the Dicrete

More information

Trainable Context Model for Multiscale Segmentation

Trainable Context Model for Multiscale Segmentation Trainable Context Model for Multicale Segmentation Hui Cheng and Charle A. Bouman School of Electrical and Computer Engineering Purdue Univerity Wet Lafayette, IN 47907-1285 {hui, bouman}@ ecn.purdue.edu

More information

step. J.N. Fernando, J. Kriegseis and D.E. Rival

step. J.N. Fernando, J. Kriegseis and D.E. Rival On the eparated region behind a confined backward-facing tep J.N. Fernando, J. Kriegei and D.E. Rival Department of Mechanical and Manufacturing Engineering, Univerity of Calgary, Calgary, AB, Canada T2N

More information

Drawing Lines in 2 Dimensions

Drawing Lines in 2 Dimensions Drawing Line in 2 Dimenion Drawing a traight line (or an arc) between two end point when one i limited to dicrete pixel require a bit of thought. Conider the following line uperimpoed on a 2 dimenional

More information

A METHOD OF REAL-TIME NURBS INTERPOLATION WITH CONFINED CHORD ERROR FOR CNC SYSTEMS

A METHOD OF REAL-TIME NURBS INTERPOLATION WITH CONFINED CHORD ERROR FOR CNC SYSTEMS Vietnam Journal of Science and Technology 55 (5) (017) 650-657 DOI: 10.1565/55-518/55/5/906 A METHOD OF REAL-TIME NURBS INTERPOLATION WITH CONFINED CHORD ERROR FOR CNC SYSTEMS Nguyen Huu Quang *, Banh

More information

Data Mining with Linguistic Thresholds

Data Mining with Linguistic Thresholds Int. J. Contemp. Math. Science, Vol. 7, 22, no. 35, 7-725 Data Mining with Linguitic Threhold Tzung-Pei Hong Department of Electrical Engineering National Univerity of Kaohiung Kaohiung, Taiwan, R.O.C.

More information

Abhijeet Shinde 1 and Sachin Ruikar 2

Abhijeet Shinde 1 and Sachin Ruikar 2 N e a r e t N e i g h b o r a n d I n t e r p o l a t i o n B a e d S u p e r - R e o l u t i o n Nearet Neighbor and Interpolation Baed Super-Reolution Abhijeet Shinde 1 and Sachin Ruikar 2 1,2 Department

More information

Texture-Constrained Active Shape Models

Texture-Constrained Active Shape Models 107 Texture-Contrained Active Shape Model Shuicheng Yan, Ce Liu Stan Z. Li Hongjiang Zhang Heung-Yeung Shum Qianheng Cheng Microoft Reearch Aia, Beijing Sigma Center, Beijing 100080, China Dept. of Info.

More information

On successive packing approach to multidimensional (M-D) interleaving

On successive packing approach to multidimensional (M-D) interleaving On ucceive packing approach to multidimenional (M-D) interleaving Xi Min Zhang Yun Q. hi ankar Bau Abtract We propoe an interleaving cheme for multidimenional (M-D) interleaving. To achieved by uing a

More information

xy-monotone path existence queries in a rectilinear environment

xy-monotone path existence queries in a rectilinear environment CCCG 2012, Charlottetown, P.E.I., Augut 8 10, 2012 xy-monotone path exitence querie in a rectilinear environment Gregory Bint Anil Mahehwari Michiel Smid Abtract Given a planar environment coniting of

More information

Multi-Target Tracking In Clutter

Multi-Target Tracking In Clutter Multi-Target Tracking In Clutter John N. Sander-Reed, Mary Jo Duncan, W.B. Boucher, W. Michael Dimmler, Shawn O Keefe ABSTRACT A high frame rate (0 Hz), multi-target, video tracker ha been developed and

More information

Keywords: Defect detection, linear phased array transducer, parameter optimization, phased array ultrasonic B-mode imaging testing.

Keywords: Defect detection, linear phased array transducer, parameter optimization, phased array ultrasonic B-mode imaging testing. Send Order for Reprint to reprint@benthamcience.ae 488 The Open Automation and Control Sytem Journal, 2014, 6, 488-492 Open Acce Parameter Optimization of Linear Phaed Array Tranducer for Defect Detection

More information

Bayesian segmentation for damage image using MRF prior

Bayesian segmentation for damage image using MRF prior Bayeian egmentation for damage image uing MRF prior G. Li 1, F.G. Yuan 1, R. Haftka and N. H. Kim 1 Department of Mechanical and Aeropace Engineering, North arolina State Univerity, Raleigh, N, 7695-791,

More information

All in-focus View Synthesis from Under-Sampled Light Fields

All in-focus View Synthesis from Under-Sampled Light Fields ICAT 2003 December 3-5, Tokyo, Japan All in-focu View Synthei from Under-Sampled Light Field Keita Takahahi,AkiraKubota and Takehi Naemura TheUniverityofTokyo Carnegie Mellon Univerity 7-3-1, Hongo, Bunkyo-ku,

More information

A Novel Feature Line Segment Approach for Pattern Classification

A Novel Feature Line Segment Approach for Pattern Classification 12th International Conference on Information Fuion Seattle, WA, USA, July 6-9, 2009 A Novel Feature Line Segment Approach for Pattern Claification Yi Yang Intitute of Integrated Automation Xi an Jiaotong

More information

Quadrilaterals. Learning Objectives. Pre-Activity

Quadrilaterals. Learning Objectives. Pre-Activity Section 3.4 Pre-Activity Preparation Quadrilateral Intereting geometric hape and pattern are all around u when we tart looking for them. Examine a row of fencing or the tiling deign at the wimming pool.

More information

Compressed Sensing Image Processing Based on Stagewise Orthogonal Matching Pursuit

Compressed Sensing Image Processing Based on Stagewise Orthogonal Matching Pursuit Senor & randucer, Vol. 8, Iue 0, October 204, pp. 34-40 Senor & randucer 204 by IFSA Publihing, S. L. http://www.enorportal.com Compreed Sening Image Proceing Baed on Stagewie Orthogonal Matching Puruit

More information

ANALYSIS OF THE FIRST LAYER IN WEIGHTLESS NEURAL NETWORKS FOR 3_DIMENSIONAL PATTERN RECOGNITION

ANALYSIS OF THE FIRST LAYER IN WEIGHTLESS NEURAL NETWORKS FOR 3_DIMENSIONAL PATTERN RECOGNITION ANALYSIS OF THE FIRST LAYER IN WEIGHTLESS NEURAL NETWORKS FOR 3_DIMENSIONAL PATTERN RECOGNITION A. Váque-Nava * Ecuela de Ingeniería. CENTRO UNIVERSITARIO MEXICO. DIVISION DE ESTUDIOS SUPERIORES J. Figueroa

More information

Gray-level histogram. Intensity (grey-level) transformation, or mapping. Use of intensity transformations:

Gray-level histogram. Intensity (grey-level) transformation, or mapping. Use of intensity transformations: Faculty of Informatic Eötvö Loránd Univerity Budapet, Hungary Lecture : Intenity Tranformation Image enhancement by point proceing Spatial domain and frequency domain method Baic Algorithm for Digital

More information

Mirror shape recovery from image curves and intrinsic parameters: Rotationally symmetric and conic mirrors. Abstract. 2. Mirror shape recovery

Mirror shape recovery from image curves and intrinsic parameters: Rotationally symmetric and conic mirrors. Abstract. 2. Mirror shape recovery Mirror hape recovery from image curve and intrinic parameter: Rotationally ymmetric and conic mirror Nuno Gonçalve and Helder Araújo Λ Intitute of Sytem and Robotic Univerity of Coimbra Pinhal de Marroco

More information

Locating Brain Tumors from MR Imagery Using Symmetry

Locating Brain Tumors from MR Imagery Using Symmetry ocating rain Tumor from M magery Uing Symmetry Nilanjan ay aidya Nath Saha and Matthew obert Graham rown {nray1 baidya mbrown}@cualbertaca epartment of Computing Science Univerity of lberta Canada btract

More information

[N309] Feedforward Active Noise Control Systems with Online Secondary Path Modeling. Muhammad Tahir Akhtar, Masahide Abe, and Masayuki Kawamata

[N309] Feedforward Active Noise Control Systems with Online Secondary Path Modeling. Muhammad Tahir Akhtar, Masahide Abe, and Masayuki Kawamata he 32nd International Congre and Expoition on Noie Control Engineering Jeju International Convention Center, Seogwipo, Korea, Augut 25-28, 2003 [N309] Feedforward Active Noie Control Sytem with Online

More information

Markov Random Fields in Image Segmentation

Markov Random Fields in Image Segmentation Preented at SSIP 2011, Szeged, Hungary Markov Random Field in Image Segmentation Zoltan Kato Image Proceing & Computer Graphic Dept. Univerity of Szeged Hungary Zoltan Kato: Markov Random Field in Image

More information

Video sequence. Audio sequence

Video sequence. Audio sequence 1 Dynamic Bayeian Network for Audio-Viual Speech Recognition Ara V. Nefian, Luhong Liang, Xiaobo i, Xiaoxing Liu and Kevin Murphy Abtract The ue of viual feature in audio-viual peech recognition (AVSR)

More information

On the Use of Shadows in Stance Recovery

On the Use of Shadows in Stance Recovery On the Ue of Shadow in Stance Recovery Alfred M. Brucktein, 1 Robert J. Holt, 1 Yve D. Jean, 2 Arun N. Netravali 1 1 Bell Laboratorie, Lucent Technologie, Murray Hill, NJ 094 2 Avaya Communication, Murray

More information

LinkGuide: Towards a Better Collection of Hyperlinks in a Website Homepage

LinkGuide: Towards a Better Collection of Hyperlinks in a Website Homepage Proceeding of the World Congre on Engineering 2007 Vol I LinkGuide: Toward a Better Collection of Hyperlink in a Webite Homepage A. Ammari and V. Zharkova chool of Informatic, Univerity of Bradford anammari@bradford.ac.uk,

More information

Possible application of fractional order derivative to image edges detection. Oguoma Ikechukwu Chiwueze 1 and Alain Cloot 2.

Possible application of fractional order derivative to image edges detection. Oguoma Ikechukwu Chiwueze 1 and Alain Cloot 2. Life Science Journal 3;(4) Poible application of fractional order derivative to image edge detection Oguoma Iechuwu hiwueze and Alain loot. Department of Mathematic and Applied Mathematic Facult of Natural

More information

SLA Adaptation for Service Overlay Networks

SLA Adaptation for Service Overlay Networks SLA Adaptation for Service Overlay Network Con Tran 1, Zbigniew Dziong 1, and Michal Pióro 2 1 Department of Electrical Engineering, École de Technologie Supérieure, Univerity of Quebec, Montréal, Canada

More information

Loop Forming Snake-like Robot ACM-R7 and Its Serpenoid Oval Control

Loop Forming Snake-like Robot ACM-R7 and Its Serpenoid Oval Control The 21 IEEE/RSJ International Conference on Intelligent Robot and Sytem October 18-22, 21, Taipei, Taiwan Loop Forming Snake-like Robot ACM-R7 and It Serpenoid Oval Control Taro Ohahi, Hiroya Yamada and

More information

Mid-term review ECE 161C Electrical and Computer Engineering University of California San Diego

Mid-term review ECE 161C Electrical and Computer Engineering University of California San Diego Mid-term review ECE 161C Electrical and Computer Engineering Univerity of California San Diego Nuno Vaconcelo Spring 2014 1. We have een in cla that one popular technique for edge detection i the Canny

More information

Web Science and additionality

Web Science and additionality Admin tuff... Lecture 1: EITN01 Web Intelligence and Information Retrieval Meage, lide, handout, lab manual and link: http://www.eit.lth.e/coure/eitn01 Contact: Ander Ardö, Ander.Ardo@eit.lth.e, room:

More information

(A)ATSR RE-ANALYSIS FOR CLIMATE - CLOUD CLEARING METHODOLOGY

(A)ATSR RE-ANALYSIS FOR CLIMATE - CLOUD CLEARING METHODOLOGY (A)ATSR RE-ANALYSIS FOR CLIMATE - CLOUD CLEARING METHODOLOGY Chri Old, Chri Merchant Univerity of Edinburgh, The Crew Building, Wet Main Road, Edinburgh, EH9 3JN, United Kingdom Email: cold@ed.ac.uk Email:

More information

Tracking High Speed Skater by Using Multiple Model

Tracking High Speed Skater by Using Multiple Model Vol. 2, No. 26 Tracing High Speed Sater by Uing Multiple Model Guojun Liu & Xianglong Tang School of Computer Science & Engineering Harbin Intitute of Technology Harbin 5000, China E-mail: hitliu@hit.edu.cn

More information

EVen though remarkable progress has been made in

EVen though remarkable progress has been made in JOURNAL OF L A T E X CLASS FILES, VOL. 14, NO. 8, AUGUST 2015 1 Dene Semantic 3D Recontruction Chritian Häne, Chritopher Zach, Andrea Cohen, and Marc Pollefey, Fellow, IEEE Abtract Both image egmentation

More information

Snakes with topology control

Snakes with topology control The Viual Computer manucript No. (will be inerted by the editor) Snake with topology control Stephan Bichoff, Leif P. Kobbelt RWTH Aachen, Lehrtuhl für Informatik VIII, 52056 Aachen, Germany e-mail: {bichoff

More information

Minimum congestion spanning trees in bipartite and random graphs

Minimum congestion spanning trees in bipartite and random graphs Minimum congetion panning tree in bipartite and random graph M.I. Otrovkii Department of Mathematic and Computer Science St. John Univerity 8000 Utopia Parkway Queen, NY 11439, USA e-mail: otrovm@tjohn.edu

More information

An Improved Implementation of Elliptic Curve Digital Signature by Using Sparse Elements

An Improved Implementation of Elliptic Curve Digital Signature by Using Sparse Elements The International Arab Journal of Information Technology, Vol. 1, No., July 004 0 An Improved Implementation of Elliptic Curve Digital Signature by Uing Spare Element Eam Al-Daoud Computer Science Department,

More information

The Optimization Analysis of Navigation Performance and Structural Properties of the High-Speed Monohull Ship in River

The Optimization Analysis of Navigation Performance and Structural Properties of the High-Speed Monohull Ship in River Available online at www.ciencedirect.com Phyic Procedia 33 (2012 ) 833 839 2012 International Conference on Medical Phyic and Biomedical Engineering The Optimization Analyi of Navigation Performance and

More information

Shortest Paths with Single-Point Visibility Constraint

Shortest Paths with Single-Point Visibility Constraint Shortet Path with Single-Point Viibility Contraint Ramtin Khoravi Mohammad Ghodi Department of Computer Engineering Sharif Univerity of Technology Abtract Thi paper tudie the problem of finding a hortet

More information

Maneuverable Relays to Improve Energy Efficiency in Sensor Networks

Maneuverable Relays to Improve Energy Efficiency in Sensor Networks Maneuverable Relay to Improve Energy Efficiency in Senor Network Stephan Eidenbenz, Luka Kroc, Jame P. Smith CCS-5, MS M997; Lo Alamo National Laboratory; Lo Alamo, NM 87545. Email: {eidenben, kroc, jpmith}@lanl.gov

More information

Parallel Approaches for Intervals Analysis of Variable Statistics in Large and Sparse Linear Equations with RHS Ranges

Parallel Approaches for Intervals Analysis of Variable Statistics in Large and Sparse Linear Equations with RHS Ranges American Journal of Applied Science 4 (5): 300-306, 2007 ISSN 1546-9239 2007 Science Publication Correponding Author: Parallel Approache for Interval Analyi of Variable Statitic in Large and Spare Linear

More information

Quaternion Based Fuzzy Neural Network Classifier for MPIK Dataset s View-invariant Color Face Image Recognition

Quaternion Based Fuzzy Neural Network Classifier for MPIK Dataset s View-invariant Color Face Image Recognition Informatica 37 (013) 181-19 181 Quaternion Baed Fuzzy Neural Network Claifier for MPIK Dataet View-invariant Color Face Image Recognition Wai Kit Wong and Gin Chong Lee Faculty of Engineering and Technology,

More information

Fraunhofer Institute for Computer Graphics Research Interactive Graphics Systems Group, TU Darmstadt Fraunhoferstrasse 5, Darmstadt, Germany

Fraunhofer Institute for Computer Graphics Research Interactive Graphics Systems Group, TU Darmstadt Fraunhoferstrasse 5, Darmstadt, Germany 20-00-469 Scale Space and PDE methods in image analysis and processing Arjan Kuijper Fraunhofer Institute for Computer Graphics Research Interactive Graphics Systems Group, TU Darmstadt Fraunhoferstrasse

More information

EXPERIMENTS ON GEOMETRIC IMAGE ENHANCEMENT. aco at

EXPERIMENTS ON GEOMETRIC IMAGE ENHANCEMENT. aco at EXPERIMENTS ON GEOMETRIC IMAGE ENHANCEMENT Guillermo Sapiro Hewlett-Packard Labs 1501 Page Mill Road Palo Alto, CA 94304 guille@lids.mit.edu Allen Tannenbaum, Yu-La You, Mos Kaueh Department of Electrical

More information

x y z Design variable positions A

x y z Design variable positions A COMMUNICATIONS IN NUMERICAL METHODS IN ENGINEERING Commun. Numer. Meth. Engng 2001 00:1{7 [Verion: 2000/03/22 v1.0] A tabilied peudo-hell approach for urface parametriation in CFD deign problem O. Soto,R.Lohner

More information

Topics. Lecture 37: Global Optimization. Issues. A Simple Example: Copy Propagation X := 3 B > 0 Y := 0 X := 4 Y := Z + W A := 2 * 3X

Topics. Lecture 37: Global Optimization. Issues. A Simple Example: Copy Propagation X := 3 B > 0 Y := 0 X := 4 Y := Z + W A := 2 * 3X Lecture 37: Global Optimization [Adapted from note by R. Bodik and G. Necula] Topic Global optimization refer to program optimization that encompa multiple baic block in a function. (I have ued the term

More information

Aalborg Universitet. Published in: Proceedings of the Working Conference on Advanced Visual Interfaces

Aalborg Universitet. Published in: Proceedings of the Working Conference on Advanced Visual Interfaces Aalborg Univeritet Software-Baed Adjutment of Mobile Autotereocopic Graphic Uing Static Parallax Barrier Paprocki, Martin Marko; Krog, Kim Srirat; Kritofferen, Morten Bak; Krau, Martin Publihed in: Proceeding

More information

A PROBABILISTIC NOTION OF CAMERA GEOMETRY: CALIBRATED VS. UNCALIBRATED

A PROBABILISTIC NOTION OF CAMERA GEOMETRY: CALIBRATED VS. UNCALIBRATED A PROBABILISTIC NOTION OF CAMERA GEOMETRY: CALIBRATED VS. UNCALIBRATED Jutin Domke and Yianni Aloimono Computational Viion Laboratory, Center for Automation Reearch Univerity of Maryland College Park,

More information

Delaunay Triangulation: Incremental Construction

Delaunay Triangulation: Incremental Construction Chapter 6 Delaunay Triangulation: Incremental Contruction In the lat lecture, we have learned about the Lawon ip algorithm that compute a Delaunay triangulation of a given n-point et P R 2 with O(n 2 )

More information

Planning of scooping position and approach path for loading operation by wheel loader

Planning of scooping position and approach path for loading operation by wheel loader 22 nd International Sympoium on Automation and Robotic in Contruction ISARC 25 - September 11-14, 25, Ferrara (Italy) 1 Planning of cooping poition and approach path for loading operation by wheel loader

More information

Operational Semantics Class notes for a lecture given by Mooly Sagiv Tel Aviv University 24/5/2007 By Roy Ganor and Uri Juhasz

Operational Semantics Class notes for a lecture given by Mooly Sagiv Tel Aviv University 24/5/2007 By Roy Ganor and Uri Juhasz Operational emantic Page Operational emantic Cla note for a lecture given by Mooly agiv Tel Aviv Univerity 4/5/7 By Roy Ganor and Uri Juhaz Reference emantic with Application, H. Nielon and F. Nielon,

More information

TAM 212 Worksheet 3. Solutions

TAM 212 Worksheet 3. Solutions Name: Group member: TAM 212 Workheet 3 Solution The workheet i concerned with the deign of the loop-the-loop for a roller coater ytem. Old loop deign: The firt generation of loop wa circular, a hown below.

More information

AN ALGORITHM FOR RESTRICTED NORMAL FORM TO SOLVE DUAL TYPE NON-CANONICAL LINEAR FRACTIONAL PROGRAMMING PROBLEM

AN ALGORITHM FOR RESTRICTED NORMAL FORM TO SOLVE DUAL TYPE NON-CANONICAL LINEAR FRACTIONAL PROGRAMMING PROBLEM RAC Univerity Journal, Vol IV, No, 7, pp 87-9 AN ALGORITHM FOR RESTRICTED NORMAL FORM TO SOLVE DUAL TYPE NON-CANONICAL LINEAR FRACTIONAL PROGRAMMING PROLEM Mozzem Hoain Department of Mathematic Ghior Govt

More information

Kinematics Programming for Cooperating Robotic Systems

Kinematics Programming for Cooperating Robotic Systems Kinematic Programming for Cooperating Robotic Sytem Critiane P. Tonetto, Carlo R. Rocha, Henrique Sima, Altamir Dia Federal Univerity of Santa Catarina, Mechanical Engineering Department, P.O. Box 476,

More information

Building a Compact On-line MRF Recognizer for Large Character Set using Structured Dictionary Representation and Vector Quantization Technique

Building a Compact On-line MRF Recognizer for Large Character Set using Structured Dictionary Representation and Vector Quantization Technique 202 International Conference on Frontier in Handwriting Recognition Building a Compact On-line MRF Recognizer for Large Character Set uing Structured Dictionary Repreentation and Vector Quantization Technique

More information

Target Oriented High Resolution SAR Image Formation via Semantic Information Guided Regularizations

Target Oriented High Resolution SAR Image Formation via Semantic Information Guided Regularizations 1 Target Oriented High Reolution SAR Image Formation via Semantic Information Guided Regularization Biao Hou, Member, IEEE, Zaidao Wen, Licheng Jiao, Senior Member, IEEE, and Qian Wu arxiv:1704.07082v1

More information

THE CURVELET TRANSFORM FOR IMAGE FUSION

THE CURVELET TRANSFORM FOR IMAGE FUSION THE CURVELET TRANSFORM FOR IMAGE FUSION Myungin Choi a, Rae Young Kim b, *, Moon-Gyu Kim a a SaTReC, b Diviion of Applied Mathematic, KAIST 373-1, Gueong-dong, Yueong-gu, Daeeon, 305-701, Republic of KOREA

More information

NUMERICAL MODELING ON THE DAMPING CONTROL OF TLD STRUCTURE

NUMERICAL MODELING ON THE DAMPING CONTROL OF TLD STRUCTURE 4th International Conference on Earthquake Engineering Taipei, Taiwan October 12-13, 2006 Paper No. 183 NUMERICAL MODELING ON THE DAMPING CONTROL OF TLD STRUCTURE Han jun 1, Li Yingmin 2, Liu Liping 3,

More information

TAM 212 Worksheet 3. The worksheet is concerned with the design of the loop-the-loop for a roller coaster system.

TAM 212 Worksheet 3. The worksheet is concerned with the design of the loop-the-loop for a roller coaster system. Name: Group member: TAM 212 Workheet 3 The workheet i concerned with the deign of the loop-the-loop for a roller coater ytem. Old loop deign: The firt generation of loop wa circular, a hown below. R New

More information

Routing Definition 4.1

Routing Definition 4.1 4 Routing So far, we have only looked at network without dealing with the iue of how to end information in them from one node to another The problem of ending information in a network i known a routing

More information

Dark-field Tomography: Modeling and Reconstruction

Dark-field Tomography: Modeling and Reconstruction Dark-field Tomography: Modeling and Recontruction W. Cong, F. Pfeiffer, M. Bech, O. Bunk, C. David, and G. Wang Abtract: Dark-field image are formed by mall-angle cattering of x-ray photon. The mall-angle

More information

A Novel Grey-RSS Navigation System Design for Mobile Robots

A Novel Grey-RSS Navigation System Design for Mobile Robots A vel Grey-RSS Navigation Sytem Deign for Mobile Robot Albert Wen-Long Yao*,, Hin-Te Liao, and Shiou-De Chen Department of Mechanical and Automation Engineering, National Kaohiung Firt Univerity of Science

More information

ISSN: (Online) Volume 3, Issue 4, April 2015 International Journal of Advance Research in Computer Science and Management Studies

ISSN: (Online) Volume 3, Issue 4, April 2015 International Journal of Advance Research in Computer Science and Management Studies ISSN: 2321-7782 (Online) Volume 3, Iue 4, April 2015 International Journal Advance Reearch in Computer Science and Management Studie Reearch Article / Survey Paper / Cae Study Available online at: www.ijarcm.com

More information

A CLUSTERING-BASED HYBRID REPLICA CONTROL PROTOCOL FOR HIGH AVAILABILITY IN GRID ENVIRONMENT

A CLUSTERING-BASED HYBRID REPLICA CONTROL PROTOCOL FOR HIGH AVAILABILITY IN GRID ENVIRONMENT Journal of Computer Science 10 (12): 2442-2449, 2014 ISSN: 1549-3636 2014 R. Latip et al., Thi open acce article i ditributed under a Creative Common Attribution (CC-BY) 3.0 licene doi:10.3844/jcp.2014.2442.2449

More information