A GRAPHICS PROCESSING UNIT IMPLEMENTATION OF THE PARTICLE FILTER

Size: px
Start display at page:

Download "A GRAPHICS PROCESSING UNIT IMPLEMENTATION OF THE PARTICLE FILTER"

Transcription

1 A GRAPHICS PROCESSING UNIT IMPLEMENTATION OF THE PARTICLE FILTER Gusaf Hendeby, Jeroen D. Hol, Rickard Karlsson, Fredrik Gusafsson Deparmen of Elecrical Engineering Auomaic Conrol Linköping Universiy, Sweden {hendeby, hol, rickard, ABSTRACT Modern graphics cards for compuers, and especially heir graphics processing unis (GPUs), are designed for fas rendering of graphics. In order o achieve his GPUs are equipped wih a parallel archiecure which can be exploied for general-purpose compuing on GPU (GPGPU) as a complemen o he cenral processing uni (CPU). In his paper GPGPU echniques are used o make a parallel GPU implemenaion of sae-of-he-ar recursive Bayesian esimaion using paricle filers (PF). The modificaions made o obain a parallel paricle filer, especially for he resampling sep, are discussed and he performance of he resuling GPU implemenaion is compared o one achieved wih a radiional CPU implemenaion. The resuling GPU filer is faser wih he same accuracy as he CPU filer for many paricles, and i shows how he paricle filer can be parallelized. 1. INTRODUCTION Modern graphics processing unis (GPUs) are designed o handle huge amouns of daa abou a scene and o render oupu o screen in real ime. To achieve his, he GPU is equipped wih a single insrucion muliple daa (SIMD) parallel insrucion archiecure. GPUs are developing rapidly in order o mee he ever increasing demands from he compuer game indusry, and as a side-effec, general-purpose compuing on graphics processing unis (GPGPU) has emerged o uilize his new source of compuaional power [1 3]. For highly parallelizable algorihms he GPU may even ouperform he sequenial cenral processing uni (CPU). The paricle filer (PF) is an algorihm o perform recursive Bayesian esimaion [4 6]. Due o is naure, a large par consiss of performing idenical operaions on many paricles (samples), so i is poenially well suied for parallel implemenaion. Successful parallelizaion may lead o a drasic reducion of compuaion ime and open up for new applicaions requiring large sae space descripions wih many paricles. Noneheless, filering and esimaion algorihms have only recenly been invesigaed in his conex, see for insance [7, 8]. There are many ypes of parallel hardware available nowadays; examples include mulicore processors, field-programmable gae arrays (FPGAs), compuer clusers, and GPUs. GPUs are low cos and easily accessible SIMD parallel hardware almos every new compuer comes wih a decen graphics card. Hence, GPUs are an ineresing opion for speeding up a PF and o es parallel implemenaions. A firs GPU implemenaion of he PF was repored in [9] for a visual racking compuer vision applicaion. In conras, in This work has been funded by he Swedish Research Council (VR), he EU-IST projec MATRIS, and he Sraegic Research Cener MOVIII, funded by he Swedish Foundaion for Sraegic Research, SSF. Figure 1: The graphics pipeline. The verex and fragmen processors can be programmed wih user code which will be evaluaed in parallel on several pipelines. (See Secion 2.1.) his paper a general PF GPU implemenaion is developed. To he bes of he auhors knowledge no successful complee implemenaion of a general PF on a GPU has ye been repored and his aricle aims o fill his gap: GPGPU echniques are used o implemen a PF on a GPU and is performance is compared o ha of a CPU implemenaion. The paper is organized as follows: In Secion 2 GPGPU programming is briefly inroduced and his is used in Secion 3 o discuss various aspecs of he PF requiring special aenion for a GPU implemenaion. Resuls from CPU and GPU implemenaions are compared in Secion 5, and concluding remarks are given in Secion GENERAL PURPOSE GRAPHICS PROGRAMMING GPUs operae according o he sandardized graphics pipeline (see Figure 1), which is implemened a hardware level [2]. This pipeline, which defines how he graphics should be processed, is highly opimized for he ypical graphics applicaion, i.e., displaying 3D objecs. The verex processor receives verices, i.e., corners of he geomerical objecs o display, and ransform and projec hem o deermine how he objecs should be shown on he screen. All verices are processed independenly and as much in parallel as here are pipelines available. In he raserizer i is deermined wha fragmens, or poenial pixels, he geomerical shapes may resul in, and he fragmens are passed on o he fragmen processor. The fragmens are hen processed independenly and as much in parallel as here are pipelines available, and he resuling color of he pixels is sored in he frame buffer before being shown on he screen. A he hardware level he graphics pipeline is implemened using a number of processors, each having muliple pipelines performing he same insrucion on differen daa. Tha is, GPUs are SIMD processors, and each processing pipeline can be hough of as a parallel sub-processor EURASIP 1639

2 2.1 Programming he GPU The wo seps in he graphics pipeline open o programming are he verex processor (working wih he primiives making up he polygons o be rendered) and he fragmen processor (working wih fragmens, i.e., poenial pixels in he final resul). Boh hese processors can be conrolled wih programs called shaders, and consis of several parallel pipelines (subprocessors) for SIMD operaions. Shaders, or GPU programs, were inroduced o replace, wha used o be, fixed funcionaliy in he graphics pipeline wih more flexible programmable processors. They were mainly inended o allow for more advanced graphics effecs, bu hey also go GPGPU sared. Programming he verex and fragmen processors is in many aspecs very similar o programming a CPU, wih limiaions and exensions made o beer suppor he graphics card and is inended usage, bu i should be kep in mind ha he code runs in parallel on muliple pipelines of he processor. Some prominen differences include he basic daa ypes which are available; mos operaions of a GPU operae on colors (represened by one o four floaing poin numbers), and daa is sen o and from he graphics card using exures (1D 3D arrays of color daa). In newer generaions of GPUs 32 bi floaing poin operaions are suppored, bu he rounding unis do no fully conform o he IEEE floaing poin sandard, hence providing somewha poorer numerical accuracy. In order o use he GPU for general purpose calculaions, a ypical GPGPU applicaion applies a program srucure similar o Algorihm 1. These very simple seps make sure ha he fragmen program is execued once for every elemen of he daa. The workload is auomaically disribued over he available processor pipelines. Algorihm 1 GPGPU skeleon program 1 1. Program he fragmen shader wih he desired operaion. 2. Send he daa o he GPU in he form of a exure. 3. Draw a recangle of suiable size on he screen o sar he calculaion. 4. Read back he resuling exure o he CPU. 2.2 GPU Programming Language There are various ways o access he GPU resources as a programmer, including C for graphics (Cg), [10], and OpenGL [11] which includes he OpenGL Shading Language (GLSL), [12]. This paper will use GLSL ha operaes closer o he hardware han Cg. For more informaion and alernaives see [1, 2, 10]. To run GLSL code on he GPU, he OpenGL applicaion programming inerface (API) is used [11, 12]. The GLSL code is passed as ex o he API ha compiles and links he differen shaders ino binary code ha is sen o he GPU and execued he nex ime he graphics card is asked o render a scene. 1 The sream processing capabiliies of he upcoming GPU generaions migh change his raher complicaed mehod of performing GPGPU. 3. RECURSIVE BAYESIAN ESTIMATION The general nonlinear filering problem is o esimae he sae, x, of a sae-space sysem x +1 = f (x,w ), y = h(x ) + e, (1a) (1b) where y are measuremen and w p w (w ) and e p e (e ) are process and measuremen noise, respecively. The funcion f describes he dynamics of he sysem, h he measuremens, and p w and p e are probabiliy densiy funcions (PDF) for he involved noise. For he imporan special case of linear-gaussian dynamics and linear-gaussian observaions he Kalman filer, [13, 14], solves he esimaion problem in an opimal way. A more general soluion is he paricle filer (PF), [4 6], which approximaely solves he Bayesian inference for he poserior sae disribuion, [15], given by p(x +1 Y ) = p(x +1 x )p(x Y )dx, (2a) p(x Y ) = p(y x )p(x Y 1 ), (2b) p(y Y 1 ) where Y = {y i } i=1 is he se of available measuremens. The PF uses saisical mehods o approximae he inegrals. The basic PF algorihm is given in Algorihm 2. Algorihm 2 Basic Paricle Filer [5] 1. Le := 0, generae N paricles {x (i) 0 }N i=1 p(x 0). 2. Measuremen updae: Compue he paricle weighs ω (i) = p(y x (i) ) / j p(y x ( j) ). 3. Resample: (a) Generae N uniform random numbers {u (i) } N i=1 U (0,1). (b) Compue he cumulaive weighs: c (i) = i j) j=1 ω(. (c) Generae N new paricles using u (i) and c (i) : {x (i ) } N i=1 where Pr(x(i ) = x ( j) ) = ω j. 4. Time updae: (a) Generae process noise {w (i) } N i=1 p w(w ). (b) Simulae new paricles x (i) +1 = f (x(i ),w (i) ). 5. Le := + 1 and repea from GPU BASED PARTICLE FILTER To implemen a parallel PF on a GPU here are several aspecs of Algorihm 2 ha require special aenion. Resampling and weigh normalizaion are he wo mos challenging seps o implemen in a parallel fashion since in hese seps all paricles and heir weighs inerac wih each oher. The main difficulies are cumulaive summaion, and selecion and redisribuion of paricles. In he following secions, soluions suiable for parallel implemenaion are proposed for hese asks, ogeher wih a discussion on issues wih random number generaion, likelihood evaluaion as par of he measuremen updae, and sae propagaion as par of he ime updae EURASIP 1640

3 Forward Adder Original daa = = = = = = = 36 Cumulaive sum 1 = = = = = = = Backward Adder Figure 2: Illusraion of a parallel implemenaion of cumulaive sum generaion of he numbers 1,2,...,8. Firs he sum is calculaed using a forward adder ree. Then he parial summaion resuls are used by he backward adder o consruc he cumulaive sum; 1,3,..., Random Number Generaion A presen, sae-of-he-ar graphics cards do no have sufficien suppor for random number generaion for usage in a PF, since he saisical properies of he buil-in generaors are oo poor. The algorihm in his paper herefore relies on random numbers generaed on he CPU o be passed o he GPU. This inroduces quie a lo of daa ransfer as several random numbers per paricle are required for one ieraion of he PF. Uploading daa o he graphics card is raher quick, bu sill some performance is los. Generaing random numbers on he GPU suiable for use in Mone Carlo simulaion is an ongoing research opic, see e.g., [16 18]. Doing so will no only reduce daa ranspor and allow a sandalone GPU implemenaion, an efficien parallel version will improve overall performance as he random number generaion iself akes a considerable amoun of ime. 4.2 Likelihood Evaluaion and Sae Propagaion Boh likelihood evaluaion (as par of he measuremen updae) and sae propagaion (in he ime updae), Seps 2 and 4b of Algorihm 2, can be implemened sraighforwardly in a parallel fashion since all paricles are handled independenly. As a consequence of his, boh operaions can be performed in O(1) ime wih N parallel processors, i.e., one processing elemen per paricle. To solve new filering problems, only hese wo funcions have o be modified. As no parallelizaion issues need o be addressed, his is easily accomplished. In he presened GPU implemenaion he paricles x (i) and he weighs ω (i) are sored in separae exures which are updaed by he sae propagaion and he likelihood evaluaion, respecively. Texures can only hold four dimensional sae vecors, bu using muliple rendering arges he sae vecors can easily be exended when needed. When he measuremen noise is low-dimensional he likelihood compuaions can be replaced wih fas exure lookups uilizing hardware inerpolaion. Furhermore, as discussed above, he sae propagaion uses exernally generaed process noise, bu i would also be possible o generae he random numbers on he GPU. 4.3 Summaion Summaions are par of he weigh normalizaion (during measuremen updaes) and cumulaive weigh calculaion (during resampling), Seps 2 and 3b of Algorihm 2. A cumulaive sum can be implemened using a muli-pass scheme, where an adder ree is run forward and hen backward, as illusraed in Figure 2. Running only he forward pass he 1 u (k) 0 x (1) x (2) x (3) x (4) x (5) x (k ) x (6) x (7) x (8) Figure 3: Paricle selecion by comparing uniform random numbers ( ) o he cumulaive sum of paricle weighs ( ). oal sum is compued. This muli-pass scheme is a sandard mehod for parallelizing seemingly sequenial algorihms based on gaher and scaer principles. The reference [2] describes hese conceps in for he GPU seing. In he forward pass parial sums are creaed ha are used in he backward pass o compue he missing parial sums o complee he cumulaive sum. The resuling algorihm is O(log N) in ime given N parallel processors and N paricles. 4.4 Paricle Selecion To preven sample impoverishmen, he resampling sep, Seps 3 of Algorihm 2, replaces he weighed paricle disribuion wih a unweighed one. This is done by drawing a new se of paricles {x (i ) } wih replacemen from he original paricles {x (i) } in such a way ha Pr(x (i ) = x ( j) ) = ω ( j). Sandard resampling algorihms [4, 19, 20] selec he paricles by comparing uniform random numbers u (k) o he cumulaive sum of he normalized paricle weighs c (i), as illusraed in Figure 3. Tha is, assign x (k ) = x (i),wih i such ha u (k) [c (i 1),c (i) ), (3) which makes use of an explici expression for he generalized inverse cumulaive probabiliy disribuion. Differen mehods are used o generae he uniform random numbers [20]. Sraified resampling, [19], generaes uniform random numbers according o u (k) = (k 1) + ũ(k), wih ũ (k) U (0,1), (4) N whereas sysemaic resampling, [19], uses u (k) = (k 1) + ũ, wih ũ U (0,1), (5) N 2007 EURASIP 1641

4 k : x (k ) = x (2) x (4) x (5) x (7) p (0) p (2) (4) p p(5) p (7) p (1) p (3) p (6) p (8) x (2) x (4) x (5) x (5) x (5) x (7) x (7) x (7) Verices Raserize Fragmens Figure 4: Paricle selecion on he GPU. The verices p, cumulaive weighs snapped o an equidisan grid, define a line where every segmen represens a paricle. Some verices may coincide, resuling in line segmens of zero lengh. The raserizer creaes paricles x according o he lengh of he corresponding line segmens. where U (0,1) is a uniform disribuion beween 0 and 1. Boh mehods produce ordered uniform random numbers which have exacly one number in every inerval of lengh N 1, reducing he number of u (k) o be compared o c (i) o a single one. This is he key propery enabling a parallel implemenaion. Uilizing he raserizaion funcionaliy of he graphics pipeline, he selecion of paricles can be implemened in a single render pass: calculae verices p (i) by assigning he cumulaive weighs c (i) o an equidisan grid depending on he uniform random numbers u (i). Tha is, { p (i) Nc = (i), if Nc (i) Nc (i) < u ( Nc(i) ), Nc (i) (6) + 1, oherwise, where x is he floor operaion. Drawing a line connecing he verices p (i) and associaing a paricle o every line segmen, he raserizaion process creaes he resampled se of paricles according o he lengh of each segmen. This procedure is illusraed wih an example in Figure 4 based upon he daa in Figure 3. The compuaional complexiy of his is O(1) wih N parallel processors, as he verex posiions can be calculaed independenly. Unforunaely, he curren generaion of GPUs has a maximal exure size limiing he number of paricles ha can be resampled as a single uni. To solve his, muliple subses of paricles are simulaneously being resampled and hen redisribued ino differen ses, similarly o wha is described in [21]. This modificaion of he resampling sep does no seem o significanly affec he performance of he paricle filer as a whole. 4.5 Complexiy Consideraions From he descripions of he differen seps of he PF algorihms i is clear ha he resampling sep is he boleneck ha gives he ime complexiy of he algorihm, O(log N) compared o O(N) for a sequenial algorihm. The analysis of he algorihm complexiy above assumes ha here are as many parallel processors as here are paricles in he paricle filer, i.e., N parallel elemens. Today his is a bi oo opimisic, a modern GPU has an order of en parallel pipelines, hence much less han he ypical number of paricles. However, he number of parallel unis is consanly increasing so he degree of parallelizaion is improving. Especially he cumulaive sum suffers from a low degree of parallelizaion. Wih full parallelizaion he ime complexiy of he operaion is O(log N) whereas he sequenial Table 1: Hardware used for he evaluaion. GPU Model: NVIDIA GeFORCE 7900 GTX Driver: NVIDIA Bus: PCI Express, 14.4 GB/s Clock speed: 650 MHz Processors: 8/24 (verex/fragmen) CPU Model: Inel Xeon 5130 Clock speed: 2.0 GHz Memory: 2.0 GB Operaing Sysem: CenOS 4.4 (Linux) algorihms is O(N), however he parallel implemenaion uses O(N logn) operaions in oal. As a resul, wih few pipelines and many paricles he parallel implemenaion will be slower han he sequenial one. However, as he degree of parallelizaion increases his will be less and less imporan. 5. FILTER EVALUATION To evaluae he designed PF on he GPU wo PF have been implemened; one sandard PF running on he CPU and one implemened as described in Secion 4 running on he GPU. (The code for boh implemenaions is wrien in C++ and compiled using gcc ) The filers were hen used o filer daa from a consan velociy racking model, measured wih wo disance measuring sensors. The esimaes obained were very similar wih only small differences ha can be explained by he differen resampling mehod (one, or muliple ses) and he presence of round off errors. This shows ha he GPU implemenaion does work, and ha he modificaion of he resampling sep is accepable. The hardware is presened in Table 1. Noe ha here are 8 parallel pipelines in which he paricle selecion and redisribuion is conduced and ha he res of he seps in he PF algorihm is performed in 24 pipelines, i.e., N number of pipelines. To sudy he ime complexiy of he PF, simulaions wih 1000 ime seps were run wih differen numbers of paricles. The ime spen in he paricle filers was recorded, excluding he generaion of he random numbers which was he same for boh filer implemenaions. The resuls can be found in Figure 5. The maximum number of paricles (10 6 ) may seem raher large for curren applicaions, however, i helps o show he rend in compuaion ime and o show ha i is possible o use his many paricles. This makes i possible o work wih large sae dimensions and open up for PFs in new applicaion areas. Some observaions should be made: for few paricles he overhead from iniializing and using he GPU is large and hence he CPU implemenaion is he fases. The CPU complexiy follows a linear rend, whereas a firs he GPU ime hardly increases when using more paricles; parallelizaion pays off. For even more paricles here are no enough parallel processing unis available and he complexiy becomes linear, bu he GPU implemenaion is sill faser han he CPU. Noe ha he paricle selecion is performed on 8 processors and he oher seps on 24, see Table 1, and ha hence he degree of parallelizaion is no very high for many paricles. A furher analysis of he ime spen in he GPU implemenaion shows in wha par of he algorihm mos of he ime is spen. Figure 6, shows ha mos of he ime is spen in he resampling sep, and ha he porion of ime spen here 2007 EURASIP 1642

5 Time [ms] CPU GPU Number of paricles, N Figure 5: Time comparison beween CPU and GPU implemenaion. The number of paricles is large o show ha he calculaion is racable, and o show he effec of he parallelizaion. Noe he log-log scale. Relaive Time resampling ime updae measuremen updae Number of paricles, N Figure 6: Relaive ime spen in differen pars of GPU implemenaion. increases wih more paricles. This is quie naural since his sep is he leas parallel in is naure and requires muliple passes. Hence, opimizaion effors should be direced ino his par of he algorihm. 6. CONCLUSIONS In his paper, he firs complee parallel general paricle filer implemenaion in lieraure on a GPU is described. Using simulaions, he parallel GPU implemenaion is shown o ouperform a CPU implemenaion on compuaion speed for many paricles while mainaining he same filer qualiy. The echniques and soluions used in deriving he implemenaion can also be used o implemen paricle filers on oher similar parallel archiecures. References [1] GPGPU programming web-sie, 2006, hp:// [2] M. Pharr, Ed., GPU Gems 2. Programming Techniques for High-Performance Graphics and General-Purpose Compuaion, Addison-Wesley, [3] M. D. McCool, Signal processing and general-purpose compuing on GPUs, IEEE Signal Process. Mag., vol. 24, no. 3, pp , May [4] A. Douce, N. de Freias, and N. Gordon, Eds., Sequenial Mone Carlo Mehods in Pracice, Saisics for Engineering and Informaion Science. Springer-Verlag, New York, [5] N. J. Gordon, D. J. Salmond, and A. F. M. Smih, Novel approach o nonlinear/non-gaussian Bayesian sae esimaion, IEE Proc.-F, vol. 140, no. 2, pp , Apr [6] B. Risic, S. Arulampalam, and N. Gordon, Beyond he Kalman Filer: Paricle Filers for Tracking Applicaions, Arech House, Inc, [7] S. Maskell, B. Alun-Jones, and M. Macleoad, A single insrucion muliple daa paricle filer, in Proc. Nonlinear Saisical Signal Processing Workshop, Cambridge, UK, Sep [8] A. S. Monemayor, J. J. Panrigo, A. Sánchez, and F. Fernández, Paricle filer on GPUs for real ime racking, in Proc. SIGGRAPH, Los Angeles, CA, USA, Aug [9] A. S. Monemayor, J. J. Panrigo, R. Cabido, B. R. Payne, Á. Sánchez, and F. Fernáandez, Improving GPU paricle filer wih shader model 3.0 fir visual racking, in Proc. SIGGRAPH, Boson, MA, USA, Aug [10] NVIDIA developer web-sie, 2006, hp:// developer.nvidia.com. [11] D. Shreiner, M. Woo, J. Neider, and T. Davis, OpenGL Programming Language. The official guide o learning OpenGL, Version 2, Addison-Wesley, 5 ediion, [12] R. J. Ros, OpenGL Shading Language, Addison- Wesley, 2 ediion, [13] R. E. Kalman, A new approach o linear filering and predicion problems, Trans. ASME, vol. 82, no. Series D, pp , Mar [14] T. Kailah, A. H. Sayed, and B. Hassibi, Linear Esimaion, Prenice-Hall, Inc, [15] A. H. Jazwinski, Sochasic Processes and Filering Theory, vol. 64 of Mahemaics in Science and Engineering, Academic Press, Inc, [16] C. J. K. Tan, The PLFG parallel pseud-random number generaor, Fuure Generaion Compuer Sysems, vol. 18, pp , [17] A. De Maeis and S. Pagnui, Parallelizaion of random number generaors and long-range correlaion, Numer. Mah., vol. 53, no. 5, pp , [18] M. Sussman, W. Cruchfield, and M. Papakipos, Pseudorandom number generaion on he GPU, in Graphics Hardware. Eurographics Symp. Proc, Vienna, Ausria, Aug. 2006, pp [19] G. Kiagawa, Mone Carlo filer and smooher for nongaussian nonlinear sae space models, J. Compu. and Graphical Sa., vol. 5, no. 1, pp. 1 25, Mar [20] J. D. Hol, T. B. Schön, and F. Gusafsson, On resampling algorihms for paricle filers, in Proc. Nonlinear Saisical Signal Processing Workshop, Cambridge, UK, Sep [21] M. Bolić, P. M. Djurić, and S. Hong, Resampling algorihms and archiecures for disribued paricle filers, IEEE Trans. Signal Process., vol. 53, no. 7, pp , July EURASIP 1643

A GRAPHICS PROCESSING UNIT IMPLEMENTATION OF THE PARTICLE FILTER

A GRAPHICS PROCESSING UNIT IMPLEMENTATION OF THE PARTICLE FILTER A GRAPHICS PROCESSING UNIT IMPLEMENTATION OF THE PARTICLE FILTER ABSTRACT Modern graphics cards for compuers, and especially heir graphics processing unis (GPUs), are designed for fas rendering of graphics.

More information

Research Article Particle Filtering: The Need for Speed

Research Article Particle Filtering: The Need for Speed Hindawi Publishing Corporaion EURASIP Journal on Advances in Signal Processing Volume 2010, Aricle ID 181403, 9 pages doi:10.1155/2010/181403 Research Aricle Paricle Filering: The Need for Speed Gusaf

More information

Implementing Ray Casting in Tetrahedral Meshes with Programmable Graphics Hardware (Technical Report)

Implementing Ray Casting in Tetrahedral Meshes with Programmable Graphics Hardware (Technical Report) Implemening Ray Casing in Terahedral Meshes wih Programmable Graphics Hardware (Technical Repor) Marin Kraus, Thomas Erl March 28, 2002 1 Inroducion Alhough cell-projecion, e.g., [3, 2], and resampling,

More information

Learning in Games via Opponent Strategy Estimation and Policy Search

Learning in Games via Opponent Strategy Estimation and Policy Search Learning in Games via Opponen Sraegy Esimaion and Policy Search Yavar Naddaf Deparmen of Compuer Science Universiy of Briish Columbia Vancouver, BC yavar@naddaf.name Nando de Freias (Supervisor) Deparmen

More information

An Adaptive Spatial Depth Filter for 3D Rendering IP

An Adaptive Spatial Depth Filter for 3D Rendering IP JOURNAL OF SEMICONDUCTOR TECHNOLOGY AND SCIENCE, VOL.3, NO. 4, DECEMBER, 23 175 An Adapive Spaial Deph Filer for 3D Rendering IP Chang-Hyo Yu and Lee-Sup Kim Absrac In his paper, we presen a new mehod

More information

MORPHOLOGICAL SEGMENTATION OF IMAGE SEQUENCES

MORPHOLOGICAL SEGMENTATION OF IMAGE SEQUENCES MORPHOLOGICAL SEGMENTATION OF IMAGE SEQUENCES B. MARCOTEGUI and F. MEYER Ecole des Mines de Paris, Cenre de Morphologie Mahémaique, 35, rue Sain-Honoré, F 77305 Fonainebleau Cedex, France Absrac. In image

More information

Image segmentation. Motivation. Objective. Definitions. A classification of segmentation techniques. Assumptions for thresholding

Image segmentation. Motivation. Objective. Definitions. A classification of segmentation techniques. Assumptions for thresholding Moivaion Image segmenaion Which pixels belong o he same objec in an image/video sequence? (spaial segmenaion) Which frames belong o he same video sho? (emporal segmenaion) Which frames belong o he same

More information

Visual Indoor Localization with a Floor-Plan Map

Visual Indoor Localization with a Floor-Plan Map Visual Indoor Localizaion wih a Floor-Plan Map Hang Chu Dep. of ECE Cornell Universiy Ihaca, NY 14850 hc772@cornell.edu Absrac In his repor, a indoor localizaion mehod is presened. The mehod akes firsperson

More information

Sam knows that his MP3 player has 40% of its battery life left and that the battery charges by an additional 12 percentage points every 15 minutes.

Sam knows that his MP3 player has 40% of its battery life left and that the battery charges by an additional 12 percentage points every 15 minutes. 8.F Baery Charging Task Sam wans o ake his MP3 player and his video game player on a car rip. An hour before hey plan o leave, he realized ha he forgo o charge he baeries las nigh. A ha poin, he plugged

More information

A Matching Algorithm for Content-Based Image Retrieval

A Matching Algorithm for Content-Based Image Retrieval A Maching Algorihm for Conen-Based Image Rerieval Sue J. Cho Deparmen of Compuer Science Seoul Naional Universiy Seoul, Korea Absrac Conen-based image rerieval sysem rerieves an image from a daabase using

More information

Visual Perception as Bayesian Inference. David J Fleet. University of Toronto

Visual Perception as Bayesian Inference. David J Fleet. University of Toronto Visual Percepion as Bayesian Inference David J Flee Universiy of Torono Basic rules of probabiliy sum rule (for muually exclusive a ): produc rule (condiioning): independence (def n ): Bayes rule: marginalizaion:

More information

Scheduling. Scheduling. EDA421/DIT171 - Parallel and Distributed Real-Time Systems, Chalmers/GU, 2011/2012 Lecture #4 Updated March 16, 2012

Scheduling. Scheduling. EDA421/DIT171 - Parallel and Distributed Real-Time Systems, Chalmers/GU, 2011/2012 Lecture #4 Updated March 16, 2012 EDA421/DIT171 - Parallel and Disribued Real-Time Sysems, Chalmers/GU, 2011/2012 Lecure #4 Updaed March 16, 2012 Aemps o mee applicaion consrains should be done in a proacive way hrough scheduling. Schedule

More information

PART 1 REFERENCE INFORMATION CONTROL DATA 6400 SYSTEMS CENTRAL PROCESSOR MONITOR

PART 1 REFERENCE INFORMATION CONTROL DATA 6400 SYSTEMS CENTRAL PROCESSOR MONITOR . ~ PART 1 c 0 \,).,,.,, REFERENCE NFORMATON CONTROL DATA 6400 SYSTEMS CENTRAL PROCESSOR MONTOR n CONTROL DATA 6400 Compuer Sysems, sysem funcions are normally handled by he Monior locaed in a Peripheral

More information

FIELD PROGRAMMABLE GATE ARRAY (FPGA) AS A NEW APPROACH TO IMPLEMENT THE CHAOTIC GENERATORS

FIELD PROGRAMMABLE GATE ARRAY (FPGA) AS A NEW APPROACH TO IMPLEMENT THE CHAOTIC GENERATORS FIELD PROGRAMMABLE GATE ARRAY (FPGA) AS A NEW APPROACH TO IMPLEMENT THE CHAOTIC GENERATORS Mohammed A. Aseeri and M. I. Sobhy Deparmen of Elecronics, The Universiy of Ken a Canerbury Canerbury, Ken, CT2

More information

STEREO PLANE MATCHING TECHNIQUE

STEREO PLANE MATCHING TECHNIQUE STEREO PLANE MATCHING TECHNIQUE Commission III KEY WORDS: Sereo Maching, Surface Modeling, Projecive Transformaion, Homography ABSTRACT: This paper presens a new ype of sereo maching algorihm called Sereo

More information

Real-time 2D Video/3D LiDAR Registration

Real-time 2D Video/3D LiDAR Registration Real-ime 2D Video/3D LiDAR Regisraion C. Bodenseiner Fraunhofer IOSB chrisoph.bodenseiner@iosb.fraunhofer.de M. Arens Fraunhofer IOSB michael.arens@iosb.fraunhofer.de Absrac Progress in LiDAR scanning

More information

Effects needed for Realism. Ray Tracing. Ray Tracing: History. Outline. Foundations of Computer Graphics (Fall 2012)

Effects needed for Realism. Ray Tracing. Ray Tracing: History. Outline. Foundations of Computer Graphics (Fall 2012) Foundaions of ompuer Graphics (Fall 2012) S 184, Lecure 16: Ray Tracing hp://ins.eecs.berkeley.edu/~cs184 Effecs needed for Realism (Sof) Shadows Reflecions (Mirrors and Glossy) Transparency (Waer, Glass)

More information

Computer representations of piecewise

Computer representations of piecewise Edior: Gabriel Taubin Inroducion o Geomeric Processing hrough Opimizaion Gabriel Taubin Brown Universiy Compuer represenaions o piecewise smooh suraces have become vial echnologies in areas ranging rom

More information

Spline Curves. Color Interpolation. Normal Interpolation. Last Time? Today. glshademodel (GL_SMOOTH); Adjacency Data Structures. Mesh Simplification

Spline Curves. Color Interpolation. Normal Interpolation. Last Time? Today. glshademodel (GL_SMOOTH); Adjacency Data Structures. Mesh Simplification Las Time? Adjacency Daa Srucures Spline Curves Geomeric & opologic informaion Dynamic allocaion Efficiency of access Mesh Simplificaion edge collapse/verex spli geomorphs progressive ransmission view-dependen

More information

Low-Cost WLAN based. Dr. Christian Hoene. Computer Science Department, University of Tübingen, Germany

Low-Cost WLAN based. Dr. Christian Hoene. Computer Science Department, University of Tübingen, Germany Low-Cos WLAN based Time-of-fligh fligh Trilaeraion Precision Indoor Personnel Locaion and Tracking for Emergency Responders Third Annual Technology Workshop, Augus 5, 2008 Worceser Polyechnic Insiue, Worceser,

More information

IROS 2015 Workshop on On-line decision-making in multi-robot coordination (DEMUR 15)

IROS 2015 Workshop on On-line decision-making in multi-robot coordination (DEMUR 15) IROS 2015 Workshop on On-line decision-making in muli-robo coordinaion () OPTIMIZATION-BASED COOPERATIVE MULTI-ROBOT TARGET TRACKING WITH REASONING ABOUT OCCLUSIONS KAROL HAUSMAN a,, GREGORY KAHN b, SACHIN

More information

M(t)/M/1 Queueing System with Sinusoidal Arrival Rate

M(t)/M/1 Queueing System with Sinusoidal Arrival Rate 20 TUTA/IOE/PCU Journal of he Insiue of Engineering, 205, (): 20-27 TUTA/IOE/PCU Prined in Nepal M()/M/ Queueing Sysem wih Sinusoidal Arrival Rae A.P. Pan, R.P. Ghimire 2 Deparmen of Mahemaics, Tri-Chandra

More information

mulatio on Usingg GLLSL, Ope

mulatio on Usingg GLLSL, Ope 22 2 GP PGPU Clloh Sim mulaio on Usingg GLLSL, Ope encl, and CUD DA Marrco Fraarcaangeli Taiu us Sofware Ialia I 22.1 Inroducion n Thiss chaper prov vides a comp parison sudyy beween hrree popular pplaforms

More information

Upper Body Tracking for Human-Machine Interaction with a Moving Camera

Upper Body Tracking for Human-Machine Interaction with a Moving Camera The 2009 IEEE/RSJ Inernaional Conference on Inelligen Robos and Sysems Ocober -5, 2009 S. Louis, USA Upper Body Tracking for Human-Machine Ineracion wih a Moving Camera Yi-Ru Chen, Cheng-Ming Huang, and

More information

Design Alternatives for a Thin Lens Spatial Integrator Array

Design Alternatives for a Thin Lens Spatial Integrator Array Egyp. J. Solids, Vol. (7), No. (), (004) 75 Design Alernaives for a Thin Lens Spaial Inegraor Array Hala Kamal *, Daniel V azquez and Javier Alda and E. Bernabeu Opics Deparmen. Universiy Compluense of

More information

Mobile Robots Mapping

Mobile Robots Mapping Mobile Robos Mapping 1 Roboics is Easy conrol behavior percepion modelling domain model environmen model informaion exracion raw daa planning ask cogniion reasoning pah planning navigaion pah execuion

More information

Parallel and Distributed Systems for Constructive Neural Network Learning*

Parallel and Distributed Systems for Constructive Neural Network Learning* Parallel and Disribued Sysems for Consrucive Neural Nework Learning* J. Flecher Z. Obradovi School of Elecrical Engineering and Compuer Science Washingon Sae Universiy Pullman WA 99164-2752 Absrac A consrucive

More information

Rao-Blackwellized Particle Filtering for Probing-Based 6-DOF Localization in Robotic Assembly

Rao-Blackwellized Particle Filtering for Probing-Based 6-DOF Localization in Robotic Assembly MITSUBISHI ELECTRIC RESEARCH LABORATORIES hp://www.merl.com Rao-Blackwellized Paricle Filering for Probing-Based 6-DOF Localizaion in Roboic Assembly Yuichi Taguchi, Tim Marks, Haruhisa Okuda TR1-8 June

More information

A Fast Stereo-Based Multi-Person Tracking using an Approximated Likelihood Map for Overlapping Silhouette Templates

A Fast Stereo-Based Multi-Person Tracking using an Approximated Likelihood Map for Overlapping Silhouette Templates A Fas Sereo-Based Muli-Person Tracking using an Approximaed Likelihood Map for Overlapping Silhouee Templaes Junji Saake Jun Miura Deparmen of Compuer Science and Engineering Toyohashi Universiy of Technology

More information

STRING DESCRIPTIONS OF DATA FOR DISPLAY*

STRING DESCRIPTIONS OF DATA FOR DISPLAY* SLAC-PUB-383 January 1968 STRING DESCRIPTIONS OF DATA FOR DISPLAY* J. E. George and W. F. Miller Compuer Science Deparmen and Sanford Linear Acceleraor Cener Sanford Universiy Sanford, California Absrac

More information

EECS 487: Interactive Computer Graphics

EECS 487: Interactive Computer Graphics EECS 487: Ineracive Compuer Graphics Lecure 7: B-splines curves Raional Bézier and NURBS Cubic Splines A represenaion of cubic spline consiss of: four conrol poins (why four?) hese are compleely user specified

More information

MOTION DETECTORS GRAPH MATCHING LAB PRE-LAB QUESTIONS

MOTION DETECTORS GRAPH MATCHING LAB PRE-LAB QUESTIONS NME: TE: LOK: MOTION ETETORS GRPH MTHING L PRE-L QUESTIONS 1. Read he insrucions, and answer he following quesions. Make sure you resae he quesion so I don hae o read he quesion o undersand he answer..

More information

Motion Level-of-Detail: A Simplification Method on Crowd Scene

Motion Level-of-Detail: A Simplification Method on Crowd Scene Moion Level-of-Deail: A Simplificaion Mehod on Crowd Scene Absrac Junghyun Ahn VR lab, EECS, KAIST ChocChoggi@vr.kais.ac.kr hp://vr.kais.ac.kr/~zhaoyue Recen echnological improvemen in characer animaion

More information

COSC 3213: Computer Networks I Chapter 6 Handout # 7

COSC 3213: Computer Networks I Chapter 6 Handout # 7 COSC 3213: Compuer Neworks I Chaper 6 Handou # 7 Insrucor: Dr. Marvin Mandelbaum Deparmen of Compuer Science York Universiy F05 Secion A Medium Access Conrol (MAC) Topics: 1. Muliple Access Communicaions:

More information

Optimal Crane Scheduling

Optimal Crane Scheduling Opimal Crane Scheduling Samid Hoda, John Hooker Laife Genc Kaya, Ben Peerson Carnegie Mellon Universiy Iiro Harjunkoski ABB Corporae Research EWO - 13 November 2007 1/16 Problem Track-mouned cranes move

More information

CAMERA CALIBRATION BY REGISTRATION STEREO RECONSTRUCTION TO 3D MODEL

CAMERA CALIBRATION BY REGISTRATION STEREO RECONSTRUCTION TO 3D MODEL CAMERA CALIBRATION BY REGISTRATION STEREO RECONSTRUCTION TO 3D MODEL Klečka Jan Docoral Degree Programme (1), FEEC BUT E-mail: xkleck01@sud.feec.vubr.cz Supervised by: Horák Karel E-mail: horak@feec.vubr.cz

More information

MATH Differential Equations September 15, 2008 Project 1, Fall 2008 Due: September 24, 2008

MATH Differential Equations September 15, 2008 Project 1, Fall 2008 Due: September 24, 2008 MATH 5 - Differenial Equaions Sepember 15, 8 Projec 1, Fall 8 Due: Sepember 4, 8 Lab 1.3 - Logisics Populaion Models wih Harvesing For his projec we consider lab 1.3 of Differenial Equaions pages 146 o

More information

Lecture 18: Mix net Voting Systems

Lecture 18: Mix net Voting Systems 6.897: Advanced Topics in Crypography Apr 9, 2004 Lecure 18: Mix ne Voing Sysems Scribed by: Yael Tauman Kalai 1 Inroducion In he previous lecure, we defined he noion of an elecronic voing sysem, and specified

More information

Evaluation and Improvement of Region-based Motion Segmentation

Evaluation and Improvement of Region-based Motion Segmentation Evaluaion and Improvemen of Region-based Moion Segmenaion Mark Ross Universiy Koblenz-Landau, Insiue of Compuaional Visualisics, Universiässraße 1, 56070 Koblenz, Germany Email: ross@uni-koblenz.de Absrac

More information

Real Time Integral-Based Structural Health Monitoring

Real Time Integral-Based Structural Health Monitoring Real Time Inegral-Based Srucural Healh Monioring The nd Inernaional Conference on Sensing Technology ICST 7 J. G. Chase, I. Singh-Leve, C. E. Hann, X. Chen Deparmen of Mechanical Engineering, Universiy

More information

Algorithm for image reconstruction in multi-slice helical CT

Algorithm for image reconstruction in multi-slice helical CT Algorihm for image reconsrucion in muli-slice helical CT Kasuyuki Taguchi a) and Hiroshi Aradae Medical Engineering Laboraory, Toshiba Corporaion, 1385 Shimoishigami, Oawara, Tochigi 324-855, Japan Received

