An interactive system for structure-based ASCII art creation

Size: px
Start display at page:

Download "An interactive system for structure-based ASCII art creation"

Transcription

1 An nteractve system for structure-based ASCII art creaton Katsunor Myake Henry Johan Tomoyuk Nshta The Unversty of Tokyo Nanyang Technologcal Unversty Abstract Non-Photorealstc Renderng (NPR), whose am s to create artstc style mages, s one of the mportant research topcs n computer graphcs. One example of NPR s an art form called ASCII art whch represents pctures usng character strngs. ASCII art s commonly used n meda that cannot dsplay mages or manly use text, such as e-mal and bulletn board system. ASCII art can be categorzed nto two styles, tone-based style and structure-based style. The structurebased style can represent content by usng less number of ASCII characters compared to the tone-based style. However, n general, t takes begnners a long tme to create structurebased ASCII art. As such, an automatc method that creates structure-based ASCII art s requred to reduce the tasks of ASCII art creaton. In ths paper, we propose an nteractve system whch creates structure-based ASCII art. We provde four matchng metrcs for convertng an mage nto an ASCII art.based on expermental results, we found that the sutable matchng metrcs to produce vsually pleasant ASCII art mages depend on the type of the nput mages. Snce our system can produce ASCII art mages n a few seconds, users can create several ASCII art mages usng dfferent matchng metrcs, then select the one they lke the most. 1 Introducton ASCII art s one type of artstc style mages. It represents vsual nformaton usng character strngs whch consst of 95 ASCII prntable characters. ASCII s a character-encodng scheme, and s the acronym of Amercan Standard Code for Informaton Interchange. ASCII art does not focus on photorealsm. ASCII art s a popular art n cyberspace. We can see many ASCII art n varous meda whch manly use text, such as emal and BBS on the Web. In Japanese BBS, we can see many ASCII art that represent outlne of anmaton characters. ASCII art can be categorzed nto two styles, tone-based style and structure-based style (Fgure 1). Tone-based ASCII art uses the densty of glyph to represent the ntensty dstrbuton of content. Structure-based ASCII art uses the lne of glyph to represent the lne structure of content, and can represent content by usng less number of ASCII characters than tone-based ASCII art. As a result, structure-based ASCII art s often used n emal and BBS. Most of these ASCII art are made manually. However, t s dffcult for begnners to create structure-based ASCII art. As such, we propose an nteractve system for creatng structure-based ASCII art. (a) Tone-based style (b) Structure-based style Fgure 1: Examples of two styles. Our ASCII art creaton framework conssts of a preprocessng step and an ASCII art creaton step. In the preprocessng step, we prepare glyph mages of ASCII prntable characters by rasterzng an outlne font. The glyph mages are of the same sze. For ASCII art creaton, the nput mages of our system are black-and-whte mages where the background s whte and the content s black. Our system also allows users to perform drawng. To create the ASCII art mage of an nput mage, we frst dvde the nput mage nto grds whch are of the same sze as the glyph mages. We call these grds as blocks. Then, we perform glyph matchng whch s a process of calculatng the smlarty between the blocks of the nput mage and glyph mages. For each block, we put the best matchng glyph n t. We perform ths process for every block of the nput mage. For block and glyph matchng, we apply four matchng metrcs. The frst one s template matchng where we calculate the dfference between the values of same poston pxels n the block and glyph mage, then we calculate the dssmlarty by usng the Sum of Absolute Dfference. The second metrc s normalzed cross-correlaton where we calculate the smlarty between the hstograms of the dstrbuton of black pxels. The thrd one s Hstogram of Orented Gradents (HOG) where we frst determne HOG by calculatng the gradent at each pxel, then we calculate dfference between two HOGs. The last metrc s dstance transformaton where we calculate the dstance transformaton mage of the block and measure the dstance of the glyph mage to the dstance transformed mage. Results of template matchng and NCC are good f lnes of nput mages are thck. Results of HOG can represent lne drectons. Results of dstance transformaton can represent lne postons.

2 2 Related Work There are some exstng software programs for generatng ASCII art, such as AA-lb [1]. Most of these programs create the tone-based ASCII art usng a half-tonng method. Ths method represents nput mages usng the lne densty pattern of glyphs. Results of AA-lb are smlar to half-tonng results. However, AA-lb uses varyng brghtness font. O Grady and Rckard [2] proposed a method to convert bnary mages nto tone-based ASCII art usng Non-negatve Matrx Factorzaton. Ths method whch uses Non-negatve Matrx Factorzaton mnmzes the dfference between nput mages and glyphs n a pxel-by-pxel manner. The computatonal cost of ths method s hgh. Xu et al. [3] presented a method to create structure-based ASCII art. Ths method uses algnment-nsenstve shape smlarty metrc whch s smlar to shape context, and uses deformaton by adjustng the vertex postons of mage polylnes. To tolerate msalgnment, ths method used a hstogram of a log-polar dagram. However, t s hgh computatonal cost to optmze polylnes of nput mage. 3 User Interface A purpose of our system s the creaton of ASCII art from nput mages or drawn mages by users n real-tme. Users draw an llustraton n the left area (Fgure 2). Then, our system shows the result of ASCII art as text data n the rght area. Users can also change the glyph of the results by choosng from dsplayed canddates. Fgure 2: The user nterface of the proposed system. The left area s the drawng area. The rght area dsplays the result of ASCII art. between the nput mage and glyph mages at each block. We set the glyph whch s consdered the best glyph by matchng a block as one glyph of ASCII art strng. We execute ths process for every block. We descrbe four methods whch are used n the matchng process n the followng sectons. 4.1 Template Matchng We apply template matchng to our method for calculatng dssmlarly measure between a block of an nput mage and glyph mages. Ths method consders pxel postons of mages, whle half-tonng method consders the average value of brghtness per block. Therefore, template matchng s consdered as a method that can represent the lne feature of nput mage. We calculate dssmlarly measure by usng Sum of Absolute Dfference (SAD). SAD between a block and a glyph, f dff s calculated usng the followng equaton. f dff = heght j wdth I(, j) G(, j), (1) where I and G are the brghtness values of a block of an nput mage and a glyph mage, and j are the coordnates of pxel poston. heght and wdth are the szes of blocks. We calculate f dff usng every glyph mages at the block. The glyph whose value of SAD s the lowest n glyph s set as a glyph of ASCII art strng. 4.2 NCC wth Hstogram of Image Grd Template matchng usng SAD s nfluenced by the dfference between an nput mage and glyph mages n lne wdth. In ths secton, we ntroduce a method mnmzng the nfluences of dfference n lne wdth. We also descrbe Normalzed Cross-Correlaton (NCC) whch calculates smlarty measure, whle SAD represents dssmlarly measure. To mnmze the nfluence of the dfference of the lne wdth, we make a hstogram of an mage block. Ths hstogram represents the number of black pxels n a block. To make a hstogram of an mage block, we dvde the block usng small grds (Fgure 3). In each grd, we count the number of black pxels, and set the number n the same grd of the hstogram. 4 Matchng Method We descrbe the outlne of glyph matchng. Glyph matchng s the process of matchng whch compares an nput mage wth glyph mages. The nput of our method s a raster mage. Frst, the nput mage s subdvded nto grds whch are of the same sze as the glyph mages. In ths paper, these grds are called blocks. Second, we execute glyph matchng whch calculates smlarty measure or dssmlarly measure Fgure 3: Image block: Black grds are pxels, and red grds are clusters of pxels for hstogram countng.

