Developing a Real-Time Person Tracking System Using the TMS320C40 DSP

Size: px
Start display at page:

Download "Developing a Real-Time Person Tracking System Using the TMS320C40 DSP"

Transcription

1 Develoing a Real-Time Person Tracking Sstem Using the TMS30C40 DSP APPLICATION BRIEF: SPRA89 Authors: Ruzo Okada Shina Yamamoto Yasushi Mae Advising Proessor: Yoshiaki Shirai Deartment o Mechanical Engineering or Comuter Controlled Machiner, Osaka Universit Digital Signal Processing Solutions Januar 996

2 IMPORTANT NOTICE Teas Instruments TI reserves the right to make changes to its roducts or to discontinue an semiconductor roduct or service without notice, and advises its customers to obtain the latest version o relevant inormation to veri, beore lacing orders, that the inormation being relied on is current. TI warrants erormance o its semiconductor roducts and related sotware to the seciications alicable at the time o sale in accordance with TI s standard warrant. Testing and other qualit control techniques are utilized to the etent TI deems necessar to suort this warrant. Seciic testing o all arameters o each device is not necessaril erormed, ecet those mandated b government requirements. Certain alication using semiconductor roducts ma involve otential risks o death, ersonal injur, or severe roert or environmental damage Critical Alications. TI SEMICONDUCTOR PRODUCTS ARE NOT DESIGNED, INTENDED, AUTHORIZED, OR WARRANTED TO BE SUITABLE FOR USE IN LIFE-SUPPORT APPLICATIONS, DEVICES OR SYSTEMS OR OTHER CRITICAL APPLICATIONS. Inclusion o TI roducts in such alications is understood to be ull at the risk o the customer. Use o TI roducts in such alications requires the written aroval o an aroriate TI oicer. Questions concerning otential risk alications should be directed to TI through a local SC sales oice. In order to minimize risks associated with the customer s alications, adequate design and oerating saeguards should be rovided b the customer to minimize inherent or rocedural hazards. TI assumes no liabilit or alications assistance, customer roduct design, sotware erormance, or inringement o atents or services described herein. Nor does TI warrant or reresent that an license, either eress or imlied, is granted under an atent right, coright, mask work right, or other intellectual roert right o TI covering or relating to an combination, machine, or rocess in which such semiconductor roducts or services might be or are used. Coright 997, Teas Instruments Incororated

3 TRADEMARKS TI is a trademark o Teas Instruments Incororated. Other brands and names are the roert o their resective owners.

4 CONTACT INFORMATION US TMS30 HOTLINE US TMS30 FAX US TMS30 BBS US TMS30 dsh@ti.com

5 Contents Abstract... 7 World Wide Web... 8 Introduction... 9 Etraction o the Otical Flows... Constraint Equation o Gradient Method... Filtering... Recursive Filtering...3 Satial Filter...3 Temoral Filter...5 Result o Etracting Otical Flows...5 Person Tracking Algorithm...7 Person-Window Prediction...8 Etraction o Velocit and Object Window...8 Determination o Person Window...8 Camera Control...9 Imlementation...0 Hardware Architecture...0 Imlementation o the Algorithm...3 Result o Tracking...5 Summar...6 Reerences...6

6 Figures Figure. Inut Images...6 Figure. Otical Flows...6 Figure 3. Tracking Algorithm...7 Figure 4. Sstem Overview... Figure 5. TMS30C40 DSP Board Block Diagram... Figure 6. Imlementation...4 Figure 7. Tracking Result...5

7 Develoing a Real-Time Person Tracking Sstem Using the TMS30C40 DSP Abstract This alication reort describes the develoment o a real time sstem or tracking a walking erson using a high-seed image rocessor and an active camera head. The image rocessor is comosed o ive digital signal rocessing DSP boards. Each DSP board includes two Teas Instruments TI TMS30C40 DSPs that communicate with each other through the communication orts and erorm various image-rocessing in arallel. The irst three DSP boards calculate lows the velocit ield o an image based on the gradient method. Net, the region o a erson on the image is etracted rom the otical lows using knowledge about the shae o a erson. Finall, the camera head is controlled to kee the erson in the ield o view o the camera. The result is shown or tracking a erson in a cluttered background. This document was an entr in the 995 DSP Solutions Challenge, an annual contest organized b TI to encourage students rom around the world to ind innovative was to use DSPs. For more inormation on the TI DSP Solutions Challenge, see TI s World Wide Web site at Develoing a Real-Time Person Tracking Sstem Using the TMS30C40 DSP 7

8 World Wide Web Our World Wide Web site at contains the most u to date roduct inormation, revisions, and additions. Users registering with TI&ME can build custom inormation ages and receive new roduct udates automaticall via . 8 Develoing a Real-Time Person Tracking Sstem Using the TMS30C40 DSP

9 Introduction Collision avoidance is a ke consideration or eole working with autonomous robots. Comuter vision is an eective tool in collision avoidance because it tracks a erson without requiring hsical contact. Tracking generall takes ecessive time to rocess images because o the enormous amounts o data contained in the images. A camera must be able to turn to kee a erson in its ield o view while the erson moves in the environment. Our objective is to track a walking erson in real time using an active vision sstem with a camera head and high-seed image rocessor. We use otical lows, the velocit ield o an image, to detect a erson in an image. Various methods are available to calculate the otical lows. 3 This alication reort uses the gradient method. 4 5 Two dierent satial ilters are convolved to an inut image to solve the constraint equation o the gradient method. Though the cost o the convolution oeration can be rohibitive, dividing the two-dimensional satial ilters into two one-dimensional recursive ilters can reduce the rocessing. 6 The region o the erson is segmented based on the dierence in velocit between the erson and the background. However this method cannot detect the correct region o the erson i the velocit o the erson is similar to the background velocit or a art o the erson s bod is occluded. We use the knowledge o the shae o the erson to coe with these situations. The shae o the erson is the ratio o the height to the width o the erson in the image. Since the ratio o the walking erson does not change much, the region o the erson is determined to kee the ratio b modiing the region detected rom the otical lows. The active camera head is controlled to kee the erson in the ield o view o the camera. The image rocessor has a video board and ive DSP boards. Each DSP board contains two TI TMS30C40 DSPs that communicate with each other through the communication orts. The video board is the interace between the active camera and the host comuter. The DSP boards erorm image rocessing. Our tracking is imlemented to the image rocessor. The irst three DSP boards calculate the otical lows. The ourth DSP-board detects the erson and controls the active camera head. And the ith DSP-board makes an image o the result or disla. Section describes the etraction o otical lows. The result o etraction o otical lows is shown. Section shows the tracking algorithm. Develoing a Real-Time Person Tracking Sstem Using the TMS30C40 DSP 9

10 Section 3 describes the imlementation o the tracking algorithm to the image rocessor. The architecture o the image rocessor is shown. The result o tracking is shown. 0 Develoing a Real-Time Person Tracking Sstem Using the TMS30C40 DSP

11 Etraction o the Otical Flows The velocit ield is derived rom otical lows calculated using the gradient method. The gradient method is based on satio-temoral iltering. 3 Constraint Equation o Gradient Method Let,, t denote a brightness at a oint, in an image at time t. I this oint moves to a oint + d, + d at time t + dt, the ollowing equation holds:,,t = +d,+d,t+dt Talor eansion o the right side o the equation is,,t =,,t +,,td+,,td + t,,tdt + e, where =, =, t =, and e is high order terms o d,d,dt. t Assuming that e is negligible, we obtain the net equation: =,,tu +,,tv + t,,i = 0 3 d d where u =, v = and u and v are the and comonent o the dt dt velocit. This is the constraint equation o the gradient method. However, equation 3 has two unknowns u and v and cannot be solved. The unknowns u and v are calculated as shown in the Filtering section. Filtering Two dierent satial ilters g,h are convolved to the inut image,,t, and the temoral smoothing ilter is alied using these two iltered images. The ollowing two constraint equations are derived according to equation 3. g u + g v + g t = 0 4 h u + h v + h t = 0 5 where reresents convolution. u and v are calculated rom equations 4 and 5 as ollows: Develoing a Real-Time Person Tracking Sstem Using the TMS30C40 DSP