More information

The Impact of Product Development on the Lifecycle of Defects

The Impact of Product Development on the Lifecycle of Defects The Impac of Produc Developmen on he Lifecycle of Rudolf Ramler Sofware Compeence Cener Hagenberg Sofware Park 21 A-4232 Hagenberg, Ausria +43 7236 3343 872 rudolf.ramler@scch.a ABSTRACT This paper invesigaes

More information

A time-space consistency solution for hardware-in-the-loop simulation system

A time-space consistency solution for hardware-in-the-loop simulation system Inernaional Conference on Advanced Elecronic Science and Technology (AEST 206) A ime-space consisency soluion for hardware-in-he-loop simulaion sysem Zexin Jiang a Elecric Power Research Insiue of Guangdong

More information

Nonparametric CUSUM Charts for Process Variability

Nonparametric CUSUM Charts for Process Variability Journal of Academia and Indusrial Research (JAIR) Volume 3, Issue June 4 53 REEARCH ARTICLE IN: 78-53 Nonparameric CUUM Chars for Process Variabiliy D.M. Zombade and V.B. Ghue * Dep. of aisics, Walchand

More information

4. Minimax and planning problems

4. Minimax and planning problems CS/ECE/ISyE 524 Inroducion o Opimizaion Spring 2017 18 4. Minima and planning problems ˆ Opimizing piecewise linear funcions ˆ Minima problems ˆ Eample: Chebyshev cener ˆ Muli-period planning problems