3 NCC [4] s a method that calculates smlarty measure. NCC between a block and a glyph mage, f sm s calculated usng the followng equaton. f sm = grds grds H block ()H glyph () grds H block () 2 H glyph () 2, (2) where H block and H glyph are the hstograms of a block of an nput mage and a glyph mage. grds represent the set of grds n a block. Calculatng the NCC value of every glyph mage, the glyph whose f sm s the hghest s regarded as the best matchng grd for the block. The closer f sm s to 1, the more smlar are the two hstograms. 4.3 Hstogram of Orented Gradents In ths secton, we ntroduce the computaton of Hstogram of Orented Gradents (HOG) [5], and descrbe a matchng method usng HOG. Frst, we calculate gradent magntude, m(, j) and orentaton, θ(, j) at each pxel of mages usng the followng equatons. m(, j) = f x (, j) 2 + f y (, j) 2, (3) ( ) θ(, j) = tan 1 fy (, j), f x (, j) (4) where f x and f y are the frst order dervatves of horzontal and vertcal drectons. After calculaton, we dvde mages by 5x5 pxels grd called cell. We create an orentaton hstogram whch conssts of nne cells. We make an orentaton vector by usng HOG blocks whch consst of 3x3 cells (Fgure 4), and we normalze the vector. D HOG = Dmenson (H H g ) 2, (5) where H and H g are HOGs of block of an nput mage and a glyph mage. We set the glyph whch has the smallest mean square error as a glyph of ASCII art. 4.4 Dstance Transformaton In ths secton, we descrbe a matchng method usng dstance transform. Dstance transformaton s a method whch creates the dstance map from nput mages (Fgure 5). The pxel value n a dstance map s defned as the dstance between the pxel and the nearest pxel of 0 value n the nput mage. We calculate the dstance between a block of nput mage and glyph mages usng dstance transformaton. We calculate the dstance between a block and glyph mage, D g usng the followng equatons. D g = heght j wdth I DT (, j)g(, j), (6) where I DT s the value of the dstance map of the block, and G s the brghtness value of glyph mage. We defne the glyph whose dstance s the smallest n glyphs as the glyph of ASCII art. (a) Input mage (b) Dstance map Fgure 5: Examples of dstance transformaton. 5 Results Fgure 4: HOG block conssts of 3x3 cells. For calculatng an orentaton hstogram at each HOG block, the center cell of HOG block s movng to the next cell n the drecton of the arrows. We make a feature vector from all HOG blocks. If there s n HOG blocks n an mage, the feature vector of HOG has 9n dmensons. The dfference between HOGs, D HOG s calculated usng the followng equaton. We show the results of our system. Our system s mplemented usng the C language and usng the OpenCV lbrary [6]. The experments shown n ths paper were conducted usng a PC wth an Intel Core 2 Duo 2.0 GHz CPU wth 2.0GB man memory, and an NVIDIA GeForce 9400M GPU. We show the nput mages and the results usng the matchng methods n Fgures 6 to 10. The resoluton of the Bear mage s 720x960 pxels. The resoluton of the Shapes mage s 512x528pxels. The szes of the glyphs are 16x32pxel.

4 (a) Bear (b) Shapes Fgure 7: The results of template matchng. Fgure 6: Input mages.

5 Fgure 8: The results of NCC. Fgure 9: The results of HOG.

6 Our method s faster compared to the method proposed by Xu et al. [3] whch takes about 10 mnutes (Table 1). As the result, our system allows users to nteractvely create ASCII art mages. Table 1: Computatonal tme usng the four matchng metrcs. Computatonal tme (sec) Bear Shapes Template matchng NCC HOG Dstance Transformaton Conclusons and Future Work In ths paper, we have proposed an nteractve system whch creates structure-based ASCII art n a few seconds from mages or llustratons whch are drawn by users usng mage gradent and dstance transformaton. In our system, users can see the results mmedately. Our system allows users to also edt the glyphs of the results by choosng from dsplayed canddates. Based on expermental results, we found that the sutable matchng metrcs to produce vsually pleasant ASCII art mages depend on the type of the nput mages. Therefore, we need to have objectve evaluatons by user test. We wll have users choose the best results for nput mages. We would lke to create ASCII art whch conssts of proportonal font. The glyphs of proportonal font are of dfferent wdth sze. ASCII art of proportonal font are often used n Japanese bulletn board system, such as 2channel. References [1] Jan Hubcka. AA-lb. [2] Paul D. O Grady and Scott T. Rckard. Automatc asc art converson of bnary mages usng non-negatve constrants. In Proceedngs of the Irsh Sgnal and Systems Conference, pages , [3] Xuemao Xu, Lnlng Zhang, and Ten-Tsn Wong. Structure-based asc art. ACM Transactons on Graphcs (SIGGRAPH 2010 ssue), 29(4):52:1 52:9, July Fgure 10: The results of dstance transformaton. [4] Ka Brechle and Uwe D. Hanebeck. Template matchng usng fast normalzed cross correlaton. In Proceedngs of SPIE, volume 4387, page 95, [5] Navneet Dalal and Bll Trggs. Hstograms of orented gradents for human detecton. In IEEE Conference Computer Vson and Pattern Recognton, pages , [6] Intel Corporaton and Wllow Garage. OpenCV.

A Multi-mode Image Tracking System Based on Distributed Fusion

A Multi-mode Image Tracking System Based on Distributed Fusion A Mult-mode Image Tracng System Based on Dstrbuted Fuson Ln zheng Chongzhao Han Dongguang Zuo Hongsen Yan School of Electroncs & nformaton engneerng, X an Jaotong Unversty X an, Shaanx, Chna Lnzheng@malst.xjtu.edu.cn

More information

Face Verification Problem. Face Recognition Problem. Application: Access Control. Biometric Authentication. Face Verification (1:1 matching)

Face Verification Problem. Face Recognition Problem. Application: Access Control. Biometric Authentication. Face Verification (1:1 matching) Face Recognton Problem Face Verfcaton Problem Face Verfcaton (1:1 matchng) Querymage face query Face Recognton (1:N matchng) database Applcaton: Access Control www.vsage.com www.vsoncs.com Bometrc Authentcaton

More information

Forensic Handwritten Document Retrieval System