12 Develoing a Real-Time Person Tracking Sstem Using the TMS30C40 DSP t t h g h g g h h g u = 6 t t h g h g h g g h v = 7 I the absolute value o denominator o equations 6 and 7 is small, the velocit at such oint is not calculated. This is because the indeendence o equations 4 and 5 is insuicient. These ilters must have the ollowing three characteristics. To assure dierentiabilit To suress the high-order terms o d,d,dt To make two indeendent constraint equations 4 and 5 We use the horizontall dierentiated gaussian ilter or g. The horizontal variance o this gaussian is larger than the vertical variance, as shown in equation 8. Similarl, or the ilter h, the verticall dierentiated gaussian ilter. The vertical variance is larger than the horizontal variance, as shown in equation 9. = + = 3 e e e, σ πσ σ πσ σ σ σ πσ g 8 = + = 3 e e e, σ πσ σ πσ σ σ σ πσ h 9 where σ, σ are variances and σ > σ. Equation 0 is used or the temoral ilter i = β 0 t + β t - + β t β n t - n where t is the outut.

13 t is the inut image at time t. The coeicients hold the ollowing conditions: n i= 0 Recursive Filtering Satial Filter β i, lim β n n = 0 The convolution oeration o a two-dimensional satial ilter is comutationall eensive unless the ilter is small. A satial ilter with size M N is convolved, the number o calculations is M N at a iel. Equations 8 and 9 show it is ossible that the ilter g,h can be searated to -directional one-dimensional ilter and - directional one-dimensional ilter, and the can be convolved searatel. This can reduce the calculation to M + N at a iel. However, this convolution oeration is still comutationall eensive. This section describes how the recursive iltering method can reduce the calculation more. 6 Let i denote the outut o a ilter hi and i denote the inut to the ilter. N k= 0 i = h k i k Equation is the transer unction, or Z transormation, o equation. N k= 0 k H z = h k z The net equation is an aroimation o this transer unction. H a m k= 0 + k= k bk z z = 3 n k a z k The net equation is the inverse Z transormation o 3. This equation shows that iltering can be erormed recursivel. m k= 0 n i = b i k a i k 4 k k= k Develoing a Real-Time Person Tracking Sstem Using the TMS30C40 DSP 3

14 The combination o equations 6 and 8 construct the twodimensional ilter g and h. In the case o ilter g, -directional ilter is dierential gaussian ilter 8 and -directional ilter is gaussian ilter 6. Gaussian Filter The net equation is an aroimation o the Gaussian ilter. α n S n = k α n + e 5 where k e = + αe α α e α and α decides the variance σ o Gaussian. This aroimate ilter can be reresented in a recursive orm based on equations through 4 as ollows: n = n + n n =,.., M 6 n = k[n + e -α α - n - ]+ e -α n - - e -α n - n=,..,m n = k[e -α α - n + - e -α n + ] + e -α n + - e -α n + n = M,.., Dierential Gaussian Filter Equation 7 is an aroimation o the dierential Gaussian ilter. Dn = kne --α n 7 where, k e = e α α α is constant, which decides ilter size. Equation 7 is reresented in recursive orm based on equations through 4 as ollows: α n = ke [ n n] n =,, M 8 + n = ke = ke α α n = ke = ke [ n + e n α α n =,, M [ n + + e n α n = M,, + n n e α n + e α α + n ] n + ] 4 Develoing a Real-Time Person Tracking Sstem Using the TMS30C40 DSP

15 Temoral Filter The temoral ilter shown in equation 0 is also reresented in recursive orm. Equation 9 is a recursive temoral ilter. t = β t + β t 9 where t is an inut image. i is the outut o the ilter. β determines the ilter size. Result o Etracting Otical Flows Figure shows the etracted otical lows rom the inut images shown in Figure. The constant α in equations 6 and 8 and β in equation 9 are ied, as shown in this eeriment: g α = 0.3, h α = 0.7, β = 0.5 g α = 0.7 h α 0.3 where subscrits and mean the directions o the ilters. suerscrits g and h mean the satial ilters g and h, resectivel. I the absolute value o the denominator in equations 6 and 7 is less than a threshold, the otical low is not etracted in such iels because the etracted otical low is not reliable. In this eeriment, the threshold is.0. Develoing a Real-Time Person Tracking Sstem Using the TMS30C40 DSP 5

16 Figure. Inut Images Figure. Otical Flows time t time t+ 6 Develoing a Real-Time Person Tracking Sstem Using the TMS30C40 DSP

17 Person Tracking Algorithm Figure 3. Tracking Algorithm Detection o a erson is accomlished b circumscribing the erson with a rectangle, or erson window, in the image. The tracking determines the size and location o the erson window over a sequence o images. It is imortant to control the active camera head to kee the erson in the ield o view o the camera. Person detection is erormed based on the otical lows. The region o the erson is segmented based on the dierences o the velocities between the erson and the background. When the velocit o the erson is similar to the background velocit, it is diicult to segment the region o the erson. When art o the bod is occluded, the whole bod can not be segmented. In this case, the knowledge o the shae o the erson is used to enable to track the erson. When a erson is walking, his shae in the image does not change greatl; that is, the ratio o the height to the width o the erson window does not change much. The erson window is determined to kee this ratio. This method can overcome the diiculties stated below. Figure 3 shows the tracking algorithm. Develoing a Real-Time Person Tracking Sstem Using the TMS30C40 DSP 7

18 Person-Window Prediction Let u t-, v t- denote the velocit o the erson, and W t- denote the erson window at revious rame time t. W t- has two arameters: location and size. The location is reresented b the center oint o the window t-, t-, and the size is reresented b the height and the width o the erson window height t-, width t-. The interval between rames is short enough that we can assume the erson maintains velocit u t-, v t- as he moves. The redicted redict t erson window W at current rame time t is obtained b redict shiting W t- b the velocit u t-, v t-. The location o W t is t- + u t-, t- + v t- and the size is height t-, width t-. Etraction o Velocit and Object Window The mean velocit u t-, v t- is calculated in the redicted erson redict window W t and is the velocit o the erson at time t. The region that has the velocit similar to the mean velocit u t-, v t- is redict etracted near the redicted erson window W t. Velocities u and v, satising the ollowing conditions 0 and, are the similar velocities to the mean velocit u t, v t. The window circumscribing this region is called object window. u min < u < u ma 0 v min < v < v ma where u min u t + c u t - c u ma = u t + c u t +c v min v t + c v t - c v ma = v t + c v t +c c and c are redetermined constants. Determination o Person Window The size o the erson window is equal to the object window i the ratio o the height to the width o the object window is similar to the reviousl remembered ratio. I the ratio o the object window is dierent rom the remembered ratio, the erson window is determined b modiing the object window based on the remembered ratio. The size o the erson window is determined b the ollowing equations: width = width o 8 Develoing a Real-Time Person Tracking Sstem Using the TMS30C40 DSP

