Math of Projections:Overview. Perspective Viewing. Perspective Projections. Perspective Projections. Math of perspective projection

Size: px
Start display at page:

Download "Math of Projections:Overview. Perspective Viewing. Perspective Projections. Perspective Projections. Math of perspective projection"

Transcription

1 Math of Projectios:Overview Math of perspective projectio, stadard cofiguratio OpeGL perspective projectios Math of orthographic projectio OpeGL orthographic projectios Viewport trasformatios ad settig them i OpeGL Perspective Viewig Viewig trasformatios Orthographic projectio caoical viewig volume Perspective projectio caoical viewig volume Hidde surface removal Viewig, projectios Hofstra Uiversity 3 Viewig, projectios Perspective Projectios -z Viewig, projectios The graphics system applies a 4 x 4 projectio matrix after the model-view matrix Gearal perspective: Viewig directio is ot orthogoal to projectio plae Hofstra Uiversity 33 Viewig, projectios Math of perspective projectio Let O be COP Projectio plae has equatio z=d, d < 3D poit P has homogeeous coordiates (x,y,z,) It is mapped to poit Q (xp,yp,d) i the projectio plae Hofstra Uiversity 34 Stadard cofiguratio: COP=VRP Projectio plae is orthogoal to z-axis, at z=d Viewig, projectios Hofstra Uiversity Math of perspective projectio The discussio here is carried out with respect to the camera (view) referece frame, (VRP,u,v,) The projectio trasformatio maps 3D poits to D poits i the projectio plae Stadard cofiguratio: 3 Perspective Projectios -z Viewig directio orthogoal To projectio plae Hofstra Uiversity 35 Q is o the segmet PO, thus Q=cP+(-c)O, where <c< Thus, xp = c.x, yp = c.y, d = c.z è c = d/z Thus, xp = (d/z).x, yp = (d/z).y, i affie coordiates Note that projectio is ot liear i affie coordates. Viewig, projectios Hofstra Uiversity 36

2 Math of perspective projectio Clippig P=p(x,y,z,) è Q=q(d.x/z, d.y/z, d, ), i homogeeous coordiates. Perspective projectio is ot liear i affie coord. Perspective projectio is liear i homogeeous M per = / d q = M per p = / d x x y y = z z z / d From homogeeous to affie coordiates: (a,b,c,w) è (a/w, b/w,c/w) Thus (x,y,z,d/z) i homogeeous becomes (x/(z/d), y/(z/d),d,) ==> (d.x/z, d.y/z,) i proj. plae Viewig, projectios Hofstra Uiversity 37 Object parts outside of the of the view volume are clipped First we will discuss the opegl fuctios that set up the projectio trasformatios Next we will discuss the viewport trasformatio ad settig the viewport i OpeGL Last, we will go back to projectio, ad see how the graphics systems carry out efficietly the more geeral perspective projectio by reducig it to the stadard perspective, ad the to the caoical orthographic You ca set up ay projectio you wat (parallel or perspective) by settig up the the projectio matrix directly Although, more ofte we use affie trasformatios to reduce more geeral projectios to the caoical oes Viewig, projectios Hofstra Uiversity 38 Perspective Viewig i OpeGL Projectios i OpeGL frustum Depth of projectio plae (size of clippig widow) iside the pyramid does ot matter. All that matters is object size relative to the widow. The projectio plae depth does ot affect relative size. Thus i CG systems usually far or ear plae is selected to be the projectio plae. Near i opegl. opegl. Viewig, projectios Hofstra Uiversity 39 oly fixed poit Objects ot i the view volume are clipped. View (projectio) plae is frot clippig plae. Viewig, projectios OpeGL Perspective Hofstra Uiversity 4 OpeGL Perspective glfrustum(left, glfrustum(left, right, bottom, top, ear, far); gluperspective( gluperspective(fovy, fovy, aspect, ear, far); glmatrixmode(gl_projection); glloadidetity( ); fov is the agle betwee the top ad bottom plaes glfrustum(left, right, bottom, top, ear, far); The relatioship betwee frot(ear) plae ad COP(origi) defie the steepess of the frustum Viewig, projectios Hofstra Uiversity 4 Viewig, projectios Hofstra Uiversity 4

3 OpeGL Orthographic Projectio Stadard Orthographic Projectio glortho(left, right, bottom, top, ear, far); x p y p = z p x y z Viewig, projectios Hofstra Uiversity 43 Viewig, projectios Hofstra Uiversity 44 Viewport Trasformatio Viewport Trasformatio viewport trasformatio correspods to the stage where the size of the developed photograph is chose The viewport is measured i pixels, i scree widow coordiates, which reflect the positio of pixels o the scree relative to the lower left corer of the widow vertices outside the viewig volume have bee clipped viewport is the rectagular regio of the widow where the image is draw Viewig, projectios Hofstra Uiversity 45 Viewig, projectios Hofstra Uiversity 46 Defiig the Viewport The widow maager, ot OpeGL, is resposible for opeig a widow o the scree By default the viewport is set to the etire pixel rectagle of the widow that's opeed Use the glviewport() commad to choose a smaller drawig regio Defiig The Viewport By default, the iitial viewport parameters are (,, wiwidth, wiheight), where wiwidth ad wiheight are the widow dimesios. The aspect ratio of a viewport should geerally equal the aspect ratio of the viewig volume If the two ratios are differet, the projected image will be distorted as it's mapped to the viewport void glviewport(glit x, GLit y, GLsizei width, GLsizei height); lower left corer size of viewport rectagle Viewig, projectios Hofstra Uiversity 47 Viewig, projectios Hofstra Uiversity 48 3

4 Viewport Distortio World to View coordiates Camera positio: VRP Viewig trasformatio Traslate VRP to origi: T(-VRP) Rotate, aligig view frame (u,v,) with world frame The composite trasformatio R.T will have the effect of trasformig the coordiates of vertices from world to view coordiates Viewig, projectios Hofstra Uiversity 49 Viewig, projectios Hofstra Uiversity 5 Caoical view orthographic projectio VRP at the origi Lookig i egative z directio (COP does ot matter) View-up vector is (,,) View volume is a cube of side ceter at origi, (left, right, bottom, top, ear, far)=(-,,-,,,-) Perspective projectio stadard viewig VRP at origi Lookig i egative z-directio, look at is (,,-) COP coicides with VRP, viewig directio is orthogoal to view plae View-up vector is (,,) View volume is a regular frustum (left, right, top, bottom, ear, far)=(-,,-,,,z_far), The ear plae is at, the far is at -z. Side clippig plaes make 45 deg agles with z axis (,,-) Viewig, projectios (-,-,) Hofstra Uiversity 5 Viewig, projectios Hofstra Uiversity 5 Caoical Viewig for Perspective Hidde Surface Removal z-buffer algorithm as the polygos are rasterized we keep track of the distace from the VRP to the closest poit o each projector. We display oly the closest poit Requires a depth or z buffer to store the ecessary depth iformatio Viewig, projectios Hofstra Uiversity 53 glutiitdisplaymode(glut_double GLUT_RGB GLUT_DEPTH); gleable(gl_depth_test); glclear(gl_color_buffer_bit GL_DEPTH_BUFFER_BIT); Viewig, projectios Hofstra Uiversity 54 4

5 Hidde Surface Removal Perspective Normalizatio Display oly visible surfaces (remove hidde) Paiter s algorithm: sort polygos accordig to z, project i order of decreasig depth Pixel based: back track rays from pixels to first itersectio How ca we apply geeral perspective projectio? Derive the perspective projectio matrix (geeral 4x4 matrix), load that as a PROJECTION matrix Trick: Usig series of affie trasformatios to alter the world, so that the image of the distorted world uder stadard (caoical) projectio is the same as the image of the udistorted world uder the origial geeral projectio Graphics systems go eve farther: perspective projectios are implemeted iterally as orthographic projectios (of the distorted world) with respect to the caoical view volume (xx cube). This way the clippig is very efficiet, ad z-buffer algorithm is supported by preservig relative depth i the process of trasformig objects. Z-buffer algorithm: based o relative depth after projectio Viewig, projectios Hofstra Uiversity 55 Viewig, projectios Hofstra Uiversity 56 Projectio Normalizatio Idea Projectio Normalizatio The distortio is described by a homogeeouscoordiate matrix Cocateate this matrix with a orthogoalprojectio matrix to yield a resultig projectio matrix Viewig, projectios Hofstra Uiversity 57 Viewig, projectios Hofstra Uiversity 58 Geeral Perspective Projectio Projectio coverts poits i 3-D space to poits o the projectio plae Three steps (the graphics system implemets them): Coverts the viewig volume (geeral frustum) to the caoical perspective view volume Next coverts the caoical perspective view volume to the caoical orthographic view volume Applys orthographic projectio matrix The most caoical view volume Orthographic projectio with respect to most caoical view volume Caoical view volume is a xx cube whose ceter is at the origi (default view volume) How to clip?: simple How to project?: o divisio (,,-) (-,-,) Viewig, projectios Hofstra Uiversity 59 Viewig, projectios Hofstra Uiversity 6 5

6 Geeral Orthogoal Projectio glmatrixmode(gl_projection); glloadidetity( ); glortho(-.,., -.,., -.,.); Projectio Matrix determie which objects are clipped out P = ST x = max x mi max y y mi zmax z mi xmax + x xmax x ymax + y ymax y zmax + z zmax z mi mi mi mi mi mi Projectio Matrix maps a view volume to the caoical view volume Viewig, projectios Hofstra Uiversity 6 Viewig, projectios Hofstra Uiversity 6 Oblique Projectio Oblique Projectio degree of obliqueess shearig Viewig, projectios Hofstra Uiversity 63 Viewig, projectios Hofstra Uiversity 64 Perspective Projectio Matrices Perspective Projectio Matrices Look for a trasformatio allows a simple caoical projectio by distortig the vertices of a object Three steps: ) select caoical viewig volume, ) itroduce the perspective ormalizatio trasformatio ad 3) derive the perspective projectio matrix Viewig, projectios Hofstra Uiversity 65 Viewig, projectios Hofstra Uiversity 66 6