Forensic Handwritten Document Retrieval System Forensc Handwrtten Document Retreval System Sargur N SRIHARI and Zhxn SHI + Center of Excellence for Document Analyss and Recognton (CEDAR), Unversty at Buffalo, State Unversty of New York, Buffalo, USA

More information

An Enhanced Super-Resolution System with Improved Image Registration, Automatic Image Selection, and Image Enhancement

An Enhanced Super-Resolution System with Improved Image Registration, Automatic Image Selection, and Image Enhancement An Enhanced Super-Resoluton System wth Improved Image Regstraton, Automatc Image Selecton, and Image Enhancement Yu-Chuan Kuo ( ), Chen-Yu Chen ( ), and Chou-Shann Fuh ( ) Department of Computer Scence

More information

The Development of Web Log Mining Based on Improve-K-Means Clustering Analysis

The Development of Web Log Mining Based on Improve-K-Means Clustering Analysis The Development of Web Log Mnng Based on Improve-K-Means Clusterng Analyss TngZhong Wang * College of Informaton Technology, Luoyang Normal Unversty, Luoyang, 471022, Chna wangtngzhong2@sna.cn Abstract.

More information

A machine vision approach for detecting and inspecting circular parts

A machine vision approach for detecting and inspecting circular parts A machne vson approach for detectng and nspectng crcular parts Du-Mng Tsa Machne Vson Lab. Department of Industral Engneerng and Management Yuan-Ze Unversty, Chung-L, Tawan, R.O.C. E-mal: edmtsa@saturn.yzu.edu.tw

More information

Eye Center Localization on a Facial Image Based on Multi-Block Local Binary Patterns

Eye Center Localization on a Facial Image Based on Multi-Block Local Binary Patterns Eye Center Localzaton on a Facal Image Based on Mult-Bloc Local Bnary Patterns Anatoly tn, Vladmr Khryashchev, Olga Stepanova Yaroslavl State Unversty Yaroslavl, Russa anatolyntnyar@gmal.com, vhr@yandex.ru,

More information

Vehicle Detection and Tracking in Video from Moving Airborne Platform

Vehicle Detection and Tracking in Video from Moving Airborne Platform Journal of Computatonal Informaton Systems 10: 12 (2014) 4965 4972 Avalable at http://www.jofcs.com Vehcle Detecton and Trackng n Vdeo from Movng Arborne Platform Lye ZHANG 1,2,, Hua WANG 3, L LI 2 1 School

More information

Conversion between the vector and raster data structures using Fuzzy Geographical Entities

Conversion between the vector and raster data structures using Fuzzy Geographical Entities Converson between the vector and raster data structures usng Fuzzy Geographcal Enttes Cdála Fonte Department of Mathematcs Faculty of Scences and Technology Unversty of Combra, Apartado 38, 3 454 Combra,

More information

MACHINE VISION SYSTEM FOR SPECULAR SURFACE INSPECTION: USE OF SIMULATION PROCESS AS A TOOL FOR DESIGN AND OPTIMIZATION

MACHINE VISION SYSTEM FOR SPECULAR SURFACE INSPECTION: USE OF SIMULATION PROCESS AS A TOOL FOR DESIGN AND OPTIMIZATION MACHINE VISION SYSTEM FOR SPECULAR SURFACE INSPECTION: USE OF SIMULATION PROCESS AS A TOOL FOR DESIGN AND OPTIMIZATION R. SEULIN, F. MERIENNE and P. GORRIA Laboratore Le2, CNRS FRE2309, EA 242, Unversté

More information

A Multi-Camera System on PC-Cluster for Real-time 3-D Tracking

A Multi-Camera System on PC-Cluster for Real-time 3-D Tracking The 23 rd Conference of the Mechancal Engneerng Network of Thaland November 4 7, 2009, Chang Ma A Mult-Camera System on PC-Cluster for Real-tme 3-D Trackng Vboon Sangveraphunsr*, Krtsana Uttamang, and

More information

On-Line Fault Detection in Wind Turbine Transmission System using Adaptive Filter and Robust Statistical Features

On-Line Fault Detection in Wind Turbine Transmission System using Adaptive Filter and Robust Statistical Features On-Lne Fault Detecton n Wnd Turbne Transmsson System usng Adaptve Flter and Robust Statstcal Features Ruoyu L Remote Dagnostcs Center SKF USA Inc. 3443 N. Sam Houston Pkwy., Houston TX 77086 Emal: ruoyu.l@skf.com

More information

A Suspect Vehicle Tracking System Based on Video

A Suspect Vehicle Tracking System Based on Video 3rd Internatonal Conference on Multmeda Technology ICMT 2013) A Suspect Vehcle Trackng System Based on Vdeo Yad Chen 1, Tuo Wang Abstract. Vdeo survellance systems are wdely used n securty feld. The large

More information

A Comparative Study of Data Clustering Techniques

A Comparative Study of Data Clustering Techniques A COMPARATIVE STUDY OF DATA CLUSTERING TECHNIQUES A Comparatve Study of Data Clusterng Technques Khaled Hammouda Prof. Fakhreddne Karray Unversty of Waterloo, Ontaro, Canada Abstract Data clusterng s a

More information

Vision Mouse. Saurabh Sarkar a* University of Cincinnati, Cincinnati, USA ABSTRACT 1. INTRODUCTION

Vision Mouse. Saurabh Sarkar a* University of Cincinnati, Cincinnati, USA ABSTRACT 1. INTRODUCTION Vson Mouse Saurabh Sarkar a* a Unversty of Cncnnat, Cncnnat, USA ABSTRACT The report dscusses a vson based approach towards trackng of eyes and fngers. The report descrbes the process of locatng the possble

More information

where the coordinates are related to those in the old frame as follows.

where the coordinates are related to those in the old frame as follows. Chapter 2 - Cartesan Vectors and Tensors: Ther Algebra Defnton of a vector Examples of vectors Scalar multplcaton Addton of vectors coplanar vectors Unt vectors A bass of non-coplanar vectors Scalar product

More information

An Interest-Oriented Network Evolution Mechanism for Online Communities

An Interest-Oriented Network Evolution Mechanism for Online Communities An Interest-Orented Network Evoluton Mechansm for Onlne Communtes Cahong Sun and Xaopng Yang School of Informaton, Renmn Unversty of Chna, Bejng 100872, P.R. Chna {chsun,yang}@ruc.edu.cn Abstract. Onlne

More information

RESEARCH ON DUAL-SHAKER SINE VIBRATION CONTROL. Yaoqi FENG 1, Hanping QIU 1. China Academy of Space Technology (CAST) yaoqi.feng@yahoo.

RESEARCH ON DUAL-SHAKER SINE VIBRATION CONTROL. Yaoqi FENG 1, Hanping QIU 1. China Academy of Space Technology (CAST) yaoqi.feng@yahoo. ICSV4 Carns Australa 9- July, 007 RESEARCH ON DUAL-SHAKER SINE VIBRATION CONTROL Yaoq FENG, Hanpng QIU Dynamc Test Laboratory, BISEE Chna Academy of Space Technology (CAST) yaoq.feng@yahoo.com Abstract