More information

LOW-VELOCITY IMPACT LOCALIZATION OF THE COMPOSITE TUBE USING A NORMALIZED CROSS-CORRELATION METHOD

LOW-VELOCITY IMPACT LOCALIZATION OF THE COMPOSITE TUBE USING A NORMALIZED CROSS-CORRELATION METHOD 21 s Inernaional Conference on Composie Maerials Xi an, 20-25 h Augus 2017 LOW-VELOCITY IMPACT LOCALIZATION OF THE COMPOSITE TUBE USING A NORMALIZED CROSS-CORRELATION METHOD Hyunseok Kwon 1, Yurim Park

More information

Y. Tsiatouhas. VLSI Systems and Computer Architecture Lab

Y. Tsiatouhas. VLSI Systems and Computer Architecture Lab CMOS INEGRAED CIRCUI DESIGN ECHNIQUES Universiy of Ioannina Clocking Schemes Dep. of Compuer Science and Engineering Y. siaouhas CMOS Inegraed Circui Design echniques Overview 1. Jier Skew hroughpu Laency

More information

Analysis of Various Types of Bugs in the Object Oriented Java Script Language Coding

Analysis of Various Types of Bugs in the Object Oriented Java Script Language Coding Indian Journal of Science and Technology, Vol 8(21), DOI: 10.17485/ijs/2015/v8i21/69958, Sepember 2015 ISSN (Prin) : 0974-6846 ISSN (Online) : 0974-5645 Analysis of Various Types of Bugs in he Objec Oriened