7 Perspective Projectio Matrices N is called the perspective ormalizatio matrix. It coverts a perspective projectio to a orthogoal projectio N Projectio ad Shadows Shadows are ot geometric objects but importat for realism A poit is i a shadow if it is ot illumiated by ay light source A shadow polygo is a flat shadow that results from projectig the origial polygo oto a surface Viewig, projectios Hofstra Uiversity 67 Viewig, projectios Hofstra Uiversity 68 Projectio ad Shadows use a modelview matrix Viewig, projectios Hofstra Uiversity 69 7

Line numbering and synchronization in digital HDTV systems

Line numbering and synchronization in digital HDTV systems Lie umberig ad sychroizatio i digital HDTV systems D. (VURT) I cotrast to aalogue televisio systems where lie umberig is covetioally liked to the vertical sychroizatio, digital televisio offers the possibility

More information

Working with PlasmaWipe Effects

Working with PlasmaWipe Effects Workig with PlasmaWipe Effects Workig with PlasmaWipe Effects PlasmaWipe effects are real-time plug-i effects that use gradiet image bitmaps to create wipes ad segmet effects. There are 64 preset effects,

More information

NIIT Logotype YOU MUST NEVER CREATE A NIIT LOGOTYPE THROUGH ANY SOFTWARE OR COMPUTER. THIS LOGO HAS BEEN DRAWN SPECIALLY.

NIIT Logotype YOU MUST NEVER CREATE A NIIT LOGOTYPE THROUGH ANY SOFTWARE OR COMPUTER. THIS LOGO HAS BEEN DRAWN SPECIALLY. NIIT Logotype The NIIT logotype is always preseted i a fixed cofiguratio. The desig of the logotype is based o a typeface called Egyptia. The letters N I I T has bee specially desiged ad letter-spaced.

More information

Polychrome Devices Reference Manual

Polychrome Devices Reference Manual Polychrome Devices Referece Maual Improvisio, Viscout Cetre II, Uiversity of Warwick Sciece Park, Millbur Hill Road, Covetry. CV4 7HS Tel: 0044 (0) 24 7669 2229 Fax: 0044 (0) 24 7669 0091 e-mail: admi@improvisio.com

More information

Forces: Calculating Them, and Using Them Shobhana Narasimhan JNCASR, Bangalore, India

Forces: Calculating Them, and Using Them Shobhana Narasimhan JNCASR, Bangalore, India Forces: Calculatig Them, ad Usig Them Shobhaa Narasimha JNCASR, Bagalore, Idia shobhaa@jcasr.ac.i Shobhaa Narasimha, JNCASR 1 Outlie Forces ad the Hellma-Feyma Theorem Stress Techiques for miimizig a fuctio

More information

T-25e, T-39 & T-66. G657 fibres and how to splice them. TA036DO th June 2011