More information

Parallel Numerical Simulation of Visual Neurons for Analysis of Optical Illusion

Parallel Numerical Simulation of Visual Neurons for Analysis of Optical Illusion 212 Thrd Internatonal Conference on Networkng and Computng Parallel Numercal Smulaton of Vsual Neurons for Analyss of Optcal Illuson Akra Egashra, Shunj Satoh, Hdetsugu Ire and Tsutomu Yoshnaga Graduate

More information

BRNO UNIVERSITY OF TECHNOLOGY

BRNO UNIVERSITY OF TECHNOLOGY BRNO UNIVERSITY OF TECHNOLOGY FACULTY OF INFORMATION TECHNOLOGY DEPARTMENT OF INTELLIGENT SYSTEMS ALGORITHMIC AND MATHEMATICAL PRINCIPLES OF AUTOMATIC NUMBER PLATE RECOGNITION SYSTEMS B.SC. THESIS AUTHOR

More information

Human Tracking by Fast Mean Shift Mode Seeking

Human Tracking by Fast Mean Shift Mode Seeking JOURAL OF MULTIMEDIA, VOL. 1, O. 1, APRIL 2006 1 Human Trackng by Fast Mean Shft Mode Seekng [10 font sze blank 1] [10 font sze blank 2] C. Belezna Advanced Computer Vson GmbH - ACV, Venna, Austra Emal:

More information

Characterization of Assembly. Variation Analysis Methods. A Thesis. Presented to the. Department of Mechanical Engineering. Brigham Young University

Characterization of Assembly. Variation Analysis Methods. A Thesis. Presented to the. Department of Mechanical Engineering. Brigham Young University Characterzaton of Assembly Varaton Analyss Methods A Thess Presented to the Department of Mechancal Engneerng Brgham Young Unversty In Partal Fulfllment of the Requrements for the Degree Master of Scence

More information

Forecasting the Direction and Strength of Stock Market Movement

Forecasting the Direction and Strength of Stock Market Movement Forecastng the Drecton and Strength of Stock Market Movement Jngwe Chen Mng Chen Nan Ye cjngwe@stanford.edu mchen5@stanford.edu nanye@stanford.edu Abstract - Stock market s one of the most complcated systems

More information

Snake-Based Segmentation of Teeth from Virtual Dental Casts

Snake-Based Segmentation of Teeth from Virtual Dental Casts 1 Snake-Based Segmentaton of Teeth from Vrtual Dental Casts Thomas Kronfeld, Davd Brunner and Gudo Brunnett Chemntz Unversty of Technology, Germany, {tkro, brunner, brunnett}@cs.tu-chemntz.de ABSTRACT

More information

Wildfire Smoke Detection Using SpatioTemporal Bag-of-Features of Smoke

Wildfire Smoke Detection Using SpatioTemporal Bag-of-Features of Smoke Wldfre Smoke Detecton Usng SpatoTemporal Bag-of-Features of Smoke JunOh Park, ByoungChul Ko, Jae-Yeal Nam Dept. of Computer Engneerng Kemyung Unversty Daegu, Korea wnsdhd, nceko, jynam@kmu.ac.kr Abstract

More information

How To Calculate The Accountng Perod Of Nequalty

How To Calculate The Accountng Perod Of Nequalty Inequalty and The Accountng Perod Quentn Wodon and Shlomo Ytzha World Ban and Hebrew Unversty September Abstract Income nequalty typcally declnes wth the length of tme taen nto account for measurement.

More information

Implementation of Deutsch's Algorithm Using Mathcad

Implementation of Deutsch's Algorithm Using Mathcad Implementaton of Deutsch's Algorthm Usng Mathcad Frank Roux The followng s a Mathcad mplementaton of Davd Deutsch's quantum computer prototype as presented on pages - n "Machnes, Logc and Quantum Physcs"

More information

Automated information technology for ionosphere monitoring of low-orbit navigation satellite signals

Automated information technology for ionosphere monitoring of low-orbit navigation satellite signals Automated nformaton technology for onosphere montorng of low-orbt navgaton satellte sgnals Alexander Romanov, Sergey Trusov and Alexey Romanov Federal State Untary Enterprse Russan Insttute of Space Devce

More information

Document image template matching based on component block list

Document image template matching based on component block list Pattern Recognton Letters 22 2001) 1033±1042 www.elsever.nl/locate/patrec Document mage template matchng based on component block lst Hanchuan Peng a,b,c, *, Fuhu Long b, Zheru Ch b, Wan-Ch Su b a Department

More information

Statistical Approach for Offline Handwritten Signature Verification

Statistical Approach for Offline Handwritten Signature Verification Journal of Computer Scence 4 (3): 181-185, 2008 ISSN 1549-3636 2008 Scence Publcatons Statstcal Approach for Offlne Handwrtten Sgnature Verfcaton 2 Debnath Bhattacharyya, 1 Samr Kumar Bandyopadhyay, 2

More information

Can Auto Liability Insurance Purchases Signal Risk Attitude?

Can Auto Liability Insurance Purchases Signal Risk Attitude? Internatonal Journal of Busness and Economcs, 2011, Vol. 10, No. 2, 159-164 Can Auto Lablty Insurance Purchases Sgnal Rsk Atttude? Chu-Shu L Department of Internatonal Busness, Asa Unversty, Tawan Sheng-Chang

More information

Techniques for multi-resolution image registration in the presence of occlusions 1

Techniques for multi-resolution image registration in the presence of occlusions 1 Technques for mult-resoluton mage regstraton n the presence of occlusons organ cgure Harold S. Stone morganm@mt.edu, hstone@research.n.nec.com Abstract Ths paper descrbes and compares technques for regsterng

More information

Detecting Global Motion Patterns in Complex Videos

Detecting Global Motion Patterns in Complex Videos Detectng Global Moton Patterns n Complex Vdeos Mn Hu, Saad Al, Mubarak Shah Computer Vson Lab, Unversty of Central Florda {mhu,sal,shah}@eecs.ucf.edu Abstract Learnng domnant moton patterns or actvtes

More information

An Integrated Semantically Correct 2.5D Object Oriented TIN. Andreas Koch

An Integrated Semantically Correct 2.5D Object Oriented TIN. Andreas Koch An Integrated Semantcally Correct 2.5D Object Orented TIN Andreas Koch Unverstät Hannover Insttut für Photogrammetre und GeoInformaton Contents Introducton Integraton of a DTM and 2D GIS data Semantcs

More information

Recurrence. 1 Definitions and main statements

Recurrence. 1 Definitions and main statements Recurrence 1 Defntons and man statements Let X n, n = 0, 1, 2,... be a MC wth the state space S = (1, 2,...), transton probabltes p j = P {X n+1 = j X n = }, and the transton matrx P = (p j ),j S def.

More information

A Hierarchical Anomaly Network Intrusion Detection System using Neural Network Classification