19 height = height o height = height 0 width = height /ratio where subscrit is the erson window and o is the object window. Equation is used when the dierence o the width between the object window and the redicted erson window is less than the dierence o the height. Otherwise, equation 3 is used. The location o the erson window is equal to the object window. This case means that a art o the bod o the erson is occluded, or that the velocit o the art o the bod is dierent rom the velocit o the other arts o the bod. I the velocit u t,v t is similar to the background velocit u t, vt, the erson window is not changed and is determined b the redicted erson window. In this case, the object window cannot be etracted because there is onl a small dierence between the background and the erson on the velocit ield; thus, the erson stos against the camera motion. b b Camera Control The active camera head is controlled to kee the erson in the ield o view o the camera. Let, and u, v denote the center oint and the velocit o the erson window, resectivel. For eamle, i the erson is in the let hal o the image L and moves to the let b the velocit u, the camera is turned to the let b u iels. The active camera head is controlled as ollows: I, L and u > 0, turn let b u iels. I, R and u < 0, turn right b u iels. I, U and v > 0, turn uward b v iels. I, D and v < 0, turn downward b v iels. where L is the let hal o the image. R is the right hal o the image. U is the uer hal o the image. D is the lower hal o the image. Develoing a Real-Time Person Tracking Sstem Using the TMS30C40 DSP 9

20 Imlementation Hardware Architecture Figure 4 shows the overview o the real-time erson tracking sstem. The image rocessor has a video board and ive DSP boards connected in tandem. The image rocessor is ieline architecture. The video board is the interace with the active camera head, the host comuter, and the TV monitor. The DSP board can rocess the inut image in arallel because it has two indeendent DSPs. We call these DSP A and DSP B. DSP A in the ourth DSP board sends the control signal to the active camera head controller. The controller turns the active camera head based on the signal rom the DSP. The image rocessor includes the ollowing secial eatures. As the ieline architecture is used, a burden is disersed b increasing the DSP boards accordingl. Various image rocessings are available b changing the rograms downloaded to the DSPs. Parallel image rocessing is ossible because each DSP board has two indeendent rocessing sections each section has a DSP. Two DSPs on the same DSP board communicate with each other through the communication orts. 0 Develoing a Real-Time Person Tracking Sstem Using the TMS30C40 DSP

21 Figure 4. Sstem Overview The video board erorms three unctions: AID transormation o the image rom the active camera head Interace to the host comuter Digital-to-analog D/A transormation o the image rocessed b DSP boards Develoing a Real-Time Person Tracking Sstem Using the TMS30C40 DSP

22 The inut signal is searated to snchronous signals and image data. The image signals are digitized to 8 bit image data. The snchronous signals and the digitized image data are sent to the DSP boards through the video bus. The video board sends the interrut signal rom the host comuter to the DSP boards. The video board downloads the rograms rom the host comuter to the each DSP through the control bus. Figure 5 shows the block diagram o the DSP board. The inut data and outut data o the DSP board are 8 bit or 3 bit. The 8 bit data are used or the inut and outut or the video board. The 8bit inut data video board is written to both the image memor o DSP A and DSP B. Either DSP A or DSP B can outut 8 bit data. The 3 bit data are used or the inut or the outut or the DSP board. The inut data is written to the image memor. Each DSP rocesses a image stored in the image memor according to the rogram downloaded b the host comuter. The rogram memor stores the rogram and various data. The result o the rocessing is outut to the net board. This image memor has a double buer, and the DSP can not read data rom the buer receiving the data rom the revious board. The DSP board can receive data rom the revious board even i the DSP is erorming the image rocessing. Figure 5. TMS30C40 DSP Board Block Diagram Develoing a Real-Time Person Tracking Sstem Using the TMS30C40 DSP

23 Imlementation o the Algorithm The rocessing described in the Filtering section is assigned to the DSPs. DSP board The recursive satial ilter is convolved to the inut image. DSP A convolves ilter g. Filter h is convolved b DSP B. DSP board DSP A and B erorm the same rocessing. First, the recursive temoral ilter is alied to the outut rom DSP board using the result o the revious rame. And net, the dierentiations with resect to the,, t are calculated. The outut o the temoral ilter is stored to use the net rame in the rogram memor. DSP board 3 DSP B transmits the data rom revious the DSP board to DSP A. DSP A calculates the otical lows based on equations 6 and 7. DSP board 4 DSP B determines the erson window based on the otical lows and the knowledge o the shae o the erson. DSP A is not used. DSP board 5 DSP B overwrites the erson window on inut image and send it to the video board. DSP A is not used. Develoing a Real-Time Person Tracking Sstem Using the TMS30C40 DSP 3

24 Figure 6. Imlementation 4 Develoing a Real-Time Person Tracking Sstem Using the TMS30C40 DSP

25 Result o Tracking Figure 7. Tracking Result Figure 7 shows the result o the real-time erson tracking. A erson is walking rom let to right. The bo on the loor occludes his eet. Unless knowledge o the shae o the erson is used, the eet o the erson can not be tracked. This method allows the sstem to track his whole bod even though a bo occludes the eet. The active camera head is controlled to kee the erson in its ield o view. Develoing a Real-Time Person Tracking Sstem Using the TMS30C40 DSP 5

26 Summar We develo a real-time erson tracking sstem. The sstem comrises the high-seed image rocessor and the active camera head. The image rocessor rocesses images in real time using TI TMS30C40 DSPs. The region o the erson in the image is detected based on the otical lows and knowledge o the shae o the erson. The active camera head is controlled to track the erson. An eerimental result shows the eectiveness o this method. Reerences Y.Shirai, J.Miura, Y.Mae, M.Shiohara, H.Egawa, S.Sasaki: Moving Object Percetion and Tracking b Use o DSP, Prc. CAMP, J.L.Barron, D.J.Fleet, S.S.Beauchemin. Sstems and Eeriment Perormance o Otical Flow Techniques, International Journal o Comuter Vision, Vol., No., ~43-77, H.Inoue, T.Tachikawa, M.Inaba: Robot Vision Sstem with a Correlation Chi or Real-time Tracking, Otical Flow and Deth Ma Generation, Proc. IEEE International Conerence on Robotics and Automation, M.V.Srinivasan: Generalized Gradient Schemes or the Measurement o Two-Dimensional Image Motion, Biological Cbernetics, Vol.63, P.Sobe, M.V.Srinivasan: Measurement o Otical Flow Using a Generalized Gradient Scheme, Journal o the Otical Societ o America, R.Derishe: Fast Algorithms or Low-Level Vision, IEEE Trans. Pattern Anal. Mach. Intell., Vol., Develoing a Real-Time Person Tracking Sstem Using the TMS30C40 DSP

Video Mosaicing for Document Imaging

Video Mosaicing for Document Imaging Video Mosaicing or Document Imaging Noboru Nakajima Akihiko Iketani Tomokazu Sato Sei Ikeda Masayuki Kanbara Naokazu Yokoya Common Platorm Sotware Research Laboratories, NEC Cororation, 8916-47 Takayama,

More information

8. Hardware Acceleration and Coprocessing

8. Hardware Acceleration and Coprocessing July 2011 ED51006-1.2 8. Hardware Acceleration and ED51006-1.2 This chapter discusses how you can use hardware accelerators and coprocessing to create more eicient, higher throughput designs in OPC Builder.

More information

Binary Search Algorithm on the TMS320C5x

Binary Search Algorithm on the TMS320C5x TMS320 DSP DESIGNER S NOTEBOOK Binary Search Algorithm on the TMS320C5x APPLICATION BRIEF: SPRA238 Lawrence Wong Digital Signal Processing Products Semiconductor Group Texas Instruments May 1994 IMPORTANT

More information

FDA CFR PART 11 ELECTRONIC RECORDS, ELECTRONIC SIGNATURES