T-25e, T-39 & T-66. G657 fibres and how to splice them. TA036DO th June 2011 T-25e, T-39 & T-66 G657 fibres ad how to splice them TA036DO0018-03 10 th Jue 2011 What is G657 fibre? G657 is a ew class of sigle mode fibre which ca be bet more severely the ormal G652 sigle mode without

More information

Logistics We are here. If you cannot login to MarkUs, me your UTORID and name.

Logistics We are here. If you cannot login to MarkUs,  me your UTORID and name. Logistics We are here 8 Week If you caot logi to arkus, email me your UTORID ad ame. heck lab marks o arkus, if it s recorded wrog, cotact Larry withi a week after the lab. Quiz average: 8% Assembly Laguage

More information

Motivation. Analysis-and-manipulation approach to pitch and duration of musical instrument sounds without distorting timbral characteristics

Motivation. Analysis-and-manipulation approach to pitch and duration of musical instrument sounds without distorting timbral characteristics Aalysis-ad-maipulatio approach to pitch ad duratio of musical istrumet souds without distortig timbral characteristics Takehiro Abe Katsutoshi Itoyama Kazuyoshi Yoshii Kazuori Komatai Tetsuya Ogata Hiroshi

More information

Apollo 360 Map Display User s Guide

Apollo 360 Map Display User s Guide Apollo 360 Map Display User s Guide II Morrow Ic. 2345 Turer Road S.E. Salem, Orego 97309 November 1996 P/N 560-0119-00 Apollo 360 Map Display No part of this documet may be reproduced i ay form or by

More information

PROJECTOR SFX SUFA-X. Properties. Specifications. Application. Tel

PROJECTOR SFX SUFA-X. Properties. Specifications. Application.  Tel ifo@extgeeratioled.be www.extgeeratioled.be Tel + 32 53 71 09 42 PROJECTOR SFX SUFA-X Properties Lifespa L70 %: > 50.000 hours Eergy savigs up to 65% Boosted istallatio efficiecy thaks to the slimmed-dow

More information

2 Specialty Application Photoelectric Sensors

2 Specialty Application Photoelectric Sensors SMARTEYE STEALTH-UV UVS Aalog/Digital Lumiescece Sesor 2 Specialty Applicatio Photoelectric Sesors 2-93 Specialty Applicatio Photoelectric Sesors 2 SMARTEYE STEALTH-UV UVS Aalog/Digital Lumiescece Sesor

More information

Music Scope Headphones: Natural User Interface for Selection of Music

Music Scope Headphones: Natural User Interface for Selection of Music Music Scope Headphoes: Natural User Iterface for Selectio of Music Masatoshi Hamaaka Presto, Japa Sciece ad Techology Agecy A.I.S.T. Mbox 604 1-1-1 Umezoo, Tsukuba, Ibaraki, 305-8568 Japa m.hamaaka@aist.go.jp

More information

PROBABILITY AND STATISTICS Vol. I - Ergodic Properties of Stationary, Markov, and Regenerative Processes - Karl Grill

PROBABILITY AND STATISTICS Vol. I - Ergodic Properties of Stationary, Markov, and Regenerative Processes - Karl Grill PROBABILITY AND STATISTICS Vol. I Ergodic Properties of Statioary, Markov, ad Regeerative Processes Karl Grill ERGODIC PROPERTIES OF STATIONARY, MARKOV, AND REGENERATIVE PROCESSES Karl Grill Istitut für

More information

Mullard INDUCTOR POT CORE EQUIVALENTS LIST. Mullard Limited, Mullard House, Torrington Place, London Wel 7HD. Telephone:

Mullard INDUCTOR POT CORE EQUIVALENTS LIST. Mullard Limited, Mullard House, Torrington Place, London Wel 7HD. Telephone: Mullard INDUCTOR POT CORE EQUIVALENTS LIST Mullard Limited, Mullard House, Torrigto Place, Lodo Wel 7HD. Telephoe: 01-580 6633 INDUCTOR POT CORE EQUIVALENTS LIST Mullard Limited have bee maufacturig ferrite

More information

TOWARDS AN AUDITORY REPRESENTATION OF COMPLEXITY

TOWARDS AN AUDITORY REPRESENTATION OF COMPLEXITY TOWARDS AN AUDITORY REPRESENTATION OF COMPLEXITY Joachim Goßma ZKM Ceter for Art ad Media Istitute for Music ad Acoustics Lorezstraße 19, D-76135 Karlsruhe, Germay gossma@zkm.de ABSTRACT I applicatios

More information

Manual Comfort Air Curtain

Manual Comfort Air Curtain Maual Comfort Air Curtai Model SesAir Versio 1.0- North America Origial Maual Eglish a COMFORT AIR CURTAIN... Cotets 1 Itroductio 4 1.1 About this maual 4 1.2 How to read this maual 4 1.3 About the uit

More information

2 Specialty Application Photoelectric Sensors

2 Specialty Application Photoelectric Sensors SMARTEYE X-PRO XP10 XP10 -- Extremely High Speed Sesor 2 Specialty Applicatio Photoelectric Sesors 2-119 Specialty Applicatio Photoelectric Sesors 2 SMARTEYE X-PRO XP10 Extremely High Speed (10µs) Photoelectric

More information

Using a Computer Screen as a Whiteboard while Recording the Lecture as a Sound Movie

Using a Computer Screen as a Whiteboard while Recording the Lecture as a Sound Movie Usig a Computer Scree as a Whiteboard while Recordig the Lecture as a Soud Movie Joatha Lewi Keesaw State Uiversity Abstract The purpose of this presetatio is to demostrate the process of usig a laptop

More information

BesTrans AOC (Active Optical Cable) Spec and Manual

BesTrans AOC (Active Optical Cable) Spec and Manual BesTras AOC (Active Optical Cable) Spec ad Maual A. Techology: BesTras Active Optical Cable (AOC) is a easy-to-use, secure coectio for home video distributio, coferece room presetatio systems, classroom

More information

ROUNDNESS EVALUATION BY GENETIC ALGORITHMS

ROUNDNESS EVALUATION BY GENETIC ALGORITHMS Chapter ROUNDNESS EVALUATION BY GENETIC ALGORITHMS Michele Lazetta ad Adrea Rossi Departmet of Mechaical, Nuclear ad Productio Egieerig Uiversity of Pisa, Via Diotisalvi 1, 56122 Pisa, Italy ABSTRACT Roudess

More information

Objectives: Topics covered: Basic terminology Important Definitions Display Processor Raster and Vector Graphics Coordinate Systems Graphics Standards