A Hierarchical Anomaly Network Intrusion Detection System using Neural Network Classification IDC IDC A Herarchcal Anomaly Network Intruson Detecton System usng Neural Network Classfcaton ZHENG ZHANG, JUN LI, C. N. MANIKOPOULOS, JAY JORGENSON and JOSE UCLES ECE Department, New Jersey Inst. of Tech.,

More information

Texture Analysis and Modified Level Set Method for Automatic Detection of Bone Boundaries in Hand Radiographs

Texture Analysis and Modified Level Set Method for Automatic Detection of Bone Boundaries in Hand Radiographs Texture Analyss and Modfed Level Set Method for Automatc Detecton of Bone Boundares n Hand Radographs Syaful Anam Graduate School of Scence and Engneerng Yamaguch Unversty Yamaguch, Japan Department of

More information

Actuator forces in CFD: RANS and LES modeling in OpenFOAM

Actuator forces in CFD: RANS and LES modeling in OpenFOAM Home Search Collectons Journals About Contact us My IOPscence Actuator forces n CFD: RANS and LES modelng n OpenFOAM Ths content has been downloaded from IOPscence. Please scroll down to see the full text.

More information

"Research Note" APPLICATION OF CHARGE SIMULATION METHOD TO ELECTRIC FIELD CALCULATION IN THE POWER CABLES *

Research Note APPLICATION OF CHARGE SIMULATION METHOD TO ELECTRIC FIELD CALCULATION IN THE POWER CABLES * Iranan Journal of Scence & Technology, Transacton B, Engneerng, ol. 30, No. B6, 789-794 rnted n The Islamc Republc of Iran, 006 Shraz Unversty "Research Note" ALICATION OF CHARGE SIMULATION METHOD TO ELECTRIC

More information

What is Candidate Sampling

What is Candidate Sampling What s Canddate Samplng Say we have a multclass or mult label problem where each tranng example ( x, T ) conssts of a context x a small (mult)set of target classes T out of a large unverse L of possble

More information

Design and Development of a Security Evaluation Platform Based on International Standards

Design and Development of a Security Evaluation Platform Based on International Standards Internatonal Journal of Informatcs Socety, VOL.5, NO.2 (203) 7-80 7 Desgn and Development of a Securty Evaluaton Platform Based on Internatonal Standards Yuj Takahash and Yoshm Teshgawara Graduate School

More information

GEOMETRY RECONSTRUCTION AND MESH GENERATION USING VARIATIONAL IMPLICIT SURFACES

GEOMETRY RECONSTRUCTION AND MESH GENERATION USING VARIATIONAL IMPLICIT SURFACES GEOMETRY RECONSTRUCTION AND MESH GENERATION USING VARIATIONAL IMPLICIT SURFACES S. Gordana *, C. Grffth *, J. Peró *, S. Sherwn * and D. J. Doorly * 1. ABSTRACT Ths paper presents a technque to recover

More information

How To Understand The Results Of The German Meris Cloud And Water Vapour Product

How To Understand The Results Of The German Meris Cloud And Water Vapour Product Ttel: Project: Doc. No.: MERIS level 3 cloud and water vapour products MAPP MAPP-ATBD-ClWVL3 Issue: 1 Revson: 0 Date: 9.12.1998 Functon Name Organsaton Sgnature Date Author: Bennartz FUB Preusker FUB Schüller

More information

Faraday's Law of Induction

Faraday's Law of Induction Introducton Faraday's Law o Inducton In ths lab, you wll study Faraday's Law o nducton usng a wand wth col whch swngs through a magnetc eld. You wll also examne converson o mechanc energy nto electrc energy

More information

21 Vectors: The Cross Product & Torque

21 Vectors: The Cross Product & Torque 21 Vectors: The Cross Product & Torque Do not use our left hand when applng ether the rght-hand rule for the cross product of two vectors dscussed n ths chapter or the rght-hand rule for somethng curl

More information

Volume Illustration: Non-Photorealistic Rendering of Volume Models

Volume Illustration: Non-Photorealistic Rendering of Volume Models To appear n Proceedngs of IEEE Vsualzaton 00 (October 2000, Salt Lake Cty, UT). Volume Illustraton: Non-Photorealstc Renderng of Volume Models Dad Ebert Penny Rhengans Computer Scence and Electrcal Engneerng

More information

Frequency Selective IQ Phase and IQ Amplitude Imbalance Adjustments for OFDM Direct Conversion Transmitters

Frequency Selective IQ Phase and IQ Amplitude Imbalance Adjustments for OFDM Direct Conversion Transmitters Frequency Selectve IQ Phase and IQ Ampltude Imbalance Adjustments for OFDM Drect Converson ransmtters Edmund Coersmeer, Ernst Zelnsk Noka, Meesmannstrasse 103, 44807 Bochum, Germany edmund.coersmeer@noka.com,

More information

Support Vector Machines

Support Vector Machines Support Vector Machnes Max Wellng Department of Computer Scence Unversty of Toronto 10 Kng s College Road Toronto, M5S 3G5 Canada wellng@cs.toronto.edu Abstract Ths s a note to explan support vector machnes.

More information

Time Value of Money Module

Time Value of Money Module Tme Value of Money Module O BJECTIVES After readng ths Module, you wll be able to: Understand smple nterest and compound nterest. 2 Compute and use the future value of a sngle sum. 3 Compute and use the

More information

Module 2 LOSSLESS IMAGE COMPRESSION SYSTEMS. Version 2 ECE IIT, Kharagpur

Module 2 LOSSLESS IMAGE COMPRESSION SYSTEMS. Version 2 ECE IIT, Kharagpur Module LOSSLESS IMAGE COMPRESSION SYSTEMS Lesson 3 Lossless Compresson: Huffman Codng Instructonal Objectves At the end of ths lesson, the students should be able to:. Defne and measure source entropy..

More information

International Journal of Video&Image Processing and Network Security IJVIPNS-IJENS Vol:12 No:05 1

International Journal of Video&Image Processing and Network Security IJVIPNS-IJENS Vol:12 No:05 1 Internatonal Journal of Vdeo&Image Processng and Network Securty IJVIPNS-IJENS Vol:12 No:05 1 Image to Excel Sheet Converson and Measurement of Smlarty Usng VB.Net Dr. Ebtesam Nam Abdullah Al-Shemmary

More information

Forecasting the Demand of Emergency Supplies: Based on the CBR Theory and BP Neural Network

Forecasting the Demand of Emergency Supplies: Based on the CBR Theory and BP Neural Network 700 Proceedngs of the 8th Internatonal Conference on Innovaton & Management Forecastng the Demand of Emergency Supples: Based on the CBR Theory and BP Neural Network Fu Deqang, Lu Yun, L Changbng School

More information

Matching Images with Different Resolutions