FDA CFR PART 11 ELECTRONIC RECORDS, ELECTRONIC SIGNATURES Document: MRM-1004-GAPCFR11 (0005) Page: 1 / 18 FDA CFR PART 11 ELECTRONIC RECORDS, ELECTRONIC SIGNATURES AUDIT TRAIL ECO # Version Change Descrition MATRIX- 449 A Ga Analysis after adding controlled documents

More information

NAVAL POSTGRADUATE SCHOOL THESIS

NAVAL POSTGRADUATE SCHOOL THESIS NAVAL POSTGRADUATE SCHOOL MONTEREY CALIFORNIA THESIS SYMMETRICAL RESIDUE-TO-BINARY CONVERSION ALGORITHM PIPELINED FPGA IMPLEMENTATION AND TESTING LOGIC FOR USE IN HIGH-SPEED FOLDING DIGITIZERS by Ross

More information

Concurrent Program Synthesis Based on Supervisory Control

Concurrent Program Synthesis Based on Supervisory Control 010 American Control Conference Marriott Waterfront, Baltimore, MD, USA June 30-July 0, 010 ThB07.5 Concurrent Program Synthesis Based on Suervisory Control Marian V. Iordache and Panos J. Antsaklis Abstract

More information

Floating Point C Compiler: Tips and Tricks Part I

Floating Point C Compiler: Tips and Tricks Part I TMS320 DSP DESIGNER S NOTEBOOK Floating Point C Compiler: Tips and Tricks Part I APPLICATION BRIEF: SPRA229 Karen Baldwin Digital Signal Processing Products Semiconductor Group Texas Instruments June 1993

More information

Robotic Exploration Under the Controlled Active Vision Framework

Robotic Exploration Under the Controlled Active Vision Framework Robotic Exloration Under the Controlled Active Vision Framework Christoher E. Smith Scott A. Brandt Nikolaos P. Paanikolooulos chsmith@cs.umn.edu sbrandt@cs.umn.edu naas@cs.umn.edu Artificial Intelligence,

More information

Load Balancing Mechanism in Agent-based Grid

Load Balancing Mechanism in Agent-based Grid Communications on Advanced Comutational Science with Alications 2016 No. 1 (2016) 57-62 Available online at www.isacs.com/cacsa Volume 2016, Issue 1, Year 2016 Article ID cacsa-00042, 6 Pages doi:10.5899/2016/cacsa-00042

More information

One-Chip Linear Control IPS, F5106H

One-Chip Linear Control IPS, F5106H One-Chi Linear Control IPS, F5106H NAKAGAWA Sho OE Takatoshi IWAMOTO Motomitsu ABSTRACT In the fi eld of vehicle electrical comonents, the increasing demands for miniaturization, reliability imrovement

More information

SECTION 6: FIBER BUNDLES

SECTION 6: FIBER BUNDLES SECTION 6: FIBER BUNDLES In this section we will introduce the interesting class o ibrations given by iber bundles. Fiber bundles lay an imortant role in many geometric contexts. For examle, the Grassmaniann

More information

9. Forced Convection Correlations

9. Forced Convection Correlations Part B: Heat Transfer incials in Electronics Cooling 9. Forced Convection Correlations Our rimary objective is to determine heat transfer coefficients (local and average) for different flow geometries

More information

Mean shift-based clustering

Mean shift-based clustering Pattern Recognition (7) www.elsevier.com/locate/r Mean shift-based clustering Kuo-Lung Wu a, Miin-Shen Yang b, a Deartment of Information Management, Kun Shan University of Technology, Yung-Kang, Tainan

More information

Fast Logarithms on a Floating-Point Device

Fast Logarithms on a Floating-Point Device TMS320 DSP DESIGNER S NOTEBOOK Fast Logarithms on a Floating-Point Device APPLICATION BRIEF: SPRA218 Keith Larson Digital Signal Processing Products Semiconductor Group Texas Instruments March 1993 IMPORTANT

More information

HYBRID FEM-DEM APPROACH APPLIED TO BEDLOAD TRANSPORT

HYBRID FEM-DEM APPROACH APPLIED TO BEDLOAD TRANSPORT XI Simósio de Mecânica Comutacional II Encontro Mineiro de Modelagem Comutacional Juiz De Fora, MG, 28-30 de Maio De 2014 HYBRID FEM-DEM APPROACH APPLIED TO BEDLOAD TRANSPORT José L. D. Alves, Carlos E.

More information

SN54165, SN54LS165A, SN74165, SN74LS165A PARALLEL-LOAD 8-BIT SHIFT REGISTERS

SN54165, SN54LS165A, SN74165, SN74LS165A PARALLEL-LOAD 8-BIT SHIFT REGISTERS The SN54165 and SN74165 devices SN54165, SN54LS165A, SN74165, SN74LS165A PRODUCTION DATA information is current as of publication date. Products conform to specifications per the terms of Texas Instruments

More information

An Associative Memory Readout in ESN for Neural Action Potential Detection

An Associative Memory Readout in ESN for Neural Action Potential Detection g An Associative Memory Readout in ESN for Neural Action Potential Detection Nicolas J. Dedual, Mustafa C. Ozturk, Justin C. Sanchez and José C. Princie Abstract This aer describes how Echo State Networks

More information

Monitoring Streams A New Class of Data Management Applications

Monitoring Streams A New Class of Data Management Applications Brown Comuter Science Technical Reort, TR-CS-0-04 Monitoring Streams A New Class o Data Management Alications Don Carney Brown University dc@csbrownedu Ugur Cetintemel Brown University ugur@csbrownedu

More information

A Virtual Machine Dynamic Migration Scheduling Model Based on MBFD Algorithm

A Virtual Machine Dynamic Migration Scheduling Model Based on MBFD Algorithm International Journal of Comuter Theory and Engineering, Vol. 7, No. 4, August 2015 A Virtual Machine Dynamic Migration Scheduling Model Based on MBFD Algorithm Xin Lu and Zhuanzhuan Zhang Abstract This

More information

Alpha Channel Estimation in High Resolution Images and Image Sequences

Alpha Channel Estimation in High Resolution Images and Image Sequences In IEEE Comuter Society Conference on Comuter Vision and Pattern Recognition (CVPR 2001), Volume I, ages 1063 68, auai Hawaii, 11th 13th Dec 2001 Alha Channel Estimation in High Resolution Images and Image

More information

Minimizing the Communication Cost for Continuous Skyline Maintenance

Minimizing the Communication Cost for Continuous Skyline Maintenance Minimizing the Communication Cost for Continuous Skyline Maintenance Zhenjie Zhang, Reynold Cheng, Dimitris Paadias, Anthony K.H. Tung School of Comuting National University of Singaore {zhenjie,atung}@com.nus.edu.sg

More information

Memory management. Chapter 4: Memory Management. Memory hierarchy. In an ideal world. Basic memory management. Fixed partitions: multiple programs

Memory management. Chapter 4: Memory Management. Memory hierarchy. In an ideal world. Basic memory management. Fixed partitions: multiple programs Memory management Chater : Memory Management Part : Mechanisms for Managing Memory asic management Swaing Virtual Page relacement algorithms Modeling age relacement algorithms Design issues for aging systems

More information

An important observation in supply chain management, known as the bullwhip effect,

An important observation in supply chain management, known as the bullwhip effect, Quantifying the Bullwhi Effect in a Simle Suly Chain: The Imact of Forecasting, Lead Times, and Information Frank Chen Zvi Drezner Jennifer K. Ryan David Simchi-Levi Decision Sciences Deartment, National

More information

A Third Generation Automated Teller Machine Using Universal Subscriber Module with Iris Recognition