More information

NRMI: Natural and Efficient Middleware

NRMI: Natural and Efficient Middleware NRMI: Naural and Efficien Middleware Eli Tilevich and Yannis Smaragdakis Cener for Experimenal Research in Compuer Sysems (CERCS), College of Compuing, Georgia Tech {ilevich, yannis}@cc.gaech.edu Absrac

More information

Improved TLD Algorithm for Face Tracking

Improved TLD Algorithm for Face Tracking Absrac Improved TLD Algorihm for Face Tracking Huimin Li a, Chaojing Yu b and Jing Chen c Chongqing Universiy of Poss and Telecommunicaions, Chongqing 400065, China a li.huimin666@163.com, b 15023299065@163.com,

More information

Simultaneous Localization and Mapping with Stereo Vision

Simultaneous Localization and Mapping with Stereo Vision Simulaneous Localizaion and Mapping wih Sereo Vision Mahew N. Dailey Compuer Science and Informaion Managemen Asian Insiue of Technology Pahumhani, Thailand Email: mdailey@ai.ac.h Manukid Parnichkun Mecharonics

More information

Reinforcement Learning by Policy Improvement. Making Use of Experiences of The Other Tasks. Hajime Kimura and Shigenobu Kobayashi

Reinforcement Learning by Policy Improvement. Making Use of Experiences of The Other Tasks. Hajime Kimura and Shigenobu Kobayashi Reinforcemen Learning by Policy Improvemen Making Use of Experiences of The Oher Tasks Hajime Kimura and Shigenobu Kobayashi Tokyo Insiue of Technology, JAPAN genfe.dis.iech.ac.jp, kobayasidis.iech.ac.jp