Objectives: Topics covered: Basic terminology Important Definitions Display Processor Raster and Vector Graphics Coordinate Systems Graphics Standards MODULE - 1 e-pg Pathshala Subject: Computer Science Paper: Computer Graphics and Visualization Module: Introduction to Computer Graphics Module No: CS/CGV/1 Quadrant 1 e-text Objectives: To get introduced

More information

DIGITAL DISPLAY SOLUTION REAL ESTATE POINTS OF SALE (POS)

DIGITAL DISPLAY SOLUTION REAL ESTATE POINTS OF SALE (POS) DIGITAL DISPLAY SOLUTION REAL ESTATE POINTS OF SALE (POS) TABLE OF CONTENTS Digital services p. 3 Coected services p. 4 Maagemet p. 5 Commuicatio Stadards p. 6 Image wall p.8 A solutio tailored to your

More information

Analyzing the influence of pitch quantization and note segmentation on singing voice alignment in the context of audio-based Query-by-Humming

Analyzing the influence of pitch quantization and note segmentation on singing voice alignment in the context of audio-based Query-by-Humming Aalyzig the ifluece of pitch quatizatio ad ote segmetatio o sigig voice aligmet i the cotext of audio-based Query-by-Hummig Jose J. Valero-Mas Patter Recogitio ad Artificial Itelligece Group, Uiversity

More information

EE260: Digital Design, Spring /3/18. n Combinational Logic: n Output depends only on current input. n Require cascading of many structures

EE260: Digital Design, Spring /3/18. n Combinational Logic: n Output depends only on current input. n Require cascading of many structures EE260: igital esig, prig 208 4/3/8 EE 260: Itroductio to igital esig equetial Logic Elemets ao Zheg epartmet of Electrical Egieerig Uiversity of Hawaiʻi at Māoa equetial ircuits ombiatioal Logic: Output

More information

Part 1: Introduction to computer graphics 1. Describe Each of the following: a. Computer Graphics. b. Computer Graphics API. c. CG s can be used in

Part 1: Introduction to computer graphics 1. Describe Each of the following: a. Computer Graphics. b. Computer Graphics API. c. CG s can be used in Part 1: Introduction to computer graphics 1. Describe Each of the following: a. Computer Graphics. b. Computer Graphics API. c. CG s can be used in solving Problems. d. Graphics Pipeline. e. Video Memory.

More information

Computer Graphics: Overview of Graphics Systems

Computer Graphics: Overview of Graphics Systems Computer Graphics: Overview of Graphics Systems By: A. H. Abdul Hafez Abdul.hafez@hku.edu.tr, 1 Outlines 1. Video Display Devices 2. Flat-panel displays 3. Video controller and Raster-Scan System 4. Coordinate

More information

PowerStrip Automatic Cut & Strip Machine

PowerStrip Automatic Cut & Strip Machine Automatic Cut & Strip Machie 2 Fully automatic wire processig requires precisio techology tailored to your specific eeds. The combies the utmost i precisio ad performace which cover a ubeatable rage of

More information

CODE GENERATION FOR WIDEBAND CDMA

CODE GENERATION FOR WIDEBAND CDMA ST JOURAL OF SYSTEM RESEARCH - VOL1 - UMBER 1 CODE GEERATIO FOR WIDEBAD CDMA Daiele Lo Iacoo Ettore Messia Giuseppe Avelloe Agostio Galluzzo Fracesco Pappalardo STMicroelectroics This paper presets a overview

More information

DCT 1000 Cable Terminal Installation Manual

DCT 1000 Cable Terminal Installation Manual DCT 1000 Cable Termial Istallatio Maual GUIDE CURSOR INFO MENU SELECT BYPASS CHANNEL POWER Graphical symbols ad supplemet warig markig locatios o the bottom of the appliace. This symbol meas that dagerous

More information

Chapter 7 Registers and Register Transfers