A Third Generation Automated Teller Machine Using Universal Subscriber Module with Iris Recognition A Third Generation Automated Teller Machine Using Universal Subscriber Module with Iris Recognition B.Sundar Raj Assistant rofessor, Det of CSE, Bharath University, Chennai, TN, India. ABSTRACT: This aer

More information

Analysis of Filter Coefficient Precision on LMS Algorithm Performance for G.165/G.168 Echo Cancellation

Analysis of Filter Coefficient Precision on LMS Algorithm Performance for G.165/G.168 Echo Cancellation Application Report SPRA561 - February 2 Analysis of Filter Coefficient Precision on LMS Algorithm Performance for G.165/G.168 Echo Cancellation Zhaohong Zhang Gunter Schmer C6 Applications ABSTRACT This

More information

Measuring relative phase between two waveforms using an oscilloscope

Measuring relative phase between two waveforms using an oscilloscope Measuring relative hase between two waveforms using an oscilloscoe Overview There are a number of ways to measure the hase difference between two voltage waveforms using an oscilloscoe. This document covers

More information

Point Location. Preprocess a planar, polygonal subdivision for point location queries. p = (18, 11)

Point Location. Preprocess a planar, polygonal subdivision for point location queries. p = (18, 11) Point Location Prerocess a lanar, olygonal subdivision for oint location ueries. = (18, 11) Inut is a subdivision S of comlexity n, say, number of edges. uild a data structure on S so that for a uery oint

More information

Implementing an In-Service, Non- Intrusive Measurement Device in Telecommunication Networks Using the TMS320C31

Implementing an In-Service, Non- Intrusive Measurement Device in Telecommunication Networks Using the TMS320C31 Disclaimer: This document was part of the First European DSP Education and Research Conference. It may have been written by someone whose native language is not English. TI assumes no liability for the

More information

Design of A Knowledge Based Trouble Call System with Colored Petri Net Models

Design of A Knowledge Based Trouble Call System with Colored Petri Net Models 2005 IEEE/PES Transmission and Distribution Conference & Exhibition: Asia and Pacific Dalian, China Design of A Knowledge Based Trouble Call System with Colored Petri Net Models Hui-Jen Chuang, Chia-Hung

More information

ENFORCING SAFETY PROPERTIES IN WEB APPLICATIONS USING PETRI NETS

ENFORCING SAFETY PROPERTIES IN WEB APPLICATIONS USING PETRI NETS ENFORCING SAFETY PROPERTIES IN WEB APPLICATIONS USING PETRI NETS Liviu Grigore Comuter Science Deartment University of Illinois at Chicago Chicago, IL, 60607 lgrigore@cs.uic.edu Ugo Buy Comuter Science

More information

ECONOMIC OPTIMISATION AS A BASIS FOR THE CHOICE OF FLOOD PROTECTION STRATEGIES IN THE NETHERLANDS

ECONOMIC OPTIMISATION AS A BASIS FOR THE CHOICE OF FLOOD PROTECTION STRATEGIES IN THE NETHERLANDS THEME B: Floods 19 ECONOMIC OPTIMISATION AS A BASIS FOR THE CHOICE OF FLOOD PROTECTION STRATEGIES IN THE NETHERLANDS Jonkman S.N. 1,2, Kok M. 1,2,3 and Vrijling J.K. 1 1 Delt University o Technology, Faculty

More information

Implementation of Statistic Process Control in a Painting Sector of a Automotive Manufacturer

Implementation of Statistic Process Control in a Painting Sector of a Automotive Manufacturer 4 th International Conference on Industrial Engineering and Industrial Management IV Congreso de Ingeniería de Organización Donostia- an ebastián, etember 8 th - th Imlementation of tatistic Process Control

More information

Power functions: f(x) = x n, n is a natural number The graphs of some power functions are given below. n- even n- odd

Power functions: f(x) = x n, n is a natural number The graphs of some power functions are given below. n- even n- odd 5.1 Polynomial Functions A polynomial unctions is a unction o the orm = a n n + a n-1 n-1 + + a 1 + a 0 Eample: = 3 3 + 5 - The domain o a polynomial unction is the set o all real numbers. The -intercepts

More information

Monitoring TMS320C240 Peripheral Registers in the Debugger Software

Monitoring TMS320C240 Peripheral Registers in the Debugger Software TMS320 DSP DESIGNER S NOTEBOOK Monitoring TMS320C240 Peripheral Registers in the Debugger Software APPLICATION BRIEF: SPRA276 Jeff Crankshaw Digital Signal Processor Solutions May 1997 IMPORTANT NOTICE

More information

Moving Objects Tracking in Video by Graph Cuts and Parameter Motion Model

Moving Objects Tracking in Video by Graph Cuts and Parameter Motion Model International Journal of Comuter Alications (0975 8887) Moving Objects Tracking in Video by Grah Cuts and Parameter Motion Model Khalid Housni, Driss Mammass IRF SIC laboratory, Faculty of sciences Agadir

More information

Web Application Scalability: A Model-Based Approach

Web Application Scalability: A Model-Based Approach Coyright 24, Software Engineering Research and Performance Engineering Services. All rights reserved. Web Alication Scalability: A Model-Based Aroach Lloyd G. Williams, Ph.D. Software Engineering Research

More information

CFD-based Modeling of Transport Phenomena for Engineering Problems

CFD-based Modeling of Transport Phenomena for Engineering Problems CD-based Modeling of Transort Phenomena for Engineering Problems Maksim Mezhericher Abstract Comutational luid Dynamics is a oular modeling aroach which utilizes numerical methods and comuter simulations

More information

Time-Cost Trade-Offs in Resource-Constraint Project Scheduling Problems with Overlapping Modes

Time-Cost Trade-Offs in Resource-Constraint Project Scheduling Problems with Overlapping Modes Time-Cost Trade-Offs in Resource-Constraint Proect Scheduling Problems with Overlaing Modes François Berthaut Robert Pellerin Nathalie Perrier Adnène Hai February 2011 CIRRELT-2011-10 Bureaux de Montréal

More information

Large-Scale IP Traceback in High-Speed Internet: Practical Techniques and Theoretical Foundation

Large-Scale IP Traceback in High-Speed Internet: Practical Techniques and Theoretical Foundation Large-Scale IP Traceback in High-Seed Internet: Practical Techniques and Theoretical Foundation Jun Li Minho Sung Jun (Jim) Xu College of Comuting Georgia Institute of Technology {junli,mhsung,jx}@cc.gatech.edu

More information

Sage HRMS I Planning Guide. The HR Software Buyer s Guide and Checklist

Sage HRMS I Planning Guide. The HR Software Buyer s Guide and Checklist I Planning Guide The HR Software Buyer s Guide and Checklist Table of Contents Introduction... 1 Recent Trends in HR Technology... 1 Return on Emloyee Investment Paerless HR Workflows Business Intelligence

More information

Project Management and. Scheduling CHAPTER CONTENTS

Project Management and. Scheduling CHAPTER CONTENTS 6 Proect Management and Scheduling HAPTER ONTENTS 6.1 Introduction 6.2 Planning the Proect 6.3 Executing the Proect 6.7.1 Monitor 6.7.2 ontrol 6.7.3 losing 6.4 Proect Scheduling 6.5 ritical Path Method

More information

Principles of Hydrology. Hydrograph components include rising limb, recession limb, peak, direct runoff, and baseflow.

Principles of Hydrology. Hydrograph components include rising limb, recession limb, peak, direct runoff, and baseflow. Princiles of Hydrology Unit Hydrograh Runoff hydrograh usually consists of a fairly regular lower ortion that changes slowly throughout the year and a raidly fluctuating comonent that reresents the immediate