More information

CS 152 Computer Architecture and Engineering. Lecture 6 - Memory

CS 152 Computer Architecture and Engineering. Lecture 6 - Memory CS 152 Compuer Archiecure and Engineering Lecure 6 - Memory Krse Asanovic Elecrical Engineering and Compuer Sciences Universiy of California a Berkeley hp://www.eecs.berkeley.edu/~krse hp://ins.eecs.berkeley.edu/~cs152

More information

Michiel Helder and Marielle C.T.A Geurts. Hoofdkantoor PTT Post / Dutch Postal Services Headquarters

Michiel Helder and Marielle C.T.A Geurts. Hoofdkantoor PTT Post / Dutch Postal Services Headquarters SHORT TERM PREDICTIONS A MONITORING SYSTEM by Michiel Helder and Marielle C.T.A Geurs Hoofdkanoor PTT Pos / Duch Posal Services Headquarers Keywords macro ime series shor erm predicions ARIMA-models faciliy

More information

An Efficient Delivery Scheme for Coded Caching

An Efficient Delivery Scheme for Coded Caching 201 27h Inernaional Teleraffic Congress An Efficien Delivery Scheme for Coded Caching Abinesh Ramakrishnan, Cedric Wesphal and Ahina Markopoulou Deparmen of Elecrical Engineering and Compuer Science, Universiy