Chapter 7 Registers and Register Transfers Logic ad Computer Desig Fudametals Chapter 7 Registers ad Register Trasfers Part 2 Couters, Register Cells, Buses, & Serial Operatios Charles Kime & Thomas Kamiski 28 Pearso Educatio, Ic (Hyperliks are

More information

Organic Macromolecules and the Genetic Code A cell is mostly water.

Organic Macromolecules and the Genetic Code A cell is mostly water. Orgaic Macromolecules ad the Geetic Code A cell is mostly water. The rest of the cell cosists mostly of carbobased molecules. Orgaic chemistry is the study of carbo compouds. Copyright 2007 Pearso Educatio

More information

Manual Industrial air curtain

Manual Industrial air curtain Maual Idustrial air curtai Model IdAC2 Versio 6.0 Origial Maual Eglish a INDUSTRIAL AIR CURTAIN... Cotets 1 Itroductio 4 1.1 About this maual 4 1.2 How to read this maual 4 1.3 About the uit 5 1.4 Compoets

More information

Image Intensifier Reference Manual

Image Intensifier Reference Manual Image Itesifier Referece Maual Improvisio, Viscout Cetre II, Uiversity of Warwick Sciece Park, Millbur Hill Road, Covetry. CV4 7HS Tel: 0044 (0) 24 7669 2229 Fax: 0044 (0) 24 7669 0091 e-mail: admi@improvisio.com

More information

SMARTEYE ColorWise TM. Specialty Application Photoelectric Sensors. True Color Sensor 2-65

SMARTEYE ColorWise TM. Specialty Application Photoelectric Sensors. True Color Sensor 2-65 2 True Color Sesor Specialty Applicatio Photoelectric Sesors 2-65 Specialty Applicatio Photoelectric Sesors 2 The SMARTEYE COLORWISE TM True Color Sesor is the most feature packed color sesor available.

More information

Module 3: Video Sampling Lecture 16: Sampling of video in two dimensions: Progressive vs Interlaced scans. The Lecture Contains:

Module 3: Video Sampling Lecture 16: Sampling of video in two dimensions: Progressive vs Interlaced scans. The Lecture Contains: The Lecture Contains: Sampling of Video Signals Choice of sampling rates Sampling a Video in Two Dimensions: Progressive vs. Interlaced Scans file:///d /...e%20(ganesh%20rana)/my%20course_ganesh%20rana/prof.%20sumana%20gupta/final%20dvsp/lecture16/16_1.htm[12/31/2015

More information

References and quotations

References and quotations CHAPTER 1.8 Refereces ad quotatios Academic writig depeds o the research ad ideas of others, so it is vital to show which sources you have used i your work, i a acceptable maer. This uit explais the format

More information

Energy-Efficient FPGA-Based Parallel Quasi-Stochastic Computing

Energy-Efficient FPGA-Based Parallel Quasi-Stochastic Computing Article Eergy-Efficiet FPGA-Based Parallel Quasi-Stochastic Computig Ramu Seva, Prashathi Metku * ad Misu Choi Departmet of Computer Egieerig, Missouri Uiversity of Sciece & Techology, 4 Emerso Electric

More information

NewBlot PVDF 5X Stripping Buffer

NewBlot PVDF 5X Stripping Buffer NewBlot PVDF 5X Strippig Buffer Developed for: Odyssey Family of Imagers Please refer to your maual to cofirm that this protocol is appropriate for the applicatios compatible with your model of Odyssey

More information

9311 EN. DIGIFORCE X/Y monitoring. For monitoring press-fit, joining, rivet and caulking operations Series 9311 ±10V DMS.

9311 EN. DIGIFORCE X/Y monitoring. For monitoring press-fit, joining, rivet and caulking operations Series 9311 ±10V DMS. DIGIFORCE X/Y moitorig For moitorig press-fit, joiig, rivet ad caulkig operatios Series 9311 ±10V DMS Compatible sesors Piezo Poti Flexible Fieldbus itegratio by PROFIBUS, PROFINET or EtherNet/IP Automatic

More information

KRAMER ELECTRONICS LTD. USER MANUAL

KRAMER ELECTRONICS LTD. USER MANUAL KRAMER ELECTRONICS LTD. USER MANUAL MODEL: Projection Curved Screen Blend Guide How to blend projection images on a curved screen using the Warp Generator version K-1.4 Introduction The guide describes

More information

2.4.1 Graphics. Graphics Principles: Example Screen Format IMAGE REPRESNTATION

2.4.1 Graphics. Graphics Principles: Example Screen Format IMAGE REPRESNTATION 2.4.1 Graphics software programs available for the creation of computer graphics. (word art, Objects, shapes, colors, 2D, 3d) IMAGE REPRESNTATION A computer s display screen can be considered as being

More information

FHD inch Widescreen LCD Monitor USERGUIDE

FHD inch Widescreen LCD Monitor USERGUIDE FHD2402 24-ich Widescree LCD Moitor USERGUIDE Cotets Chapter 1: Usig Your Gateway Flat-Pael Moitor.................... 1 Coectig the moitor.................................................... 2 Coectig

More information

CRAYON. The crayons for the digital generation

CRAYON. The crayons for the digital generation The crayos for the digital geeratio ABOUT BENEFITS is a iteractive multi-touch table desiged specifically for kids. With a appealig ad fu desig, comes complete with eight games that ecourage childre to

More information

Minimum Span. Maximum Span Setting

Minimum Span. Maximum Span Setting Specificatio Magetic Flowmeters Electrodeless Series 10DX3121 Primary w/ 50CM2000 Coverter Miimum Liquid Coductivity 0.05 µs/cm. Allows may ew harsh process liquids to be measured with a magetic flowmeter.

More information

ttco.com

ttco.com ttco.com 800-237-0946 813-886-4000 The SMARTEYE COLORWISE TM True Color Sesor is the most feature packed color sesor available. Desiged to work as well as a istrumet or spectrometer, this sesor ca solve

More information

8825E/8825R/8830E/8831E SERIES

8825E/8825R/8830E/8831E SERIES FETURES IDC for 0.635mm flat ribbo cable (#30 WG, Straded) Highly reliable 2 poit coectio Low isertio ad withdrawal force Oe-Touch lockig ejector system Pateted ribbo cable cotact desig protects agaist

More information

COMMITTEE ON THE HISTORY OF THE FEDERAL RESERVE SYSTEM. Register of Papers CHARLES SUMNER HAMLIM ( )

COMMITTEE ON THE HISTORY OF THE FEDERAL RESERVE SYSTEM. Register of Papers CHARLES SUMNER HAMLIM ( ) COMMITTEE ON THE HISTORY OF THE FEDERAL RESERVE SYSTEM Register of Papers Processed: M^ Date: 1/23/56 AC. 4886 AC. 4886 ads 1-3 CHARLES SUMNER HAMLIM (1861-1938) The papers of Charles Hamli, lawyer, Assistat

More information

Part 1: Introduction to Computer Graphics

Part 1: Introduction to Computer Graphics Part 1: Introduction to Computer Graphics 1. Define computer graphics? The branch of science and technology concerned with methods and techniques for converting data to or from visual presentation using

More information

Application Example. HD Hanna. Firewire. Display. Display. Display. Display. Display. Computer DVD. Game Console. RS-232 Control.

Application Example. HD Hanna. Firewire. Display. Display. Display. Display. Display. Computer DVD. Game Console. RS-232 Control. HD Haa Applicatio Example Computer RGBHV for pass through Display RGBHV Display Compoet BNC or RCA (with adapters) Display S-Video Display Composite Video Display DVI-D or HDMI (with adapters) DVD Compoet

More information

MOBILVIDEO: A Framework for Self-Manipulating Video Streams

MOBILVIDEO: A Framework for Self-Manipulating Video Streams MOBILVIDEO: A Framework for Self-Maipulatig Video Streams Aath Grama, Wojciech Szpakowski, ad Vero Rego Departmet of Computer Scieces, Purdue Uiversity, W. Lafayette, IN 47907 fayg, spa, regog@cs.purdue.edu

More information

Displays. History. Cathode ray tubes (CRTs) Modern graphics systems. CSE 457, Autumn 2003 Graphics. » Whirlwind Computer - MIT, 1950

Displays. History. Cathode ray tubes (CRTs) Modern graphics systems. CSE 457, Autumn 2003 Graphics. » Whirlwind Computer - MIT, 1950 History Displays CSE 457, Autumn 2003 Graphics http://www.cs.washington.edu/education/courses/457/03au/» Whirlwind Computer - MIT, 1950 CRT display» SAGE air-defense system - middle 1950 s Whirlwind II

More information

COLLEGE READINESS STANDARDS

COLLEGE READINESS STANDARDS ENGLISH COLLEGE READINESS STANDARDS Score Rage 1 12 Stadards Topic Developmet i Terms of Purpose ad Focus Orgaizatio, Uity, ad Coherece Word Choice i Terms of Style, Toe, Clarity, ad Ecoomy Studets who

More information

Image Enhancement in the JPEG Domain for People with Vision Impairment

Image Enhancement in the JPEG Domain for People with Vision Impairment Image hacemet i the JPG Domai for People with Visio Impairmet Jisha Tag, Seior Member, Jeoghoo Kim, ad li Peli Abstract A image ehacemet algorithm for low-visio patiets was developed for images compressed

More information

THE Internet of Things (IoT) is likely to be incorporated

THE Internet of Things (IoT) is likely to be incorporated This is the author's versio of a article that has bee published i this oural. Chages were made to this versio by the publisher prior to publicatio. IEEE INTERNET OF THINGS JOURNAL, VOL. 5, NO. 1, FEBRUARY

More information

Sigma 3-30KS Sigma 3-30KHS

Sigma 3-30KS Sigma 3-30KHS Sigma 3-30KS Sigma 3-30KHS High-speed cetrifuge refrigerated refrigerated/ heatable www.sigma-zetrifuge.de 3 Exceptioal i every respect Sigma is a leadig iteratioal maufacturer of laboratory cetrifuges

More information

CS2401-COMPUTER GRAPHICS QUESTION BANK

CS2401-COMPUTER GRAPHICS QUESTION BANK SRI VENKATESWARA COLLEGE OF ENGINEERING AND TECHNOLOGY THIRUPACHUR. CS2401-COMPUTER GRAPHICS QUESTION BANK UNIT-1-2D PRIMITIVES PART-A 1. Define Persistence Persistence is defined as the time it takes

More information

viewing perspective projection in drawing

viewing perspective projection in drawing viewig compue gaphics viewig 28 abio pellacii 1 pespecive pojecio i dawig [Masche 24 oigial ukwo] compue gaphics viewig 28 abio pellacii 2 pespecive pojecio i dawig pespecive was o used uil cica 15h ceuy

More information

Linguistic Stereotyping in Hollywood Cinema

Linguistic Stereotyping in Hollywood Cinema Liguistic Stereotypig i Hollywood Ciema A Itroductio to Italia-America Eglishes Touba Bouchl S0918407 Eglish Laguage ad Liguistics Faculty of Humaities Leide Uiversity A. Foster D. Smakma 2015 MA Thesis

More information

Quality improvement in measurement channel including of ADC under operation conditions

Quality improvement in measurement channel including of ADC under operation conditions Quality improvemet i measuremet chael icludig of ADC uder operatio coditios 1 Romuald MASNICKI, 2 Jausz MINDYKOWSKI 1, 2 Gdyia Maritime iversity, ul. Morska 81-83, 81-225 Gdyia, POLAND, tel. (+48 58) 6109

More information

PHI 5000 VersaProbe TM Operator s Guide

PHI 5000 VersaProbe TM Operator s Guide PHI 5000 VersaProbe TM Operator s Guide Part No. 705921 Rev. A Copyright 2006 ULVAC-PHI, INC. 370 Enzo, Chigasaki, JAPAN The PHI logo ( ) is a registered trademark of ULVAC-PHI, INC. Physical Electronics,

More information

RELIABILITY EVALUATION OF REPAIRABLE COMPLEX SYSTEMS AN ANALYZING FAILURE DATA

RELIABILITY EVALUATION OF REPAIRABLE COMPLEX SYSTEMS AN ANALYZING FAILURE DATA It. J. Mech. Eg. & Rob. Res. 2013 G Gurumahesh et al., 2013 Research Paper ISSN 2278 0149 www.ijmerr.com Vol. 2, No. 1, Jauary 2013 2013 IJMERR. All Rights Reserved RELIABILITY EVALUATION OF REPAIRABLE

More information

STEEL BOXES & COVERS

STEEL BOXES & COVERS STEEL BOXES & COVERS FAN SUPPORT BOXES Boxes - 1/2" - 2-1/8" deep Protective metal cover elimiates debris etry ad damage to wire Easy-to-use slide select feature for choosig #8 ad #10 screw holes Eergy

More information

Guide to condition reports for domestic electrical installations

Guide to condition reports for domestic electrical installations Coditio rpt leaflet A5:codiio rpt leaflet A5 15022012 11:48 Page 1 Guide to coditio reports for domestic electrical istallatios Coditio rpt leaflet A5:codiio rpt leaflet A5 15022012 11:48 Page 2 Courtesy

More information

Dektak Step by Step Instructions:

Dektak Step by Step Instructions: Dektak Step by Step Instructions: Before Using the Equipment SIGN IN THE LOG BOOK Part 1: Setup 1. Turn on the switch at the back of the dektak machine. Then start up the computer. 2. Place the sample

More information

Setup Guide. EIZO Monitors. Rev. 1.4

Setup Guide. EIZO Monitors. Rev. 1.4 Setup Guide EIZO Monitors Rev. 1.4 Introduction CalMAN Display Calibration Software can automatically create optimized calibration 1D or 3D LUTs for EIZO monitors equipped with a self-calibration sensor.

More information

2 Specialty Application Photoelectric Sensors

2 Specialty Application Photoelectric Sensors SMARTEYE STEALTH-UV Lumiescet Sesor 2 Specialty Applicatio Photoelectric Sesors 2-87 Specialty Applicatio Photoelectric Sesors 2 SMARTEYE STEALTH-UV The SMARTEYE STEALTH-UV Lumiescece Sesor The SMARTEYE

More information

Manual RCA-1. Item no fold RailCom display. tams elektronik. n n n

Manual RCA-1. Item no fold RailCom display. tams elektronik. n n n Maual RCA-1 Item o. 45-02016 1-fold RailCom display Eglish RCA-1 Table of cotets 1. Gettig started...3 2. Safety istructios...5 3. Backgroud iformatio: RailCom...6 4. Operatig mode of the RCA-1...8 5.

More information

Manual WIB Carriage lighting Colour of lighting: warm white. Item no tams elektronik. tams elektronik n n n

Manual WIB Carriage lighting Colour of lighting: warm white. Item no tams elektronik. tams elektronik n n n Maual WIB-13.2 Carriage lightig Colour of lightig: warm white Item o. 53-01140 Versio 2016 with OSRAM LEDs Duris E5 tams elektroik tams elektroik Eglish WIB-13.2 Table of cotets 1. Gettig started...2 2.

More information

The Communication Method of Distance Education System and Sound Control Characteristics

The Communication Method of Distance Education System and Sound Control Characteristics 36 IJCSNS Iteratioal Joural of Computer Sciece ad Network Security, VO.6 No.7A, July 006 The Commuicatio ethod of Distace Educatio System ad Soud Cotrol Characteristics aabu Ishihara, Departmet of Electrical

More information

Module 1: Digital Video Signal Processing Lecture 3: Characterisation of Video raster, Parameters of Analog TV systems, Signal bandwidth

Module 1: Digital Video Signal Processing Lecture 3: Characterisation of Video raster, Parameters of Analog TV systems, Signal bandwidth The Lecture Contains: Analog Video Raster Interlaced Scan Characterization of a video Raster Analog Color TV systems Signal Bandwidth Digital Video Parameters of a digital video Pixel Aspect Ratio file:///d

More information

Part II: Derivation of the rules of voice-leading. The Goal. Some Abbreviations

Part II: Derivation of the rules of voice-leading. The Goal. Some Abbreviations Presetatio by Aaro Yag Huro: Toe ad Voice Part II Toe ad Voice: A Derivatio of the Rules of Voice-Leadig from Perceptual Priciples Part II: Derivatio of the rules of voice-leadig By David Huro Presetatio

More information

Video Cassette Recorder

Video Cassette Recorder 3-865-427-12(1) Video Cassette Recorder Operatig Istructios SLV-L49 MX SLV-L52 PA/PC SLV-L59 CL/CS/PR/VZ SLV-X55 MX SLV-L69HF MX SLV-L72HF PA/PC SLV-L79HF CL/CS/VZ SLV-L89HF CL/CS/MX/VZ SLV-X66HF MX 1999

More information

RHYTHM TRANSCRIPTION OF POLYPHONIC MIDI PERFORMANCES BASED ON A MERGED-OUTPUT HMM FOR MULTIPLE VOICES

RHYTHM TRANSCRIPTION OF POLYPHONIC MIDI PERFORMANCES BASED ON A MERGED-OUTPUT HMM FOR MULTIPLE VOICES Proceedigs SMC 6.8. -.9.6, Hamburg, Germay RHYTHM TRANSCRIPTION OF POLYPHONIC MIDI PERFORMANCES BASED ON A MERGED-OUTPUT HMM FOR MULTIPLE VOICES Eita Nakamura Kyoto Uiversity eakamura@sap.ist.i.kyoto-u.ac.p

More information

Setting Up the Warp System File: Warp Theater Set-up.doc 25 MAY 04

Setting Up the Warp System File: Warp Theater Set-up.doc 25 MAY 04 Setting Up the Warp System File: Warp Theater Set-up.doc 25 MAY 04 Initial Assumptions: Theater geometry has been calculated and the screens have been marked with fiducial points that represent the limits

More information

Higher-order modulation is indispensable in mobile, satellite,

Higher-order modulation is indispensable in mobile, satellite, High Throughput Probabilistic Shapig with Product Distributio Matchig Georg Böcherer, Member, IEEE, Fabia Steier, Studet Member, IEEE, Patric Schulte, Studet Member, IEEE [6] as a shapig device with forward

More information

VISUAL IDENTITY STYLE GUIDE ALUMNI ASSOCIATION CHAPTERS

VISUAL IDENTITY STYLE GUIDE ALUMNI ASSOCIATION CHAPTERS VISUAL IDENTITY STYLE GUIDE ALUMNI ASSOCIATION CHAPTERS CONFIGURATIONS ALUMNI ASSOCIATION EMPHASIS CHAPTER EMPHASIS FORMAL ALUMNI ASSOCIATION EMPHASIS CHAPTER EMPHASIS HORIZONTAL 2 COLORS BRAND.UGA.EDU

More information

Volume 20, Number 2, June 2014 Copyright 2014 Society for Music Theory

Volume 20, Number 2, June 2014 Copyright 2014 Society for Music Theory 1 of 9 Volume 2, Number 2, Jue 214 Copyright 214 Society for Music Theory Total Voice Leadig Joseph N. Straus NOTE: The examples for the (text-oly) PDF versio of this item are available olie at: http://www.mtosmt.org/issues/mto.14.2.2/mto.14.2.2.straus.php

More information

A Backlight Optimization Scheme for Video Playback on Mobile Devices

A Backlight Optimization Scheme for Video Playback on Mobile Devices A Backlight Optimizatio Scheme for Playback o Mobile Devices Liag Cheg, Shivajit Mohapatra, Magda El Zarki, Nikil Dutt ad Nalii Vekatasubramaia Doald Bre School of Iformatio ad Computer Scieces Uiversity

More information

Recognition of Human Speech using q-bernstein Polynomials

Recognition of Human Speech using q-bernstein Polynomials Iteratioal Joural of Computer Applicatios (0975 8887) Volume o.5, Jue 00 Recogitio of Huma Speech usig -Berstei Polyomials Abdulkadir Karacı Kastamou Uiversity Departmet of Computer ad Istructioal Techology

More information

SUPREME COURT OF THE STATE OF CALIFORNIA THE PEOPLE OF THE STATE OF CALIFORNIA,.) Plaintiff-Respondent~ Defendant-Appellant.

SUPREME COURT OF THE STATE OF CALIFORNIA THE PEOPLE OF THE STATE OF CALIFORNIA,.) Plaintiff-Respondent~ Defendant-Appellant. I.. : I ~... t.. " : " : " SUPREME COURT OF THE STATE OF CALIFORNIA COPy I ~... : " -~... ''.'.'-.'.~} THE PEOPLE OF THE STATE OF CALIFORNIA.) va. lcevin COOPER Plaitiff-Respodet~ Defedat-Appellat. -------------------------------------)