More information

MOS Transistors as Switches

MOS Transistors as Switches MOS Transistors as Switches G (gate) nmos transistor: Closed (conducting) when Gate = 1 (V DD ) D (drain) S (source) Oen (non-conducting) when Gate = 0 (ground, 0V) G MOS transistor: Closed (conducting)

More information

This document is downloaded from DR-NTU, Nanyang Technological University Library, Singapore.

This document is downloaded from DR-NTU, Nanyang Technological University Library, Singapore. This document is downloaded from DR-NTU, Nanyang Technological University Library, Singaore. Title Automatic Robot Taing: Auto-Path Planning and Maniulation Author(s) Citation Yuan, Qilong; Lembono, Teguh

More information

Failure Behavior Analysis for Reliable Distributed Embedded Systems

Failure Behavior Analysis for Reliable Distributed Embedded Systems Failure Behavior Analysis for Reliable Distributed Embedded Systems Mario Tra, Bernd Schürmann, Torsten Tetteroo {tra schuerma tetteroo}@informatik.uni-kl.de Deartment of Comuter Science, University of

More information

Sage HRMS I Planning Guide. The Complete Buyer s Guide for Payroll Software

Sage HRMS I Planning Guide. The Complete Buyer s Guide for Payroll Software I Planning Guide The Comlete Buyer s Guide for Payroll Software Table of Contents Introduction... 1 Recent Payroll Trends... 2 Payroll Automation With Emloyee Self-Service... 2 Analyzing Your Current Payroll

More information

An Efficient Method for Improving Backfill Job Scheduling Algorithm in Cluster Computing Systems

An Efficient Method for Improving Backfill Job Scheduling Algorithm in Cluster Computing Systems The International ournal of Soft Comuting and Software Engineering [SCSE], Vol., No., Secial Issue: The Proceeding of International Conference on Soft Comuting and Software Engineering 0 [SCSE ], San Francisco

More information

A graphical introduction to the budget constraint and utility maximization

A graphical introduction to the budget constraint and utility maximization EC 35: ntermediate Microeconomics, Lecture 4 Economics 35: ntermediate Microeconomics Notes and Assignment Chater 4: tilit Maimization and Choice This chater discusses how consumers make consumtion decisions

More information

Automatic Search for Correlated Alarms

Automatic Search for Correlated Alarms Automatic Search for Correlated Alarms Klaus-Dieter Tuchs, Peter Tondl, Markus Radimirsch, Klaus Jobmann Institut für Allgemeine Nachrichtentechnik, Universität Hannover Aelstraße 9a, 0167 Hanover, Germany

More information

Multistage Human Resource Allocation for Software Development by Multiobjective Genetic Algorithm

Multistage Human Resource Allocation for Software Development by Multiobjective Genetic Algorithm The Oen Alied Mathematics Journal, 2008, 2, 95-03 95 Oen Access Multistage Human Resource Allocation for Software Develoment by Multiobjective Genetic Algorithm Feng Wen a,b and Chi-Ming Lin*,a,c a Graduate

More information

4. Discrete Probability Distributions

4. Discrete Probability Distributions 4. Discrete Probabilit Distributions 4.. Random Variables and Their Probabilit Distributions Most of the exeriments we encounter generate outcomes that can be interreted in terms of real numbers, such

More information

Incremental Clustering for Mining in a Data Warehousing Environment

Incremental Clustering for Mining in a Data Warehousing Environment Incremental Clustering for Mining in a Data Warehousing Environment Martin Ester, Hans-Peter Kriegel, Jörg Sander, Michael Wimmer, Xiaowei Xu Institute for Comuter Science, University of Munich Oettingenstr

More information

A LabVIEW Based Experimental Platform for Ultrasonic Range Measurements

A LabVIEW Based Experimental Platform for Ultrasonic Range Measurements DSP Journal, Volume 6, Issue, February, 007 A LabVIEW Based Experimental Platorm or Ultrasonic Range Measurements Abdallah Hammad, Ashra Haez, Mohamed arek Elewa Benha University - Faculty o Engineering

More information

A Simple Model of Pricing, Markups and Market. Power Under Demand Fluctuations

A Simple Model of Pricing, Markups and Market. Power Under Demand Fluctuations A Simle Model of Pricing, Markus and Market Power Under Demand Fluctuations Stanley S. Reynolds Deartment of Economics; University of Arizona; Tucson, AZ 85721 Bart J. Wilson Economic Science Laboratory;

More information

High Quality Offset Printing An Evolutionary Approach

High Quality Offset Printing An Evolutionary Approach High Quality Offset Printing An Evolutionary Aroach Ralf Joost Institute of Alied Microelectronics and omuter Engineering University of Rostock Rostock, 18051, Germany +49 381 498 7272 ralf.joost@uni-rostock.de

More information

Retrospective Test for Loss Reserving Methods - Evidence from Auto Insurers

Retrospective Test for Loss Reserving Methods - Evidence from Auto Insurers Retrospective Test or Loss Reserving Methods - Evidence rom Auto Insurers eng Shi - Northern Illinois University joint work with Glenn Meyers - Insurance Services Oice CAS Annual Meeting, November 8, 010

More information

Modeling and Simulation of an Incremental Encoder Used in Electrical Drives

Modeling and Simulation of an Incremental Encoder Used in Electrical Drives 10 th International Symosium of Hungarian Researchers on Comutational Intelligence and Informatics Modeling and Simulation of an Incremental Encoder Used in Electrical Drives János Jób Incze, Csaba Szabó,

More information

DAY-AHEAD ELECTRICITY PRICE FORECASTING BASED ON TIME SERIES MODELS: A COMPARISON

DAY-AHEAD ELECTRICITY PRICE FORECASTING BASED ON TIME SERIES MODELS: A COMPARISON DAY-AHEAD ELECTRICITY PRICE FORECASTING BASED ON TIME SERIES MODELS: A COMPARISON Rosario Esínola, Javier Contreras, Francisco J. Nogales and Antonio J. Conejo E.T.S. de Ingenieros Industriales, Universidad

More information

A Multivariate Statistical Analysis of Stock Trends. Abstract

A Multivariate Statistical Analysis of Stock Trends. Abstract A Multivariate Statistical Analysis of Stock Trends Aril Kerby Alma College Alma, MI James Lawrence Miami University Oxford, OH Abstract Is there a method to redict the stock market? What factors determine

More information

A MOST PROBABLE POINT-BASED METHOD FOR RELIABILITY ANALYSIS, SENSITIVITY ANALYSIS AND DESIGN OPTIMIZATION

A MOST PROBABLE POINT-BASED METHOD FOR RELIABILITY ANALYSIS, SENSITIVITY ANALYSIS AND DESIGN OPTIMIZATION 9 th ASCE Secialty Conference on Probabilistic Mechanics and Structural Reliability PMC2004 Abstract A MOST PROBABLE POINT-BASED METHOD FOR RELIABILITY ANALYSIS, SENSITIVITY ANALYSIS AND DESIGN OPTIMIZATION

More information

Chapter 12 General Equilibrium and Welfare

Chapter 12 General Equilibrium and Welfare Chater 2 General Equilibrium and Welfare U to this oint we have dealt with onl one market at a time; Partial Equilibrium Models. ogic suggests that markets are highl interconnected. What haens in one market

More information

TSL213 64 1 INTEGRATED OPTO SENSOR

TSL213 64 1 INTEGRATED OPTO SENSOR TSL 64 INTEGRATED OPTO SENSOR SOES009A D4059, NOVEMBER 99 REVISED AUGUST 99 Contains 64-Bit Static Shift Register Contains Analog Buffer With Sample and Hold for Analog Output Over Full Clock Period Single-Supply