More information

Web System for the Remote Control and Execution of an IEC Application

Web System for the Remote Control and Execution of an IEC Application Web Sysem for he Remoe Conrol and Execuion of an IEC 61499 Applicaion Oana ROHAT, Dan POPESCU Faculy of Auomaion and Compuer Science, Poliehnica Universiy, Splaiul Independenței 313, Bucureși, 060042,

More information

Chapter 8 LOCATION SERVICES

Chapter 8 LOCATION SERVICES Disribued Compuing Group Chaper 8 LOCATION SERVICES Mobile Compuing Winer 2005 / 2006 Overview Mobile IP Moivaion Daa ransfer Encapsulaion Locaion Services & Rouing Classificaion of locaion services Home

More information

Shortest Path Algorithms. Lecture I: Shortest Path Algorithms. Example. Graphs and Matrices. Setting: Dr Kieran T. Herley.

Shortest Path Algorithms. Lecture I: Shortest Path Algorithms. Example. Graphs and Matrices. Setting: Dr Kieran T. Herley. Shores Pah Algorihms Background Seing: Lecure I: Shores Pah Algorihms Dr Kieran T. Herle Deparmen of Compuer Science Universi College Cork Ocober 201 direced graph, real edge weighs Le he lengh of a pah

More information

Improving the Efficiency of Dynamic Service Provisioning in Transport Networks with Scheduled Services

Improving the Efficiency of Dynamic Service Provisioning in Transport Networks with Scheduled Services Improving he Efficiency of Dynamic Service Provisioning in Transpor Neworks wih Scheduled Services Ralf Hülsermann, Monika Jäger and Andreas Gladisch Technologiezenrum, T-Sysems, Goslarer Ufer 35, D-1585

More information

Curves & Surfaces. Last Time? Today. Readings for Today (pick one) Limitations of Polygonal Meshes. Today. Adjacency Data Structures

Curves & Surfaces. Last Time? Today. Readings for Today (pick one) Limitations of Polygonal Meshes. Today. Adjacency Data Structures Las Time? Adjacency Daa Srucures Geomeric & opologic informaion Dynamic allocaion Efficiency of access Curves & Surfaces Mesh Simplificaion edge collapse/verex spli geomorphs progressive ransmission view-dependen

More information

Less Pessimistic Worst-Case Delay Analysis for Packet-Switched Networks

Less Pessimistic Worst-Case Delay Analysis for Packet-Switched Networks Less Pessimisic Wors-Case Delay Analysis for Packe-Swiched Neworks Maias Wecksén Cenre for Research on Embedded Sysems P O Box 823 SE-31 18 Halmsad maias.wecksen@hh.se Magnus Jonsson Cenre for Research