More information

MODELLING PERCEPTION OF SPEED IN MUSIC AUDIO

MODELLING PERCEPTION OF SPEED IN MUSIC AUDIO MODELLING PERCEPTION OF SPEED IN MUSIC AUDIO Aders Elowsso KTH Royal Istitute of Techology CSC, Dept. of Speech, Music ad Hearig elov@kth.se Aders Friberg KTH Royal Istitute of Techology CSC, Dept. of

More information

The Blizzard Challenge 2014

The Blizzard Challenge 2014 The Blizzard Challege 2014 1 Kishore Prahallad, 1 Aadaswarup Vadapalli, 1 Satosh Kesiraju, 2 Hema A. Murthy 3 Swara Lata, 4 T. Nagaraja, 5 Mahadeva Prasaa, 6 Hemat Patil, 7 Ail Kumar Sao 8 Simo Kig, 9

More information

A Simulation Experiment on a Built-In Self Test Equipped with Pseudorandom Test Pattern Generator and Multi-Input Shift Register (MISR)

A Simulation Experiment on a Built-In Self Test Equipped with Pseudorandom Test Pattern Generator and Multi-Input Shift Register (MISR) A Simulatio Experimet o a Built-I Self Test Equipped with Pseudoradom Test Patter Geerator ad Multi-Iput Shift Register (MISR) Afaq Ahmad Departmet of Electrical ad Computer Egieerig College of Egieerig,