Matching Images with Different Resolutions Matchng Images wth Dfferent Resolutons Yves Dufournaud, Cordela Schmd, Radu Horaud To cte ths verson: Yves Dufournaud, Cordela Schmd, Radu Horaud. Matchng Images wth Dfferent Resolutons. Internatonal Conference

More information

Simulating injection moulding of microfeatured components

Simulating injection moulding of microfeatured components Smulatng njecton mouldng of mcrofeatured components T. Tofteberg 1 * and E. Andreassen 1 1 SINTEF Materals and Chemstry, Oslo, Norway terje.tofteberg@sntef.no; erk.andreassen@sntef.no Numercal smulaton

More information

Fixed income risk attribution

Fixed income risk attribution 5 Fxed ncome rsk attrbuton Chthra Krshnamurth RskMetrcs Group chthra.krshnamurth@rskmetrcs.com We compare the rsk of the actve portfolo wth that of the benchmark and segment the dfference between the two

More information

CHAPTER 5 RELATIONSHIPS BETWEEN QUANTITATIVE VARIABLES

CHAPTER 5 RELATIONSHIPS BETWEEN QUANTITATIVE VARIABLES CHAPTER 5 RELATIONSHIPS BETWEEN QUANTITATIVE VARIABLES In ths chapter, we wll learn how to descrbe the relatonshp between two quanttatve varables. Remember (from Chapter 2) that the terms quanttatve varable

More information

Generation of High-Resolution Mosaic for Photo-Realistic Texture-Mapping of Cultural Heritage 3D Models

Generation of High-Resolution Mosaic for Photo-Realistic Texture-Mapping of Cultural Heritage 3D Models The 5th Internatonal Symposum on Vrtual Realty, Archaeology and Cultural Hertage VAST (004) K. Can, Y. Chrysanthou, F. Nccolucc, N. Slberman (Edtors) Generaton of Hgh-Resoluton Mosac for Photo-Realstc

More information

8.5 UNITARY AND HERMITIAN MATRICES. The conjugate transpose of a complex matrix A, denoted by A*, is given by

8.5 UNITARY AND HERMITIAN MATRICES. The conjugate transpose of a complex matrix A, denoted by A*, is given by 6 CHAPTER 8 COMPLEX VECTOR SPACES 5. Fnd the kernel of the lnear transformaton gven n Exercse 5. In Exercses 55 and 56, fnd the mage of v, for the ndcated composton, where and are gven by the followng

More information

v a 1 b 1 i, a 2 b 2 i,..., a n b n i.

v a 1 b 1 i, a 2 b 2 i,..., a n b n i. SECTION 8.4 COMPLEX VECTOR SPACES AND INNER PRODUCTS 455 8.4 COMPLEX VECTOR SPACES AND INNER PRODUCTS All the vector spaces we have studed thus far n the text are real vector spaces snce the scalars are

More information

Course outline. Financial Time Series Analysis. Overview. Data analysis. Predictive signal. Trading strategy

Course outline. Financial Time Series Analysis. Overview. Data analysis. Predictive signal. Trading strategy Fnancal Tme Seres Analyss Patrck McSharry patrck@mcsharry.net www.mcsharry.net Trnty Term 2014 Mathematcal Insttute Unversty of Oxford Course outlne 1. Data analyss, probablty, correlatons, vsualsaton

More information

Resource Scheduling in Desktop Grid by Grid-JQA

Resource Scheduling in Desktop Grid by Grid-JQA The 3rd Internatonal Conference on Grd and Pervasve Computng - Worshops esource Schedulng n Destop Grd by Grd-JQA L. Mohammad Khanl M. Analou Assstant professor Assstant professor C.S. Dept.Tabrz Unversty

More information

Brigid Mullany, Ph.D University of North Carolina, Charlotte

Brigid Mullany, Ph.D University of North Carolina, Charlotte Evaluaton And Comparson Of The Dfferent Standards Used To Defne The Postonal Accuracy And Repeatablty Of Numercally Controlled Machnng Center Axes Brgd Mullany, Ph.D Unversty of North Carolna, Charlotte

More information

3D Head Tracking Using Motion Adaptive Texture-Mapping

3D Head Tracking Using Motion Adaptive Texture-Mapping 3D Head Trackng Usng Moton Adaptve Texture-Mappng Lsa M Brown IBM T.J. Watson Research Center lsab@us.bm.com Abstract We have developed a fast robust 3D head trackng system based on renderng a texture-mapped

More information

Gender Classification for Real-Time Audience Analysis System

Gender Classification for Real-Time Audience Analysis System Gender Classfcaton for Real-Tme Audence Analyss System Vladmr Khryashchev, Lev Shmaglt, Andrey Shemyakov, Anton Lebedev Yaroslavl State Unversty Yaroslavl, Russa vhr@yandex.ru, shmaglt_lev@yahoo.com, andrey.shemakov@gmal.com,

More information

Automated Mobile ph Reader on a Camera Phone

Automated Mobile ph Reader on a Camera Phone Automated Moble ph Reader on a Camera Phone B.Y. Loh, N.K. Vuong, S. Chan and C.. Lau AbstractA robust classfcaton algorthm that apples color scence and mage processng technques s developed to automatcally

More information

A hybrid global optimization algorithm based on parallel chaos optimization and outlook algorithm

A hybrid global optimization algorithm based on parallel chaos optimization and outlook algorithm Avalable onlne www.ocpr.com Journal of Chemcal and Pharmaceutcal Research, 2014, 6(7):1884-1889 Research Artcle ISSN : 0975-7384 CODEN(USA) : JCPRC5 A hybrd global optmzaton algorthm based on parallel

More information

Vehicle Detection, Classification and Position Estimation based on Monocular Video Data during Night-time

Vehicle Detection, Classification and Position Estimation based on Monocular Video Data during Night-time Vehcle Detecton, Classfcaton and Poston Estmaton based on Monocular Vdeo Data durng Nght-tme Jonas Frl, Marko H. Hoerter, Martn Lauer and Chrstoph Stller Keywords: Automotve Lghtng, Lght-based Drver Assstance,

More information

Support vector domain description

Support vector domain description Pattern Recognton Letters 20 (1999) 1191±1199 www.elsever.nl/locate/patrec Support vector doman descrpton Davd M.J. Tax *,1, Robert P.W. Dun Pattern Recognton Group, Faculty of Appled Scence, Delft Unversty

More information

Investigation of Normalization Techniques and Their Impact on a Recognition Rate in Handwritten Numeral Recognition

Investigation of Normalization Techniques and Their Impact on a Recognition Rate in Handwritten Numeral Recognition S C H E D A E I N F O R M A T I C A E VOLUME 19 010 Investgaton of Normalzaton Technques and Ther Impact on a Recognton Rate n Handwrtten Numeral Recognton WIESŁAW CHMIELNICKI 1, KATARZYNA STĄPOR 1 Faculty

More information

A DATA MINING APPLICATION IN A STUDENT DATABASE