More information

IEEE TRANSACTIONS ON SYSTEMS, MAN, AND CYBERNETICS PART A: SYSTEMS AND HUMANS 1

IEEE TRANSACTIONS ON SYSTEMS, MAN, AND CYBERNETICS PART A: SYSTEMS AND HUMANS 1 TRANSACTIONS ON SYSTEMS, MAN, AND CYBERNETICS PART A: SYSTEMS AND HUMANS 1 Adapive Appearance Model and Condensaion Algorihm for Robus Face Tracking Yui Man Lui, Suden Member,, J. Ross Beveridge, Member,,

More information

CS 152 Computer Architecture and Engineering. Lecture 7 - Memory Hierarchy-II

CS 152 Computer Architecture and Engineering. Lecture 7 - Memory Hierarchy-II CS 152 Compuer Archiecure and Engineering Lecure 7 - Memory Hierarchy-II Krse Asanovic Elecrical Engineering and Compuer Sciences Universiy of California a Berkeley hp://www.eecs.berkeley.edu/~krse hp://ins.eecs.berkeley.edu/~cs152

More information

MOTION TRACKING is a fundamental capability that

MOTION TRACKING is a fundamental capability that TECHNICAL REPORT CRES-05-008, CENTER FOR ROBOTICS AND EMBEDDED SYSTEMS, UNIVERSITY OF SOUTHERN CALIFORNIA 1 Real-ime Moion Tracking from a Mobile Robo Boyoon Jung, Suden Member, IEEE, Gaurav S. Sukhame,

More information

Motor Control. 5. Control. Motor Control. Motor Control

Motor Control. 5. Control. Motor Control. Motor Control 5. Conrol In his chaper we will do: Feedback Conrol On/Off Conroller PID Conroller Moor Conrol Why use conrol a all? Correc or wrong? Supplying a cerain volage / pulsewidh will make he moor spin a a cerain

More information

Outline. EECS Components and Design Techniques for Digital Systems. Lec 06 Using FSMs Review: Typical Controller: state

Outline. EECS Components and Design Techniques for Digital Systems. Lec 06 Using FSMs Review: Typical Controller: state Ouline EECS 5 - Componens and Design Techniques for Digial Sysems Lec 6 Using FSMs 9-3-7 Review FSMs Mapping o FPGAs Typical uses of FSMs Synchronous Seq. Circuis safe composiion Timing FSMs in verilog

More information

Dynamic Route Planning and Obstacle Avoidance Model for Unmanned Aerial Vehicles

Dynamic Route Planning and Obstacle Avoidance Model for Unmanned Aerial Vehicles Volume 116 No. 24 2017, 315-329 ISSN: 1311-8080 (prined version); ISSN: 1314-3395 (on-line version) url: hp://www.ijpam.eu ijpam.eu Dynamic Roue Planning and Obsacle Avoidance Model for Unmanned Aerial

More information

Why not experiment with the system itself? Ways to study a system System. Application areas. Different kinds of systems

Why not experiment with the system itself? Ways to study a system System. Application areas. Different kinds of systems Simulaion Wha is simulaion? Simple synonym: imiaion We are ineresed in sudying a Insead of experimening wih he iself we experimen wih a model of he Experimen wih he Acual Ways o sudy a Sysem Experimen

More information

A Hardware Implementation of the Compact Genetic Algorithm

A Hardware Implementation of the Compact Genetic Algorithm A Hardware Implemenaion of he Compac Geneic Algorihm Chachawi Apornewan Deparmen of Compuer Engineering Faculy of Engineering, Chulalongkorn Universiy Bangkok 0330, Thailand 437043@chula.ac.h Prabhas Chongsivaana

More information

1.4 Application Separable Equations and the Logistic Equation

1.4 Application Separable Equations and the Logistic Equation 1.4 Applicaion Separable Equaions and he Logisic Equaion If a separable differenial equaion is wrien in he form f ( y) dy= g( x) dx, hen is general soluion can be wrien in he form f ( y ) dy = g ( x )

More information

Probabilistic Detection and Tracking of Motion Discontinuities

Probabilistic Detection and Tracking of Motion Discontinuities Probabilisic Deecion and Tracking of Moion Disconinuiies Michael J. Black David J. Flee Xerox Palo Alo Research Cener 3333 Coyoe Hill Road Palo Alo, CA 94304 fblack,fleeg@parc.xerox.com hp://www.parc.xerox.com/fblack,fleeg/

More information

Definition and examples of time series

Definition and examples of time series Definiion and examples of ime series A ime series is a sequence of daa poins being recorded a specific imes. Formally, le,,p be a probabiliy space, and T an index se. A real valued sochasic process is

More information

Quantitative macro models feature an infinite number of periods A more realistic (?) view of time

Quantitative macro models feature an infinite number of periods A more realistic (?) view of time INFINIE-HORIZON CONSUMPION-SAVINGS MODEL SEPEMBER, Inroducion BASICS Quaniaive macro models feaure an infinie number of periods A more realisic (?) view of ime Infinie number of periods A meaphor for many

More information

Rule-Based Multi-Query Optimization

Rule-Based Multi-Query Optimization Rule-Based Muli-Query Opimizaion Mingsheng Hong Dep. of Compuer cience Cornell Universiy mshong@cs.cornell.edu Johannes Gehrke Dep. of Compuer cience Cornell Universiy johannes@cs.cornell.edu Mirek Riedewald

More information

An efficient approach to improve throughput for TCP vegas in ad hoc network

An efficient approach to improve throughput for TCP vegas in ad hoc network Inernaional Research Journal of Engineering and Technology (IRJET) e-issn: 395-0056 Volume: 0 Issue: 03 June-05 www.irje.ne p-issn: 395-007 An efficien approach o improve hroughpu for TCP vegas in ad hoc

More information

Robust Visual Tracking for Multiple Targets

Robust Visual Tracking for Multiple Targets Robus Visual Tracking for Muliple Targes Yizheng Cai, Nando de Freias, and James J. Lile Universiy of Briish Columbia, Vancouver, B.C., Canada, V6T 1Z4 {yizhengc, nando, lile}@cs.ubc.ca Absrac. We address

More information

Improving Occupancy Grid FastSLAM by Integrating Navigation Sensors

Improving Occupancy Grid FastSLAM by Integrating Navigation Sensors Improving Occupancy Grid FasSLAM by Inegraing Navigaion Sensors Chrisopher Weyers Sensors Direcorae Air Force Research Laboraory Wrigh-Paerson AFB, OH 45433 Gilber Peerson Deparmen of Elecrical and Compuer

More information

A non-stationary uniform tension controlled interpolating 4-point scheme reproducing conics

A non-stationary uniform tension controlled interpolating 4-point scheme reproducing conics A non-saionary uniform ension conrolled inerpolaing 4-poin scheme reproducing conics C. Beccari a, G. Casciola b, L. Romani b, a Deparmen of Pure and Applied Mahemaics, Universiy of Padova, Via G. Belzoni

More information

Hidden Markov Model and Chapman Kolmogrov for Protein Structures Prediction from Images

Hidden Markov Model and Chapman Kolmogrov for Protein Structures Prediction from Images Hidden Markov Model and Chapman Kolmogrov for Proein Srucures Predicion from Images Md.Sarwar Kamal 1, Linkon Chowdhury 2, Mohammad Ibrahim Khan 2, Amira S. Ashour 3, João Manuel R.S. Tavares 4, Nilanjan

More information

Audio Engineering Society. Convention Paper. Presented at the 119th Convention 2005 October 7 10 New York, New York USA

Audio Engineering Society. Convention Paper. Presented at the 119th Convention 2005 October 7 10 New York, New York USA Audio Engineering Sociey Convenion Paper Presened a he 119h Convenion 2005 Ocober 7 10 New Yor, New Yor USA This convenion paper has been reproduced from he auhor's advance manuscrip, wihou ediing, correcions,

More information

Network management and QoS provisioning - QoS in Frame Relay. . packet switching with virtual circuit service (virtual circuits are bidirectional);

Network management and QoS provisioning - QoS in Frame Relay. . packet switching with virtual circuit service (virtual circuits are bidirectional); QoS in Frame Relay Frame relay characerisics are:. packe swiching wih virual circui service (virual circuis are bidirecional);. labels are called DLCI (Daa Link Connecion Idenifier);. for connecion is