More information

2 Specialty Application Photoelectric Sensors

2 Specialty Application Photoelectric Sensors SMARTEYE STEALTH-UV Lumiescece Sesor 2 Specialty Applicatio Photoelectric Sesors 2-87 Specialty Applicatio Photoelectric Sesors 2 SMARTEYE STEALTH-UV The SMARTEYE STEALTH-UV Lumiescece Sesor The SMARTEYE

More information

Research on the Classification Algorithms for the Classical Poetry Artistic Conception based on Feature Clustering Methodology. Jin-feng LIANG 1, a

Research on the Classification Algorithms for the Classical Poetry Artistic Conception based on Feature Clustering Methodology. Jin-feng LIANG 1, a 2d Iteratioal Coferece o Electrical, Computer Egieerig ad Electroics (ICECEE 2015) Research o the Classificatio Algorithms for the Classical Poetry Artistic Coceptio based o Feature Clusterig Methodology

More information

Twin City Fan & Blower

Twin City Fan & Blower Twi City Fa & Blower BULLETIN 490 February 2010 MODULAR PLENUM FANS TYPE MPQN Modular Pleum Fas The MPQN offers may of the same advatages of the veerable EPQN pleum fa. The MPQN ca be used as a sigle fa

More information

Read Only Memory (ROM)