More information

C-Bus Voltage Calculation

C-Bus Voltage Calculation D E S I G N E R N O T E S C-Bus Voltage Calculation Designer note number: 3-12-1256 Designer: Darren Snodgrass Contact Person: Darren Snodgrass Aroved: Date: Synosis: The guidelines used by installers

More information

NOISE ANALYSIS OF NIKON D40 DIGITAL STILL CAMERA

NOISE ANALYSIS OF NIKON D40 DIGITAL STILL CAMERA NOISE ANALYSIS OF NIKON D40 DIGITAL STILL CAMERA F. Mojžíš, J. Švihlík Detartment of Comuting and Control Engineering, ICT Prague Abstract This aer is devoted to statistical analysis of Nikon D40 digital

More information

Comparing Dissimilarity Measures for Symbolic Data Analysis

Comparing Dissimilarity Measures for Symbolic Data Analysis Comaring Dissimilarity Measures for Symbolic Data Analysis Donato MALERBA, Floriana ESPOSITO, Vincenzo GIOVIALE and Valentina TAMMA Diartimento di Informatica, University of Bari Via Orabona 4 76 Bari,

More information

A Reliability Point and Kalman Filter-based Vehicle Tracking Technique

A Reliability Point and Kalman Filter-based Vehicle Tracking Technique A Reliability Point and Kalman Filter-based Vehicle Tracing Technique Soo Siang Teoh and Thomas Bräunl Abstract This paper introduces a technique for tracing the movement of vehicles in consecutive video

More information

User Guide. Introduction. HCS12PLLCALUG/D Rev. 0, 12/2002. HCS12 PLL Component Calculator

User Guide. Introduction. HCS12PLLCALUG/D Rev. 0, 12/2002. HCS12 PLL Component Calculator User Guide HCS12PLLCALUG/D Rev. 0, 12/2002 HCS12 PLL Component Calculator by Stuart Robb Applications Engineering Motorola, East Kilbride Introduction The MC9S12D amily o MCUs includes a Phase-Locked Loop

More information

Sage Timberline Office

Sage Timberline Office Sage Timberline Office Get Started Document Management 9.8 NOTICE This document and the Sage Timberline Office software may be used only in accordance with the accomanying Sage Timberline Office End User

More information

Free Software Development. 2. Chemical Database Management

Free Software Development. 2. Chemical Database Management Leonardo Electronic Journal of Practices and echnologies ISSN 1583-1078 Issue 1, July-December 2002. 69-76 Free Software Develoment. 2. Chemical Database Management Monica ŞEFU 1, Mihaela Ligia UNGUREŞAN

More information

Copyright 2005 IEEE. Reprinted from IEEE MTT-S International Microwave Symposium 2005

Copyright 2005 IEEE. Reprinted from IEEE MTT-S International Microwave Symposium 2005 Copyright 2005 IEEE Reprinted rom IEEE MTT-S International Microwave Symposium 2005 This material is posted here with permission o the IEEE. Such permission o the IEEE does t in any way imply IEEE endorsement

More information

Figure 6.1 Model for radial flow of fluids to the wellbore

Figure 6.1 Model for radial flow of fluids to the wellbore In Chater 3 e develoed the oundations o luid lo through orous media and introduced Darcy s La; the undamental lo euation to deribe this behavior. In this chater e ill exand Darcy s La and investigate various

More information

Exponential Functions