A DATA MINING APPLICATION IN A STUDENT DATABASE JOURNAL OF AERONAUTICS AND SPACE TECHNOLOGIES JULY 005 VOLUME NUMBER (53-57) A DATA MINING APPLICATION IN A STUDENT DATABASE Şenol Zafer ERDOĞAN Maltepe Ünversty Faculty of Engneerng Büyükbakkalköy-Istanbul

More information

Adaptive Fractal Image Coding in the Frequency Domain

Adaptive Fractal Image Coding in the Frequency Domain PROCEEDINGS OF INTERNATIONAL WORKSHOP ON IMAGE PROCESSING: THEORY, METHODOLOGY, SYSTEMS AND APPLICATIONS 2-22 JUNE,1994 BUDAPEST,HUNGARY Adaptve Fractal Image Codng n the Frequency Doman K AI UWE BARTHEL

More information

A Simple Approach to Clustering in Excel

A Simple Approach to Clustering in Excel A Smple Approach to Clusterng n Excel Aravnd H Center for Computatonal Engneerng and Networng Amrta Vshwa Vdyapeetham, Combatore, Inda C Rajgopal Center for Computatonal Engneerng and Networng Amrta Vshwa

More information

The Effects of Geodetic Configuration of the Network in Deformation Analysis

The Effects of Geodetic Configuration of the Network in Deformation Analysis The Effects of Geodetc Confguraton of the Network n Deformaton Analyss M. Onur KAPLAN, Tevfk AYAN and Serdar EROL Turkey Key words: Network confguraton, deformaton analyss, optmzaton, confdence ellpses

More information

7.5. Present Value of an Annuity. Investigate

7.5. Present Value of an Annuity. Investigate 7.5 Present Value of an Annuty Owen and Anna are approachng retrement and are puttng ther fnances n order. They have worked hard and nvested ther earnngs so that they now have a large amount of money on

More information

CHOLESTEROL REFERENCE METHOD LABORATORY NETWORK. Sample Stability Protocol

CHOLESTEROL REFERENCE METHOD LABORATORY NETWORK. Sample Stability Protocol CHOLESTEROL REFERENCE METHOD LABORATORY NETWORK Sample Stablty Protocol Background The Cholesterol Reference Method Laboratory Network (CRMLN) developed certfcaton protocols for total cholesterol, HDL

More information

A New Technique for Vehicle Tracking on the Assumption of Stratospheric Platforms. Department of Civil Engineering, University of Tokyo **

A New Technique for Vehicle Tracking on the Assumption of Stratospheric Platforms. Department of Civil Engineering, University of Tokyo ** Fuse, Taash A New Technque for Vehcle Tracng on the Assumton of Stratosherc Platforms Taash FUSE * and Ehan SHIMIZU ** * Deartment of Cvl Engneerng, Unversty of Toyo ** Professor, Deartment of Cvl Engneerng,

More information

Autonomous Navigation and Map building Using Laser Range Sensors in Outdoor Applications

Autonomous Navigation and Map building Using Laser Range Sensors in Outdoor Applications Autonomous Navgaton and Map buldng Usng aser Range Sensors n Outdoor Applcatons Jose Guvant, Eduardo Nebot and Stephan Baker Australan Centre for Feld Robotcs Department of Mechancal and Mechatronc Engneerng

More information

Multiple stage amplifiers

Multiple stage amplifiers Multple stage amplfers Ams: Examne a few common 2-transstor amplfers: -- Dfferental amplfers -- Cascode amplfers -- Darlngton pars -- current mrrors Introduce formal methods for exactly analysng multple

More information

L10: Linear discriminants analysis

L10: Linear discriminants analysis L0: Lnear dscrmnants analyss Lnear dscrmnant analyss, two classes Lnear dscrmnant analyss, C classes LDA vs. PCA Lmtatons of LDA Varants of LDA Other dmensonalty reducton methods CSCE 666 Pattern Analyss

More information

On the Optimal Control of a Cascade of Hydro-Electric Power Stations

On the Optimal Control of a Cascade of Hydro-Electric Power Stations On the Optmal Control of a Cascade of Hydro-Electrc Power Statons M.C.M. Guedes a, A.F. Rbero a, G.V. Smrnov b and S. Vlela c a Department of Mathematcs, School of Scences, Unversty of Porto, Portugal;

More information

Liptracking and MPEG4 Animation with Feedback Control

Liptracking and MPEG4 Animation with Feedback Control Lptrackng and MPEG4 Anmaton wth Feedback Control Brce Beaumesnl, Franck Luthon, Marc Chaumont To cte ths verson: Brce Beaumesnl, Franck Luthon, Marc Chaumont. Lptrackng and MPEG4 Anmaton wth Feedback Control.

More information

Single and multiple stage classifiers implementing logistic discrimination

Single and multiple stage classifiers implementing logistic discrimination Sngle and multple stage classfers mplementng logstc dscrmnaton Hélo Radke Bttencourt 1 Dens Alter de Olvera Moraes 2 Vctor Haertel 2 1 Pontfíca Unversdade Católca do Ro Grande do Sul - PUCRS Av. Ipranga,

More information

Multiframe Many Many Point Correspondence for Vehicle Tracking in High Density Wide Area Aerial Videos

Multiframe Many Many Point Correspondence for Vehicle Tracking in High Density Wide Area Aerial Videos Int J Comput Vs DOI 10.1007/s11263-013-0624-1 Multframe Many Many Pont Correspondence for Vehcle Trackng n Hgh Densty Wde Area Aeral Vdeos Imran Saleem Mubarak Shah Receved: 21 December 2011 / Accepted:

More information

Study on Model of Risks Assessment of Standard Operation in Rural Power Network

Study on Model of Risks Assessment of Standard Operation in Rural Power Network Study on Model of Rsks Assessment of Standard Operaton n Rural Power Network Qngj L 1, Tao Yang 2 1 Qngj L, College of Informaton and Electrcal Engneerng, Shenyang Agrculture Unversty, Shenyang 110866,

More information

An Evaluation of the Extended Logistic, Simple Logistic, and Gompertz Models for Forecasting Short Lifecycle Products and Services

An Evaluation of the Extended Logistic, Simple Logistic, and Gompertz Models for Forecasting Short Lifecycle Products and Services An Evaluaton of the Extended Logstc, Smple Logstc, and Gompertz Models for Forecastng Short Lfecycle Products and Servces Charles V. Trappey a,1, Hsn-yng Wu b a Professor (Management Scence), Natonal Chao

More information

FREQUENCY OF OCCURRENCE OF CERTAIN CHEMICAL CLASSES OF GSR FROM VARIOUS AMMUNITION TYPES

FREQUENCY OF OCCURRENCE OF CERTAIN CHEMICAL CLASSES OF GSR FROM VARIOUS AMMUNITION TYPES FREQUENCY OF OCCURRENCE OF CERTAIN CHEMICAL CLASSES OF GSR FROM VARIOUS AMMUNITION TYPES Zuzanna BRO EK-MUCHA, Grzegorz ZADORA, 2 Insttute of Forensc Research, Cracow, Poland 2 Faculty of Chemstry, Jagellonan