Read Only Memory (ROM) ECE 545 igital System esig with VHL Lecture A igital Logic Reresher Part A Combiatioal Logic Buildig Blocks Cot. Problem 2 What is a size o ROM with a 4-bit address iput ad a 8-bit data output? What is

More information

3. Displays and framebuffers

3. Displays and framebuffers 3. Displays and framebuffers 1 Reading Required Angel, pp.19-31. Hearn & Baker, pp. 36-38, 154-157. Optional Foley et al., sections 1.5, 4.2-4.5 I.E. Sutherland. Sketchpad: a man-machine graphics communication

More information

NexLine AD Power Line Adaptor INSTALLATION AND OPERATION MANUAL. Westinghouse Security Electronics an ISO 9001 certified company

NexLine AD Power Line Adaptor INSTALLATION AND OPERATION MANUAL. Westinghouse Security Electronics an ISO 9001 certified company NexLie AD 4302 Power Lie Adaptor INSTALLATION AND OPERATION MANUAL Westighouse Security Electroics a ISO 9001 certified compay 5452 Betsy Ross Drive Sata Clara, CA 95054-1184 (408) 727-5170 FAX (408) 727-6707

More information

7thSense Design Delta Media Server

7thSense Design Delta Media Server 7thSense Design Delta Media Server Channel Alignment Guide: Warping and Blending Original by Andy B Adapted by Helen W (November 2015) 1 Trademark Information Delta, Delta Media Server, Delta Nano, Delta

More information

Tobacco Range. Biaxially Oriented Polypropylene Films and Labels. use our imagination...

Tobacco Range. Biaxially Oriented Polypropylene Films and Labels. use our imagination... Tobacco Rage Biaxially Orieted Polypropylee Films ad Labels use our imagiatio... Tobacco Rage Leader i Films Iovia Films has bee supplyig overwrap films to the tobacco idustry for over 70 years. We are

More information

Background Manuscript Music Data Results... sort of Acknowledgments. Suite, Suite Phylogenetics. Michael Charleston and Zoltán Szabó

Background Manuscript Music Data Results... sort of Acknowledgments. Suite, Suite Phylogenetics. Michael Charleston and Zoltán Szabó Suite, Suite Phylogeetics /5 Suite, Suite Phylogeetics Michael Charlesto ad Zoltá Szabó michael.charlesto@sydey.edu.au November 5th, 20 Suite, Suite Phylogeetics 2/5 S Bach oha Sebastia Bach was bor i

More information

Table of content. Table of content Introduction Concepts Hardware setup...4

Table of content. Table of content Introduction Concepts Hardware setup...4 Table of content Table of content... 1 Introduction... 2 1. Concepts...3 2. Hardware setup...4 2.1. ArtNet, Nodes and Switches...4 2.2. e:cue butlers...5 2.3. Computer...5 3. Installation...6 4. LED Mapper

More information

Warranty Registration System Help us to serve you better by registering your product for Warranty

Warranty Registration System Help us to serve you better by registering your product for Warranty Warraty Registratio System Help us to serve you better by registerig your product for Warraty Web Register at www.oida.com Telephoe Call Cetre No. 0XX-39889000(0XX-STD Code of 5 STAR State Capital) Post

More information

Debugging Agent Interactions: a Case Study

Debugging Agent Interactions: a Case Study Debuggig Aget Iteractios: a ase Study David later Natioal Istitute of Stadards ad Techology 100 Bureau Drive Stop 8260 Gaithersburg MD 20899-8260 USA 2000-05-31 Abstract The otract Net protocol is a geeral-purpose

More information

Mathematics and Beauty

Mathematics and Beauty Paul Erest uravels the complexity of the otio W e are ofte cofroted with complex ad fasciatig mathematics-based images i the media icludig televisio, magazies, books, ewspapers, posters, films, iteret,

More information

Internet supported Analysis of MPEG Compressed Newsfeeds

Internet supported Analysis of MPEG Compressed Newsfeeds Proceedigs of the IASTED Iteratioal Coferece Iteret ad Multimedia Systems ad Applicatios October 18-21, 1999 Nassau, Bahamas Iteret supported Aalysis of MPEG Compressed Newsfeeds Guido FALKEMEIER, Gerhard

More information

TABLE OF CONTENTS. General Specifications...4 Crimp Contact Information...4

TABLE OF CONTENTS. General Specifications...4 Crimp Contact Information...4 inside front cover TABLE OF COTETS IDUSTRIAL CIRCULAR COECTORS General Specifications... Crimp Contact Information... LOGIC Panelmount Receptacles... Standard Plugs... Inline Connectors... Conduit Adapter

More information

FOURSQUARE BRAND GUIDE LOGO USAGE. Brand Guide FALL 2014

FOURSQUARE BRAND GUIDE LOGO USAGE. Brand Guide FALL 2014 FOURSQUARE BRAND GUIDE LOGO USAGE 1 Brand Guide FALL 2014 FOURSQUARE BRAND GUIDE INTRODUCTION 2 The Foursquare brand is more than just a logo. It is a visual system and language made up of many parts that

More information

What Does it Take to Build a Complete Test Flow for 3-D IC?

What Does it Take to Build a Complete Test Flow for 3-D IC? What Does it Take to Build a Complete Test Flow for 3-D IC? Brio Keller, Bassilios Petrakis, Cadece Thaks to : Sadeep Goel, TSMC EDPS, Moterey, CA April 5-6, 202 Ackowledgemets TSMC Ashok Mehta imec Erik

More information