More information

J. Vis. Commun. Image R.

J. Vis. Commun. Image R. J. Vis. Commun. Image R. 20 (2009) 9 27 Conens liss available a ScienceDirec J. Vis. Commun. Image R. journal homepage: www.elsevier.com/locae/jvci Face deecion and racking using a Boosed Adapive Paricle

More information

AML710 CAD LECTURE 11 SPACE CURVES. Space Curves Intrinsic properties Synthetic curves

AML710 CAD LECTURE 11 SPACE CURVES. Space Curves Intrinsic properties Synthetic curves AML7 CAD LECTURE Space Curves Inrinsic properies Synheic curves A curve which may pass hrough any region of hreedimensional space, as conrased o a plane curve which mus lie on a single plane. Space curves

More information

User Adjustable Process Scheduling Mechanism for a Multiprocessor Embedded System

User Adjustable Process Scheduling Mechanism for a Multiprocessor Embedded System Proceedings of he 6h WSEAS Inernaional Conference on Applied Compuer Science, Tenerife, Canary Islands, Spain, December 16-18, 2006 346 User Adjusable Process Scheduling Mechanism for a Muliprocessor Embedded

More information

Open Access Research on an Improved Medical Image Enhancement Algorithm Based on P-M Model. Luo Aijing 1 and Yin Jin 2,* u = div( c u ) u

Open Access Research on an Improved Medical Image Enhancement Algorithm Based on P-M Model. Luo Aijing 1 and Yin Jin 2,* u = div( c u ) u Send Orders for Reprins o reprins@benhamscience.ae The Open Biomedical Engineering Journal, 5, 9, 9-3 9 Open Access Research on an Improved Medical Image Enhancemen Algorihm Based on P-M Model Luo Aijing

More information

A Formalization of Ray Casting Optimization Techniques

A Formalization of Ray Casting Optimization Techniques A Formalizaion of Ray Casing Opimizaion Techniques J. Revelles, C. Ureña Dp. Lenguajes y Sisemas Informáicos, E.T.S.I. Informáica, Universiy of Granada, Spain e-mail: [jrevelle,almagro]@ugr.es URL: hp://giig.ugr.es

More information

Adaptive Workflow Scheduling on Cloud Computing Platforms with Iterative Ordinal Optimization

Adaptive Workflow Scheduling on Cloud Computing Platforms with Iterative Ordinal Optimization Adapive Workflow Scheduling on Cloud Compuing Plaforms wih Ieraive Ordinal Opimizaion Fan Zhang, Senior Member, IEEE; Junwei Cao, Senior Member, IEEE; Kai Hwang, Fellow, IEEE; Keqin Li, Senior Member,

More information

CENG 477 Introduction to Computer Graphics. Modeling Transformations

CENG 477 Introduction to Computer Graphics. Modeling Transformations CENG 477 Inroducion o Compuer Graphics Modeling Transformaions Modeling Transformaions Model coordinaes o World coordinaes: Model coordinaes: All shapes wih heir local coordinaes and sies. world World

More information

An Improved Square-Root Nyquist Shaping Filter

An Improved Square-Root Nyquist Shaping Filter An Improved Square-Roo Nyquis Shaping Filer fred harris San Diego Sae Universiy fred.harris@sdsu.edu Sridhar Seshagiri San Diego Sae Universiy Seshigar.@engineering.sdsu.edu Chris Dick Xilinx Corp. chris.dick@xilinx.com

More information

A new algorithm for small object tracking based on super-resolution technique

A new algorithm for small object tracking based on super-resolution technique A new algorihm for small objec racking based on super-resoluion echnique Yabunayya Habibi, Dwi Rana Sulisyaningrum, and Budi Seiyono Ciaion: AIP Conference Proceedings 1867, 020024 (2017); doi: 10.1063/1.4994427

More information

Representing Non-Manifold Shapes in Arbitrary Dimensions

Representing Non-Manifold Shapes in Arbitrary Dimensions Represening Non-Manifold Shapes in Arbirary Dimensions Leila De Floriani,2 and Annie Hui 2 DISI, Universiy of Genova, Via Dodecaneso, 35-646 Genova (Ialy). 2 Deparmen of Compuer Science, Universiy of Maryland,

More information

A NEW APPROACH FOR 3D MODELS TRANSMISSION

A NEW APPROACH FOR 3D MODELS TRANSMISSION A NEW APPROACH FOR 3D MODELS TRANSMISSION A. Guarnieri a, F. Piroi a, M. Ponin a, A. Veore a a CIRGEO, Inerdep. Research Cener of Carography, Phoogrammery, Remoe Sensing and GIS Universiy of Padova, Agripolis

More information

Last Time: Curves & Surfaces. Today. Questions? Limitations of Polygonal Meshes. Can We Disguise the Facets?

Last Time: Curves & Surfaces. Today. Questions? Limitations of Polygonal Meshes. Can We Disguise the Facets? Las Time: Curves & Surfaces Expeced value and variance Mone-Carlo in graphics Imporance sampling Sraified sampling Pah Tracing Irradiance Cache Phoon Mapping Quesions? Today Moivaion Limiaions of Polygonal

More information

DETC2004/CIE VOLUME-BASED CUT-AND-PASTE EDITING FOR EARLY DESIGN PHASES

DETC2004/CIE VOLUME-BASED CUT-AND-PASTE EDITING FOR EARLY DESIGN PHASES Proceedings of DETC 04 ASME 004 Design Engineering Technical Conferences and Compuers and Informaion in Engineering Conference Sepember 8-Ocober, 004, Sal Lake Ciy, Uah USA DETC004/CIE-57676 VOLUME-BASED

More information

FACIAL ACTION TRACKING USING PARTICLE FILTERS AND ACTIVE APPEARANCE MODELS. Soumya Hamlaoui & Franck Davoine

FACIAL ACTION TRACKING USING PARTICLE FILTERS AND ACTIVE APPEARANCE MODELS. Soumya Hamlaoui & Franck Davoine FACIAL ACTION TRACKING USING PARTICLE FILTERS AND ACTIVE APPEARANCE MODELS Soumya Hamlaoui & Franck Davoine HEUDIASYC Mixed Research Uni, CNRS / Compiègne Universiy of Technology BP 20529, 60205 Compiègne

More information

A Fast Non-Uniform Knots Placement Method for B-Spline Fitting

A Fast Non-Uniform Knots Placement Method for B-Spline Fitting 2015 IEEE Inernaional Conference on Advanced Inelligen Mecharonics (AIM) July 7-11, 2015. Busan, Korea A Fas Non-Uniform Knos Placemen Mehod for B-Spline Fiing T. Tjahjowidodo, VT. Dung, and ML. Han Absrac

More information

Image Content Representation

Image Content Representation Image Conen Represenaion Represenaion for curves and shapes regions relaionships beween regions E.G.M. Perakis Image Represenaion & Recogniion 1 Reliable Represenaion Uniqueness: mus uniquely specify an

More information

Learning Topological Image Transforms Using Cellular Simultaneous Recurrent Networks

Learning Topological Image Transforms Using Cellular Simultaneous Recurrent Networks Proceedings of Inernaional Join Conference on Neural Neworks Dallas Texas USA Augus 4-9 013 Learning Topological Image Transforms Using Cellular Simulaneous Recurren Neworks J. Keih Anderson Deparmen of

More information

RGB-D Object Tracking: A Particle Filter Approach on GPU

RGB-D Object Tracking: A Particle Filter Approach on GPU RGB-D Objec Tracking: A Paricle Filer Approach on GPU Changhyun Choi and Henrik I. Chrisensen Cener for Roboics & Inelligen Machines College of Compuing Georgia Insiue of Technology Alana, GA 3332, USA

More information

FUZZY HUMAN/MACHINE RELIABILITY USING VHDL

FUZZY HUMAN/MACHINE RELIABILITY USING VHDL FUZZY HUMN/MCHINE RELIBILITY USING VHDL Carlos. Graciós M. 1, lejandro Díaz S. 2, Efrén Gorroiea H. 3 (1) Insiuo Tecnológico de Puebla v. Tecnológico 420. Col. Maravillas, C. P. 72220, Puebla, Pue. México

More information