More information

Hallucinating Multiple Occluded CCTV Face Images of Different Resolutions

Hallucinating Multiple Occluded CCTV Face Images of Different Resolutions In Proc. IEEE Internatonal Conference on Advanced Vdeo and Sgnal based Survellance (AVSS 05), September 2005 Hallucnatng Multple Occluded CCTV Face Images of Dfferent Resolutons Ku Ja Shaogang Gong Computer

More information

VRT012 User s guide V0.1. Address: Žirmūnų g. 27, Vilnius LT-09105, Phone: (370-5) 2127472, Fax: (370-5) 276 1380, Email: info@teltonika.

VRT012 User s guide V0.1. Address: Žirmūnų g. 27, Vilnius LT-09105, Phone: (370-5) 2127472, Fax: (370-5) 276 1380, Email: info@teltonika. VRT012 User s gude V0.1 Thank you for purchasng our product. We hope ths user-frendly devce wll be helpful n realsng your deas and brngng comfort to your lfe. Please take few mnutes to read ths manual

More information

Logistic Regression. Lecture 4: More classifiers and classes. Logistic regression. Adaboost. Optimization. Multiple class classification

Logistic Regression. Lecture 4: More classifiers and classes. Logistic regression. Adaboost. Optimization. Multiple class classification Lecture 4: More classfers and classes C4B Machne Learnng Hlary 20 A. Zsserman Logstc regresson Loss functons revsted Adaboost Loss functons revsted Optmzaton Multple class classfcaton Logstc Regresson

More information

INTERACTING BANKS OF BAYESIAN MATCHED FILTERS

INTERACTING BANKS OF BAYESIAN MATCHED FILTERS SPIE Proceedngs: Sgnal and Data Processng of Small Targets, Vol. 4048, Orlando, FL, 2000. INTERACTING BANKS OF BAYESIAN MATCHED FILTERS B. L. Rozovsk, A. Petrov, and R. B. Blažek. Center for Appled Mathematcal

More information

APPLICATION OF PROBE DATA COLLECTED VIA INFRARED BEACONS TO TRAFFIC MANEGEMENT

APPLICATION OF PROBE DATA COLLECTED VIA INFRARED BEACONS TO TRAFFIC MANEGEMENT APPLICATION OF PROBE DATA COLLECTED VIA INFRARED BEACONS TO TRAFFIC MANEGEMENT Toshhko Oda (1), Kochro Iwaoka (2) (1), (2) Infrastructure Systems Busness Unt, Panasonc System Networks Co., Ltd. Saedo-cho

More information

USE OF THE SRTM DEM AS A GEO-REFERENCING TOOL BY ELEVATION MATCHING

USE OF THE SRTM DEM AS A GEO-REFERENCING TOOL BY ELEVATION MATCHING USE OF THE SRTM DEM AS A GEO-REFERENCING TOOL BY ELEVATION MATCHING J. A. Gonçalves a, A. M. Morgado b a Faculdade de Cêncas - Unversdade do Porto, Rua Campo Alegre, 4430-354 Porto, Portugal - jagoncal@fc.up.pt

More information

Energies of Network Nastsemble

Energies of Network Nastsemble Supplementary materal: Assessng the relevance of node features for network structure Gnestra Bancon, 1 Paolo Pn,, 3 and Matteo Marsl 1 1 The Abdus Salam Internatonal Center for Theoretcal Physcs, Strada

More information

Illumination Normalization for Robust Face Recognition Against Varying Lighting Conditions

Illumination Normalization for Robust Face Recognition Against Varying Lighting Conditions llumnaton Normalzaton for Robust Face Recognton Aganst Varyng Lghtng Condtons Shguang Shan, Wen Gao, Bo Cao, Debn Zhao C-SVSON JDL, nsttute of Computng echnology, CAS, P.O.Box 274, Beng, Chna, 18 Computer

More information

BUSINESS PROCESS PERFORMANCE MANAGEMENT USING BAYESIAN BELIEF NETWORK. 0688, dskim@ssu.ac.kr

BUSINESS PROCESS PERFORMANCE MANAGEMENT USING BAYESIAN BELIEF NETWORK. 0688, dskim@ssu.ac.kr Proceedngs of the 41st Internatonal Conference on Computers & Industral Engneerng BUSINESS PROCESS PERFORMANCE MANAGEMENT USING BAYESIAN BELIEF NETWORK Yeong-bn Mn 1, Yongwoo Shn 2, Km Jeehong 1, Dongsoo

More information

Open Access A Load Balancing Strategy with Bandwidth Constraint in Cloud Computing. Jing Deng 1,*, Ping Guo 2, Qi Li 3, Haizhu Chen 1

Open Access A Load Balancing Strategy with Bandwidth Constraint in Cloud Computing. Jing Deng 1,*, Ping Guo 2, Qi Li 3, Haizhu Chen 1 Send Orders for Reprnts to reprnts@benthamscence.ae The Open Cybernetcs & Systemcs Journal, 2014, 8, 115-121 115 Open Access A Load Balancng Strategy wth Bandwdth Constrant n Cloud Computng Jng Deng 1,*,

More information

CS 2750 Machine Learning. Lecture 3. Density estimation. CS 2750 Machine Learning. Announcements

CS 2750 Machine Learning. Lecture 3. Density estimation. CS 2750 Machine Learning. Announcements Lecture 3 Densty estmaton Mlos Hauskrecht mlos@cs.ptt.edu 5329 Sennott Square Next lecture: Matlab tutoral Announcements Rules for attendng the class: Regstered for credt Regstered for audt (only f there

More information

IMPACT ANALYSIS OF A CELLULAR PHONE

IMPACT ANALYSIS OF A CELLULAR PHONE 4 th ASA & μeta Internatonal Conference IMPACT AALYSIS OF A CELLULAR PHOE We Lu, 2 Hongy L Bejng FEAonlne Engneerng Co.,Ltd. Bejng, Chna ABSTRACT Drop test smulaton plays an mportant role n nvestgatng

More information

Offline Verification of Hand Written Signature using Adaptive Resonance Theory Net (Type-1)

Offline Verification of Hand Written Signature using Adaptive Resonance Theory Net (Type-1) Internatonal Journal of Sgnal Processng Systems Vol, No June 203 Offlne Verfcaton of Hand Wrtten Sgnature usng Adaptve Resonance Theory Net (Type-) Trtharaj Dash Veer Surendra Sa Unversty of Technology,

More information

Calculating the high frequency transmission line parameters of power cables

Calculating the high frequency transmission line parameters of power cables < ' Calculatng the hgh frequency transmsson lne parameters of power cables Authors: Dr. John Dcknson, Laboratory Servces Manager, N 0 RW E B Communcatons Mr. Peter J. Ncholson, Project Assgnment Manager,

More information