Exponential Functions Eponential Functions Deinition: An Eponential Function is an unction that has the orm ( a, where a > 0. The number a is called the base. Eample:Let For eample (0, (, ( It is clear what the unction means

More information

THE RELATIONSHIP BETWEEN EMPLOYEE PERFORMANCE AND THEIR EFFICIENCY EVALUATION SYSTEM IN THE YOTH AND SPORT OFFICES IN NORTH WEST OF IRAN

THE RELATIONSHIP BETWEEN EMPLOYEE PERFORMANCE AND THEIR EFFICIENCY EVALUATION SYSTEM IN THE YOTH AND SPORT OFFICES IN NORTH WEST OF IRAN THE RELATIONSHIP BETWEEN EMPLOYEE PERFORMANCE AND THEIR EFFICIENCY EVALUATION SYSTEM IN THE YOTH AND SPORT OFFICES IN NORTH WEST OF IRAN *Akbar Abdolhosenzadeh 1, Laya Mokhtari 2, Amineh Sahranavard Gargari

More information

Re-Dispatch Approach for Congestion Relief in Deregulated Power Systems

Re-Dispatch Approach for Congestion Relief in Deregulated Power Systems Re-Disatch Aroach for Congestion Relief in Deregulated ower Systems Ch. Naga Raja Kumari #1, M. Anitha 2 #1, 2 Assistant rofessor, Det. of Electrical Engineering RVR & JC College of Engineering, Guntur-522019,

More information

Simulink Implementation of a CDMA Smart Antenna System

Simulink Implementation of a CDMA Smart Antenna System Simulink Imlementation of a CDMA Smart Antenna System MOSTAFA HEFNAWI Deartment of Electrical and Comuter Engineering Royal Military College of Canada Kingston, Ontario, K7K 7B4 CANADA Abstract: - The

More information

A RAPID METHOD FOR WATER TARGET EXTRACTION IN SAR IMAGE

A RAPID METHOD FOR WATER TARGET EXTRACTION IN SAR IMAGE A RAPI METHO FOR WATER TARGET EXTRACTION IN SAR IMAGE WANG ong a, QIN Ping a ept. o Surveying and Geo-inormatic Tongji University, Shanghai 200092, China. - wangdong75@gmail.com ept. o Inormation, East

More information

1. Overview of Nios II Embedded Development

1. Overview of Nios II Embedded Development May 2011 NII52001-11.0.0 1. Overview o Nios II Embedded Development NII52001-11.0.0 The Nios II Sotware Developer s Handbook provides the basic inormation needed to develop embedded sotware or the Altera

More information

SMALL BUSINESS GRANTS PROGRAM GUIDELINES

SMALL BUSINESS GRANTS PROGRAM GUIDELINES SMALL BUSINESS GRANTS PROGRAM GUIDELINES S GARTON STREET Small Business Grants Program Suorting our community The City of Melbourne offers a wide range of grants and sonsorshi oortunities to suort the

More information

SN54F157A, SN74F157A QUADRUPLE 2-LINE TO 1-LINE DATA SELECTORS/MULTIPLEXERS

SN54F157A, SN74F157A QUADRUPLE 2-LINE TO 1-LINE DATA SELECTORS/MULTIPLEXERS SNFA, SNFA QUADRUPLE -LINE TO -LINE DATA SELECTORS/MULTIPLEXERS SDFS0A MARCH 8 REVISED OCTOBER Buffered Inputs and Outputs Package Optio Include Plastic Small-Outline Packages, Ceramic Chip Carriers, and

More information

The Priority R-Tree: A Practically Efficient and Worst-Case Optimal R-Tree

The Priority R-Tree: A Practically Efficient and Worst-Case Optimal R-Tree The Priority R-Tree: A Practically Efficient and Worst-Case Otimal R-Tree Lars Arge Deartment of Comuter Science Duke University, ox 90129 Durham, NC 27708-0129 USA large@cs.duke.edu Mark de erg Deartment

More information

1. Overview of Nios II Embedded Development

1. Overview of Nios II Embedded Development January 2014 NII52001-13.1.0 1. Overview o Nios II Embedded Development NII52001-13.1.0 The Nios II Sotware Developer s Handbook provides the basic inormation needed to develop embedded sotware or the

More information

EDI s x32 MCM-L SRAM Family: Integrated Memory Solution for TMS320C3x DSPs

EDI s x32 MCM-L SRAM Family: Integrated Memory Solution for TMS320C3x DSPs EDI s x32 MCM-L RAM Family: Integrated Memory olution for TM320C3x DPs APPLICATION REPORT: PRA286 Tim tahley Electronic Designs, Inc. Digital ignal Processing olutions March 1997 IMPORTANT NOTICE Texas

More information

Migration to Object Oriented Platforms: A State Transformation Approach

Migration to Object Oriented Platforms: A State Transformation Approach Migration to Object Oriented Platforms: A State Transformation Aroach Ying Zou, Kostas Kontogiannis Det. of Electrical & Comuter Engineering University of Waterloo Waterloo, ON, N2L 3G1, Canada {yzou,

More information

An Investigation on LTE Mobility Management

An Investigation on LTE Mobility Management An Investigation on LTE Mobility Management Ren-Huang Liou, Yi-Bing Lin, Fellow, IEEE, and Shang-Chih Tsai Deartment of Comuter Science National Chiao Tung University {rhliou, liny, tsaisc}@csnctuedutw

More information

Bravo Software Group e.commerce enablers... 2 RemoteDesk... 4

Bravo Software Group e.commerce enablers... 2 RemoteDesk... 4 Table of Contents Bravo Software Grou e.commerce enablers... 2 RemoteDesk... 4 A suite of roducts for entering orders or invoices remotely, for direct osting to your central accounting system. RemoteDesk

More information

The fast Fourier transform method for the valuation of European style options in-the-money (ITM), at-the-money (ATM) and out-of-the-money (OTM)

The fast Fourier transform method for the valuation of European style options in-the-money (ITM), at-the-money (ATM) and out-of-the-money (OTM) Comutational and Alied Mathematics Journal 15; 1(1: 1-6 Published online January, 15 (htt://www.aascit.org/ournal/cam he fast Fourier transform method for the valuation of Euroean style otions in-the-money

More information

Doppler Shift Estimation and Jamming Detection for Cellular Networks

Doppler Shift Estimation and Jamming Detection for Cellular Networks Australian Journal o Basic and Applied Sciences, 4(12): 6590-6597, 2010 ISSN 1991-8178 oppler Shit Estimation and Jamming etection or Cellular Networks Javad Ashar Jahanshahi, Seyed Ali Ghorashi Cognitive

More information

3- Flow Arrangements. International Journal of Scientific & Engineering Research Volume 4, Issue 1, January-2013 ISSN 2229-5518

3- Flow Arrangements. International Journal of Scientific & Engineering Research Volume 4, Issue 1, January-2013 ISSN 2229-5518 International Journal o Scientiic & Engineering esearc Volume 4, Issue, January-03 ISS 9-558 Flat Plate Heat Excanger Design or MT eactor Ugrading del lyan Famy tomic Energy utority, eactors Deartment,

More information

Maintenance Scheduling Optimization for 30kt Heavy Haul Combined Train in Daqin Railway

Maintenance Scheduling Optimization for 30kt Heavy Haul Combined Train in Daqin Railway 5th International Conerence on Civil Engineering and Transportation (ICCET 2015) Maintenance Scheduling Optimization or 30kt Heavy Haul Combined Train in Daqin Railway Yuan Lin1, a, Leishan Zhou1, b and

More information

Two-resource stochastic capacity planning employing a Bayesian methodology

Two-resource stochastic capacity planning employing a Bayesian methodology Journal of the Oerational Research Society (23) 54, 1198 128 r 23 Oerational Research Society Ltd. All rights reserved. 16-5682/3 $25. www.algrave-journals.com/jors Two-resource stochastic caacity lanning

More information

Parallel Multi-Zone Methods for Large-Scale Multidisciplinary Computational Physics Simulations

Parallel Multi-Zone Methods for Large-Scale Multidisciplinary Computational Physics Simulations Parallel Multi-Zone Methods for Large-Scale Multidiscilinary Comutational Physics Simulations Ding Li, Guoing Xia, and Charles L. Merkle Mechanical Engineering, Purdue University Chaffee Hall, 500 Allison

More information

Doppler Shift Estimation for TETRA Cellular Networks

Doppler Shift Estimation for TETRA Cellular Networks oppler Shit Estimation or TETRA Cellular Networks Javad Ashar Jahanshahi, Seyed Ali Ghorashi epartment o Electrical and Computer Engineering, Shahid Beheshti University, Tehran, Iran j.ashar@mail.sbu.ac.ir,

More information

2.1: The Derivative and the Tangent Line Problem

2.1: The Derivative and the Tangent Line Problem .1.1.1: Te Derivative and te Tangent Line Problem Wat is te deinition o a tangent line to a curve? To answer te diiculty in writing a clear deinition o a tangent line, we can deine it as te iting position

More information

Next-Generation BTL/Futurebus Transceivers Allow Single-Sided SMT Manufacturing

Next-Generation BTL/Futurebus Transceivers Allow Single-Sided SMT Manufacturing Next-Generation BTL/Futurebus Transceivers Allow Single-Sided SMT Manufacturing SCBA003C March 1997 1 IMPORTANT NOTICE Texas Instruments (TI) reserves the right to make changes to its products or to discontinue

More information

Digital Systems Design Based on DSP algorithms in FPGA for Fault Identification in Rotary Machines

Digital Systems Design Based on DSP algorithms in FPGA for Fault Identification in Rotary Machines Digital Systems Design Based on DSP algorithms in FPGA or Fault Identiication in Rotary Machines Masamori Kashiwagi 1, Cesar da Costa 1 *, Mauro Hugo Mathias 1 1 Department o Mechanical Engineering, UNESP

More information

COST CALCULATION IN COMPLEX TRANSPORT SYSTEMS

COST CALCULATION IN COMPLEX TRANSPORT SYSTEMS OST ALULATION IN OMLEX TRANSORT SYSTEMS Zoltán BOKOR 1 Introduction Determining the real oeration and service costs is essential if transort systems are to be lanned and controlled effectively. ost information

More information

406 IEEE SYSTEMS JOURNAL, VOL. 9, NO. 2, JUNE 2015

406 IEEE SYSTEMS JOURNAL, VOL. 9, NO. 2, JUNE 2015 406 IEEE SYSTEMS JOURNAL, VOL. 9, NO. 2, JUNE 2015 HERO: Hierarchical Energy Otimization or Data Center Networks Yan Zhang, Student Member, IEEE, and Nirwan Ansari, Fellow, IEEE Abstract The raid escalating

More information

A performance analysis of EtherCAT and PROFINET IRT

A performance analysis of EtherCAT and PROFINET IRT A perormance analysis o EtherCAT and PROFINET IRT Conerence paper by Gunnar Prytz ABB AS Corporate Research Center Bergerveien 12 NO-1396 Billingstad, Norway Copyright 2008 IEEE. Reprinted rom the proceedings

More information

How To Write A Paper On The Brain Reaction Index During Mental Calculation Rom The Ew

How To Write A Paper On The Brain Reaction Index During Mental Calculation Rom The Ew , pp.123-132 http://dx.doi.org/10.14257/ijbsbt.2014.6.4.12 Suggestion o a ew Brain Reaction Index or the EEG Signal Identiication and Analysis Jungeun Lim 1, Bohyeok Seo 2 and Soonyong Chun * 1 School

More information

Secure synthesis and activation of protocol translation agents

Secure synthesis and activation of protocol translation agents Home Search Collections Journals About Contact us My IOPscience Secure synthesis and activation of rotocol translation agents This content has been downloaded from IOPscience. Please scroll down to see

More information