CS 664 Slides #7 Visual Motion. Prof. Dan Huttenlocher Fall 2003
|
|
- Birgitta Månsson
- för 6 år sedan
- Visningar:
Transkript
1 CS 664 Slides #7 Visual Motion Prof. Dan Huttenlocher Fall 2003
2 Visual Motion Over sequence of images can determine which pixels move where Differs from motion in the world Camera motion Pan, tilt, zoom Motion parallax Information about depth from camera motion Scene motion Reveals independent objects and behaviors Un-detectable motion No/low intensity variation 2
3 Some Uses of Visual Motion Human-machine interaction Animation, gestures, facial expressions Surveillance and monitoring Tracking and analyzing behaviors Collision detection and avoidance Camera stabilization Remove jitter Autonomous navigation Path finding and depth from parallax Constructing panoramic mosaics 3
4 Motion Analysis in Video Video insertion Compute motion in one image sequence Use to transform frames of another sequence and superimpose Today used to insert signs and markings into sporting events Panoramic mosaics Synthesized views from video sequence 4
5 Estimating Visual Motion Historically two different approaches Direct methods, based on local image derivatives at each pixel Feature based methods, sparse correspondence We will focus on direct methods Used most in practice Recover image motion from spatio-temporal variations in brightness Dense estimates but can be sensitive to variations in appearance 5
6 Direct Motion Estimation Methods Based on the following assumptions Every pixel in image I goes to some location in subsequent image J Overall brightness of images I,J does not change (much) Called brightness constancy equation I(x,y) J(x+u(x,y), y+v(x,y)) I J u v 0 0 6
7 Using Brightness Constancy Minimization formulation Seek (u(x,y),v(x,y)) minimizing error (I(x,y)-J(x+u(x,y),y+v(x,y)) 2 Not practical to search explicitly! Linearization Relate motion to image derivatives Gradient constraint Assuming small u,v (on order of a pixel) First order term of Taylor series expansion of brightness constancy 7
8 Gradient Constraint One-dimensional example linearization Estimate displacement d using derivative Two functions f(x) and g(x)=f(x-d) Taylor series expansion f(x-d) = f(x) d f (x) + E Where f denotes derivative Now write difference as f(x)-g(x) = d f (x) + E Neglecting higher order terms δ = (f(x)-g(x))/f (x) Note only for small d f g x f g x 8
9 Gradient Constraint (or Optical Flow Constraint) Same approach extends naturally to 2D I(x,y) J(x+u,y+v), u=u(x,y), v=v(x,y) Assume time-varying image intensity well approximated by first order Taylor series J(x+u,y+v) I(x,y)+I x (x,y) u+i y (x,y) v+i t Substituting I x (x,y) u+i y (x,y) v -I t Using gradient notation I (u,v) -I t Linear constraint on motion (u,v) at each pixel Can only estimate motion in gradient direction 9
10 Aperture Problem (Normal Flow) Can only measure motion in direction normal to edge (along gradient) 10
11 Aperture Problem (Normal Flow) Gradient constraint defines line in (u,v) space I (u,v) -I t Methods based solely on per pixel estimates don t work well v u 11
12 Combining Local Constraints Each pixel defines linear constraint on possible (u,v) displacement For set of pixels with same displacement combine constraints to get estimate For pixels with different displacements, somehow identify that is case v v u u 12
13 Translational Motion Assume single displacement (u,v) for all pixels within some region of image Over-constrained system of linear equations I x (x,y) u+i y (x,y) v=-i t Find least squares solution In matrix form: min z Dz - t where D = I x (x 1,y 1 ) I y (x 1,y 1 ) I x (x n,y n ) I y (x n,y n ) and t = [I t (x 1,y 1 ) I t (x n,y n )] T 13
14 Least Squares Solution z * = (D T D) -1 D T t Method of normal equations, can derive from setting partial derivatives to zero Σ I x 2 Σ I x I y Σ I x I y D T D = D T t = Σ I y 2 Inverse of 2x2 closed form a b A = A -1 = 1/(ad-bc) c d Σ I x I t Σ I y I t d-b -c a Where det(a)=ad-bc not (near) zero 14
15 Translational Motion Can estimate small translation over local patch around each pixel Fast using box sums Note relation to corner detection Poor estimate if A nearly singular Also poor if patch contains more than one underlying motion Better handling of multiple motions Robust statistical techniques Handling larger translations Pyramid method 15
16 Multiple Motions Robust statistical techniques for finding predominant motion in a region Consider approach of iteratively reweighted least squares (IRLS) As illustration of robust methods Generalize minimization problem to min z W(Dz t) Weight matrix W is diagonal Lessen importance of pixels that don t match Iterate to find good weights Note in unweighted case W is identity matrix 16
17 Finding Predominant Motion Minimization generalizes in obvious way z * = (D T W 2 D) -1 D T W 2 t Determining good weights to use Start by computing least squares solution, z 0 Iteratively compute better solutions Compute error for each pixel based on previous solution z k-1 and use that to set weight per pixel Depends on initial solution being good enough to allow bad pixels to have largest error Have to measure error based on image intensity matches, it s the only thing we can measure 17
18 Updating Weights To solve for z k given z k-1 Create weights W k =diag(w 1k w nk ) where w ik = 1 if r i k-1 c c/r i k-1 otherwise Where r i k-1 is measure of error at i-th pixel with motion estimate from iteration k-1 Compare i-th pixel value to matching pixel of other image (using z k-1 for correspondence) And c is set based on robust measure of good versus bad data, such as median Common value is 1/.6745 median(r i k-1 ) 18
19 Weights Example z k I r i k-1 : 0,0,1,0,1,1,6,5,6 J median = 1 c 1.48 w i k : 1,1,1,1,1,1,.24,.29,.24 19
20 Global Motion Estimation Estimate motion vectors that are parameterized over some region Each vector fits some low-order model of how vectors change Affine motion model is commonly used u(x,y) = a 1 +a 2 x+a 3 y v(x,y) = a 4 + a 5 x +a 6 y Substituting into grad. constr. equation I x (a 1 +a 2 x+a 3 y) + I y (a 4 + a 5 x +a 6 y) -I t Each pixel provides a linear constraint in six unknowns 20
21 Affine Transformations Consider points (x,y) in plane rather than vectors for the moment Linear transformation and translation x = a 1 +a 2 x+a 3 y y = a 4 + a 5 x +a 6 y In matrix form A(z)=Lz+b x y = a 2 a 3 x a 5 a 6 y + a 1 a 4 Maps any triangle to any triangle Defined by three corresponding pairs of points 21
22 Why Affine Transformations Simple (and often inaccurate) model of projection Point (x,y,z) in space maps to (x,y) in image Orthographic or parallel projection Somewhat reasonable model for telephoto lens Yields affine transformation of plane for viewing flat objects 3D rotation, translation followed by orthographic projection and scaling 22
23 Affine Motion Estimation Minimization problem become that of estimating the parameters a 1, a 6 Rather than just two parameters u,v Still (over-constrained) linear system but in more unknowns Again use least squares to solve Separable into two independent 3 variable problems a 1, a 2, a 3 reflect only u-component of motion a 4, a 5, a 6 reflect only v-component of motion 23
24 Affine Motion Equations Again compute (D T D) -1 D T t Or (re)weighted version for IRLS Now two 3x3 problems, one for I x and one for I y, as opposed to single 2x2 problem Problem for I x and u motion (I y analogous) T remains same, D changes I x1 x 1 I x1 y 1 I x1 D = I xn x n I xn y n I xn 24
25 Multiple (Layered) Motions Combining global parametric motion estimation with robust estimation Calculate predominant parameterized motion over entire image (e.g., affine) Corresponds to largest planar surface in scene under orthographic projection If doesn t occupy majority of pixels robust estimator will probably fail to recover its motion Outlier pixels (low weights in IRLS) are not part of this surface Recursively try estimating their motion If no good estimate, then remain outliers 25
26 Other Global Motion Models The affine model is simple but not that accurate in some imaging situations For instance pinhole rather than parallel camera model for closer objects Non-planar surfaces Explicit modeling of motion parallax Projective planar case x = (h 1 +h 2 x+h 3 y)/(h 7 +h 8 x+h 9 y) y = (h 4 +h 5 x+h 6 y)/(h 7 +h 8 x+h 9 y) and u=x -x, v=y -y 3D models such as residual planar parallax 26
27 Handling Larger Motions Methods based on image gradients are restricted to small displacements Two different approaches Abandon gradient method and explicitly search over possible translations Computationally expensive to do for every pixel Consider shifts and products of image patch Block motion provides estimates just for certain pixels, used in compression (e.g., MPEG) Pyramid to guarantee small motions At top level small motion At each level small deviation from one above 27
28 Coarse to Fine Motion Estimation Estimate residual motion at each level of Gaussian pyramid 1/2 k res I k,j k ½ res I 1,J 1 Original I 0,J 0 Pyramid of image I Pyramid of image J 28
29 Coarse to Fine Estimation Compute M k, estimate of motion at level k Can be local motion estimate (u k,v k ) Vector field with motion of patch at each pixel Can be global motion estimate Parametric model (e.g., affine) of dominant motion for entire image Choose max k such that motion about one pixel Apply M k at level k-1 and estimate remaining motion at that level, iterate Local estimates: shift I k by 2(u k,v k ) Global estimates: apply inverse transform to J k-1 29
30 Global Motion Coarse to Fine Compute transformation Tk mapping pixels of I k to J k Warp image J k-1 using T k Apply inverse of T k Double resolution of T k (translations double) Compute transformation T k-1 mapping pixels of I k to warped J k-1 Estimate of residual motion at this level Total estimate of motion at this level is composition of T k-1 and resolution doubled T k In case of translation just add them 30
31 Affine Mosaic Example Coarse-to-fine affine motion Pan tilt camera sweeping repeatedly over scene Moving objects removed from background Outliers in motion estimate, use other scans 31
32 SSD An alternative to gradient based methods is template matching Treat a rectangle around each pixel as a template to find best match in other image Search over possible translations minimizing some error criterion (or maximizing quality) Generally use sum squared difference (SSD) ΣΣ(I(x,y)-J(x+u,y+v)) 2 Sometimes compute cross correlation Compute over local neighborhood 32
12.6 Heat equation, Wave equation
12.6 Heat equation, 12.2-3 Wave equation Eugenia Malinnikova, NTNU September 26, 2017 1 Heat equation in higher dimensions The heat equation in higher dimensions (two or three) is u t ( = c 2 2 ) u x 2
Isometries of the plane
Isometries of the plane Mikael Forsberg August 23, 2011 Abstract Här följer del av ett dokument om Tesselering som jag skrivit för en annan kurs. Denna del handlar om isometrier och innehåller bevis för
Solutions to exam in SF1811 Optimization, June 3, 2014
Solutions to exam in SF1811 Optimization, June 3, 14 1.(a) The considered problem may be modelled as a minimum-cost network flow problem with six nodes F1, F, K1, K, K3, K4, here called 1,,3,4,5,6, and
1. Compute the following matrix: (2 p) 2. Compute the determinant of the following matrix: (2 p)
UMEÅ UNIVERSITY Department of Mathematics and Mathematical Statistics Pre-exam in mathematics Linear algebra 2012-02-07 1. Compute the following matrix: (2 p 3 1 2 3 2 2 7 ( 4 3 5 2 2. Compute the determinant
8 < x 1 + x 2 x 3 = 1, x 1 +2x 2 + x 4 = 0, x 1 +2x 3 + x 4 = 2. x 1 2x 12 1A är inverterbar, och bestäm i så fall dess invers.
MÄLARDALENS HÖGSKOLA Akademin för utbildning, kultur och kommunikation Avdelningen för tillämpad matematik Examinator: Erik Darpö TENTAMEN I MATEMATIK MAA150 Vektoralgebra TEN1 Datum: 9januari2015 Skrivtid:
Pre-Test 1: M0030M - Linear Algebra.
Pre-Test : M3M - Linear Algebra. Test your knowledge on Linear Algebra for the course M3M by solving the problems in this test. It should not take you longer than 9 minutes. M3M Problem : Betrakta fyra
Module 1: Functions, Limits, Continuity
Department of mathematics SF1625 Calculus 1 Year 2015/2016 Module 1: Functions, Limits, Continuity This module includes Chapter P and 1 from Calculus by Adams and Essex and is taught in three lectures,
Tentamen i Matematik 2: M0030M.
Tentamen i Matematik 2: M0030M. Datum: 203-0-5 Skrivtid: 09:00 4:00 Antal uppgifter: 2 ( 30 poäng ). Examinator: Norbert Euler Tel: 0920-492878 Tillåtna hjälpmedel: Inga Betygsgränser: 4p 9p = 3; 20p 24p
F ξ (x) = f(y, x)dydx = 1. We say that a random variable ξ has a distribution F (x), if. F (x) =
Problems for the Basic Course in Probability (Fall 00) Discrete Probability. Die A has 4 red and white faces, whereas die B has red and 4 white faces. A fair coin is flipped once. If it lands on heads,
Kurskod: TAMS28 MATEMATISK STATISTIK Provkod: TEN1 05 June 2017, 14:00-18:00. English Version
Kurskod: TAMS28 MATEMATISK STATISTIK Provkod: TEN1 5 June 217, 14:-18: Examiner: Zhenxia Liu (Tel: 7 89528). Please answer in ENGLISH if you can. a. You are allowed to use a calculator, the formula and
(D1.1) 1. (3p) Bestäm ekvationer i ett xyz-koordinatsystem för planet som innehåller punkterna
Högsolan i Sövde (SK) Tentamen i matemati Kurs: MA4G Linjär algebra MAG Linjär algebra för ingenjörer Tentamensdag: 4-8-6 l 4.-9. Hjälpmedel : Inga hjälpmedel utöver bifogat formelblad. Ej ränedosa. Tentamen
denna del en poäng. 1. (Dugga 1.1) och v = (a) Beräkna u (2u 2u v) om u = . (1p) och som är parallell
Kursen bedöms med betyg, 4, 5 eller underänd, där 5 är högsta betyg. För godänt betyg rävs minst 4 poäng från uppgifterna -7. Var och en av dessa sju uppgifter an ge maximalt poäng. För var och en av uppgifterna
Tentamen i Matematik 3: M0031M.
Tentamen i Matematik 3: M0031M. Datum: 2009-10-26 Skrivtid: 09:00 14:00 Antal uppgifter: 6 ( 30 poäng ). Jourhavande lärare: Norbert Euler Telefon: 0920-492878 Tillåtna hjälpmedel: Inga Till alla uppgifterna
This exam consists of four problems. The maximum sum of points is 20. The marks 3, 4 and 5 require a minimum
Examiner Linus Carlsson 016-01-07 3 hours In English Exam (TEN) Probability theory and statistical inference MAA137 Aids: Collection of Formulas, Concepts and Tables Pocket calculator This exam consists
Viktig information för transmittrar med option /A1 Gold-Plated Diaphragm
Viktig information för transmittrar med option /A1 Gold-Plated Diaphragm Guldplätering kan aldrig helt stoppa genomträngningen av vätgas, men den får processen att gå långsammare. En tjock guldplätering
Graphs (chapter 14) 1
Graphs (chapter ) Terminologi En graf är en datastruktur som består av en mängd noder (vertices) och en mängd bågar (edges) en båge är ett par (a, b) av två noder en båge kan vara cyklisk peka på sig själv
and Mathematical Statistics Gerold Jäger 9:00-15:00 T Compute the following matrix
Umeå University Exam in mathematics Department of Mathematics Linear algebra and Mathematical Statistics 2012-02-24 Gerold Jäger 9:00-15:00 T ( ) 1 1 2 5 4 1. Compute the following matrix 7 8 (2 p) 2 3
Support Manual HoistLocatel Electronic Locks
Support Manual HoistLocatel Electronic Locks 1. S70, Create a Terminating Card for Cards Terminating Card 2. Select the card you want to block, look among Card No. Then click on the single arrow pointing
Algoritmer och Komplexitet ht 08. Övning 6. NP-problem
Algoritmer och Komplexitet ht 08. Övning 6 NP-problem Frekvensallokering Inom mobiltelefonin behöver man lösa frekvensallokeringsproblemet som lyder på följande sätt. Det finns ett antal sändare utplacerade.
LUNDS TEKNISKA HÖGSKOLA Institutionen för Elektro- och Informationsteknik
LUNDS TEKNISKA HÖGSKOLA Institutionen för Elektro- och Informationsteknik SIGNALBEHANDLING I MULTIMEDIA, EITA50, LP4, 209 Inlämningsuppgift av 2, Assignment out of 2 Inlämningstid: Lämnas in senast kl
Rastercell. Digital Rastrering. AM & FM Raster. Rastercell. AM & FM Raster. Sasan Gooran (VT 2007) Rastrering. Rastercell. Konventionellt, AM
Rastercell Digital Rastrering Hybridraster, Rastervinkel, Rotation av digitala bilder, AM/FM rastrering Sasan Gooran (VT 2007) Önskat mått * 2* rastertätheten = inläsningsupplösning originalets mått 2
Preschool Kindergarten
Preschool Kindergarten Objectives CCSS Reading: Foundational Skills RF.K.1.D: Recognize and name all upper- and lowercase letters of the alphabet. RF.K.3.A: Demonstrate basic knowledge of one-toone letter-sound
and u = och x + y z 2w = 3 (a) Finn alla lösningar till ekvationssystemet
Kursen bedöms med betyg,, 5 eller underkänd, där 5 är högsta betyg. För godkänt betyg krävs minst poäng från uppgifterna -7. Var och en av dessa sju uppgifter kan ge maximalt poäng. För var och en av uppgifterna
Tentamen i Matematik 2: M0030M.
Tentamen i Matematik 2: M0030M. Datum: 2010-01-12 Skrivtid: 09:00 14:00 Antal uppgifter: 6 ( 30 poäng ). Jourhavande lärare: Norbert Euler Telefon: 0920-492878 Tillåtna hjälpmedel: Inga Till alla uppgifterna
Högskolan i Skövde (SK, JS) Svensk version Tentamen i matematik
Högskolan i Skövde (SK, JS) Svensk version Tentamen i matematik Kurs: MA152G Matematisk Analys MA123G Matematisk analys för ingenjörer Tentamensdag: 2012-03-24 kl 14.30-19.30 Hjälpmedel : Inga hjälpmedel
Swedish adaptation of ISO TC 211 Quality principles. Erik Stenborg
Swedish adaptation of ISO TC 211 Quality principles The subject How to use international standards Linguistic differences Cultural differences Historical differences Conditions ISO 19100 series will become
1. Varje bevissteg ska motiveras formellt (informella bevis ger 0 poang)
Tentamen i Programmeringsteori Institutionen for datorteknik Uppsala universitet 1996{08{14 Larare: Parosh A. A., M. Kindahl Plats: Polacksbacken Skrivtid: 9 15 Hjalpmedel: Inga Anvisningar: 1. Varje bevissteg
NP-fullständighetsbevis
Algoritmer, datastrukturer och komplexitet, hösten 2016 Uppgifter till övning 9 NP-fullständighetsbevis På denna övning är det också inlämning av skriftliga lösningar av teoriuppgifterna till labb 4 och
Module 4 Applications of differentiation
Department of mathematics SF1625 Calculus 1 Year 2015/2016 Module 4 Applications of differentiation Chapter 4 of Calculus by Adams and Essex. Three lectures, two tutorials, one seminar. Important concepts.
Sammanfattning hydraulik
Sammanfattning hydraulik Bernoullis ekvation Rörelsemängdsekvationen Energiekvation applikationer Rörströmning Friktionskoefficient, Moody s diagram Pumpsystem BERNOULLI S EQUATION 2 p V z H const. Quantity
Hur fattar samhället beslut när forskarna är oeniga?
Hur fattar samhället beslut när forskarna är oeniga? Martin Peterson m.peterson@tue.nl www.martinpeterson.org Oenighet om vad? 1.Hårda vetenskapliga fakta? ( X observerades vid tid t ) 1.Den vetenskapliga
FORTA M315. Installation. 218 mm.
1 Installation 2 1 2 1 218 mm. 1 2 4 5 6 7 8 9 2 G, G0= Max 100 m 1.5 mm² (AWG 15) X1, MX, Y, VH, VC = Max 200 m 0.5 mm² (AWG 20) Y X1 MX VH VC G1 G0 G 0 V 24 V~ IN 0-10 0-5, 2-6 60 s OP O 1 2 4 5 6 7
Second handbook of research on mathematics teaching and learning (NCTM)
Second handbook of research on mathematics teaching and learning (NCTM) The effects of classroom mathematics teaching on students learning. (Hiebert & Grouws, 2007) Inledande observationer Undervisningens
Kurskod: TAMS11 Provkod: TENB 28 August 2014, 08:00-12:00. English Version
Kurskod: TAMS11 Provkod: TENB 28 August 2014, 08:00-12:00 Examinator/Examiner: Xiangfeng Yang (Tel: 070 2234765) a. You are permitted to bring: a calculator; formel -och tabellsamling i matematisk statistik
Stad + Data = Makt. Kart/GIS-dag SamGIS Skåne 6 december 2017
Smart@Helsingborg Stadsledningsförvaltningen Digitaliseringsavdelningen the World s most engaged citizens Stad + Data = Makt Kart/GIS-dag SamGIS Skåne 6 december 2017 Photo: Andreas Fernbrant Urbanisering
Styrteknik: Binära tal, talsystem och koder D3:1
Styrteknik: Binära tal, talsystem och koder D3:1 Digitala kursmoment D1 Boolesk algebra D2 Grundläggande logiska funktioner D3 Binära tal, talsystem och koder Styrteknik :Binära tal, talsystem och koder
Chapter 2: Random Variables
Chapter 2: Random Variables Experiment: Procedure + Observations Observation is an outcome Assign a number to each outcome: Random variable 1 Three ways to get an rv: Random Variables The rv is the observation
Rep MEK föreläsning 2
Rep MEK föreläsning 2 KRAFTER: Kontaktkrafter, Distanskrafter FRILÄGGNING NI: Jämviktsekv. Σ F = 0; Σ F = 0, Σ F = 0, Σ F = 0 x y z NII: Σ F = ma; Σ F = ma, Σ F = ma, Σ F = ma x x y y z z NIII: Kraft-Motkraft
Grafisk teknik IMCDP IMCDP IMCDP. IMCDP(filter) Sasan Gooran (HT 2006) Assumptions:
IMCDP Grafisk teknik The impact of the placed dot is fed back to the original image by a filter Original Image Binary Image Sasan Gooran (HT 2006) The next dot is placed where the modified image has its
English Version. Number of sold cakes Number of days
Kurskod: TAMS24 (Statistisk teori / Provkod: TEN 206-0-04 (kl. 8-2 Examinator/Examiner: Xiangfeng Yang (Tel: 070 089666. Please answer in ENGLISH if you can. a. You are permitted to bring: a calculator;
Grafisk teknik IMCDP. Sasan Gooran (HT 2006) Assumptions:
Grafisk teknik Sasan Gooran (HT 2006) Iterative Method Controlling Dot Placement (IMCDP) Assumptions: The original continuous-tone image is scaled between 0 and 1 0 and 1 represent white and black respectively
Calculate check digits according to the modulus-11 method
2016-12-01 Beräkning av kontrollsiffra 11-modulen Calculate check digits according to the modulus-11 method Postadress: 105 19 Stockholm Besöksadress: Palmfeltsvägen 5 www.bankgirot.se Bankgironr: 160-9908
Ett hållbart boende A sustainable living. Mikael Hassel. Handledare/ Supervisor. Examiner. Katarina Lundeberg/Fredric Benesch
Ett hållbart boende A sustainable living Mikael Hassel Handledare/ Supervisor Examinator/ Examiner atarina Lundeberg/redric Benesch Jes us Azpeitia Examensarbete inom arkitektur, grundnivå 15 hp Degree
Tentamen MMG610 Diskret Matematik, GU
Tentamen MMG610 Diskret Matematik, GU 2017-01-04 kl. 08.30 12.30 Examinator: Peter Hegarty, Matematiska vetenskaper, Chalmers/GU Telefonvakt: Peter Hegarty, telefon: 0766 377 873 Hjälpmedel: Inga hjälpmedel,
A study of the performance
A study of the performance and utilization of the Swedish railway network Anders Lindfeldt Royal Institute of Technology 2011-02-03 Introduction The load on the railway network increases steadily, and
Problem som kan uppkomma vid registrering av ansökan
Problem som kan uppkomma vid registrering av ansökan Om du har problem med din ansökan och inte kommer vidare kan det bero på det som anges nedan - kolla gärna igenom detta i första hand. Problem vid registrering
Kurskod: TAMS11 Provkod: TENB 07 April 2015, 14:00-18:00. English Version
Kurskod: TAMS11 Provkod: TENB 07 April 2015, 14:00-18:00 Examiner: Xiangfeng Yang (Tel: 070 2234765). Please answer in ENGLISH if you can. a. You are allowed to use: a calculator; formel -och tabellsamling
Michael Q. Jones & Matt B. Pedersen University of Nevada Las Vegas
Michael Q. Jones & Matt B. Pedersen University of Nevada Las Vegas The Distributed Application Debugger is a debugging tool for parallel programs Targets the MPI platform Runs remotley even on private
Grafisk teknik. Sasan Gooran (HT 2006)
Grafisk teknik Sasan Gooran (HT 2006) Iterative Method Controlling Dot Placement (IMCDP) Assumptions: The original continuous-tone image is scaled between 0 and 1 0 and 1 represent white and black respectively
SVENSK STANDARD SS-EN ISO 19108:2005/AC:2015
SVENSK STANDARD SS-EN ISO 19108:2005/AC:2015 Fastställd/Approved: 2015-07-23 Publicerad/Published: 2016-05-24 Utgåva/Edition: 1 Språk/Language: engelska/english ICS: 35.240.70 Geografisk information Modell
Adding active and blended learning to an introductory mechanics course
Adding active and blended learning to an introductory mechanics course Ulf Gran Chalmers, Physics Background Mechanics 1 for Engineering Physics and Engineering Mathematics (SP2/3, 7.5 hp) 200+ students
2(x + 1) x f(x) = 3. Find the area of the surface generated by rotating the curve. y = x 3, 0 x 1,
MÄLARDALEN UNIVERSITY School of Education, Culture and Communication Department of Applied Mathematics Examiner: Lars-Göran Larsson EXAMINATION IN MATHEMATICS MAA5 Single Variable Calculus, TEN Date: 06--0
Module 6: Integrals and applications
Department of Mathematics SF65 Calculus Year 5/6 Module 6: Integrals and applications Sections 6. and 6.5 and Chapter 7 in Calculus by Adams and Essex. Three lectures, two tutorials and one seminar. Important
Kurskod: TAMS24 / Provkod: TEN (8:00-12:00) English Version
Kurskod: TAMS24 / Provkod: TEN 25-8-7 (8: - 2:) Examinator/Examiner: Xiangfeng Yang (Tel: 7 2234765). Please answer in ENGLISH if you can. a. You are permitted to bring: a calculator; formel -och tabellsamling
http://marvel.com/games/play/31/create_your_own_superhero http://www.heromachine.com/
Name: Year 9 w. 4-7 The leading comic book publisher, Marvel Comics, is starting a new comic, which it hopes will become as popular as its classics Spiderman, Superman and The Incredible Hulk. Your job
Writing with context. Att skriva med sammanhang
Writing with context Att skriva med sammanhang What makes a piece of writing easy and interesting to read? Discuss in pairs and write down one word (in English or Swedish) to express your opinion http://korta.nu/sust(answer
och v = 1 och vektorn Svar 11x 7y + z 2 = 0 Enligt uppgiftens information kan vi ta vektorerna 3x + 2y + 2z = 1 y z = 1 6x + 6y + 2z = 4
Kursen bedöms med betyg, 4, eller underkänd, där är högsta betyg. För godkänt betyg krävs minst 4 poäng från uppgifterna -7. Var och en av dessa sju uppgifter kan ge maximalt poäng. För var och en av uppgifterna
Statistical Quality Control Statistisk kvalitetsstyrning. 7,5 högskolepoäng. Ladok code: 41T05A, Name: Personal number:
Statistical Quality Control Statistisk kvalitetsstyrning 7,5 högskolepoäng Ladok code: 41T05A, The exam is given to: 41I02B IBE11, Pu2, Af2-ma Name: Personal number: Date of exam: 1 June Time: 9-13 Hjälpmedel
Kurskod: TAIU06 MATEMATISK STATISTIK Provkod: TENA 15 August 2016, 8:00-12:00. English Version
Kurskod: TAIU06 MATEMATISK STATISTIK Provkod: TENA 15 August 2016, 8:00-12:00 Examiner: Xiangfeng Yang (Tel: 070 0896661). Please answer in ENGLISH if you can. a. Allowed to use: a calculator, Formelsamling
Resultat av den utökade första planeringsövningen inför RRC september 2005
Resultat av den utökade första planeringsövningen inför RRC-06 23 september 2005 Resultat av utökad första planeringsövning - Tillägg av ytterligare administrativa deklarationer - Variant (av case 4) med
Webbregistrering pa kurs och termin
Webbregistrering pa kurs och termin 1. Du loggar in på www.kth.se via den personliga menyn Under fliken Kurser och under fliken Program finns på höger sida en länk till Studieöversiktssidan. På den sidan
KTH MMK JH TENTAMEN I HYDRAULIK OCH PNEUMATIK allmän kurs 2006-12-18 kl 09.00 13.00
KTH MMK JH TENTAMEN I HYDRAULIK OCH PNEUMATIK allmän kurs 2006-12-18 kl 09.00 13.00 Svaren skall vara läsligt skrivna och så uppställda att lösningen går att följa. När du börjar på en ny uppgift - tag
Mapping sequence reads & Calling variants
Universitair Medisch Centrum Utrecht Mapping sequence reads & Calling variants Laurent Francioli 2014-10-28 l.francioli@umcutrecht.nl Next Generation Sequencing Data processing pipeline Mapping to reference
Authentication Context QC Statement. Stefan Santesson, 3xA Security AB stefan@aaa-sec.com
Authentication Context QC Statement Stefan Santesson, 3xA Security AB stefan@aaa-sec.com The use case and problem User identities and user authentication is managed through SAML assertions. Some applications
Kvalitetsarbete I Landstinget i Kalmar län. 24 oktober 2007 Eva Arvidsson
Kvalitetsarbete I Landstinget i Kalmar län 24 oktober 2007 Eva Arvidsson Bakgrund Sammanhållen primärvård 2005 Nytt ekonomiskt system Olika tradition och förutsättningar Olika pågående projekt Get the
6 th Grade English October 6-10, 2014
6 th Grade English October 6-10, 2014 Understand the content and structure of a short story. Imagine an important event or challenge in the future. Plan, draft, revise and edit a short story. Writing Focus
Övning 5 ETS052 Datorkommuniktion Routing och Networking
Övning 5 TS5 Datorkommuniktion - 4 Routing och Networking October 7, 4 Uppgift. Rita hur ett paket som skickas ut i nätet nedan från nod, med flooding, sprider sig genom nätet om hop count = 3. Solution.
Isolda Purchase - EDI
Isolda Purchase - EDI Document v 1.0 1 Table of Contents Table of Contents... 2 1 Introduction... 3 1.1 What is EDI?... 4 1.2 Sending and receiving documents... 4 1.3 File format... 4 1.3.1 XML (language
Image quality Technical/physical aspects
(Member of IUPESM) Image quality Technical/physical aspects Nationella kvalitetsdokument för digital radiologi AG1 Michael Sandborg och Jalil Bahar Radiofysikavdelningen Linköping 2007-05-10 Requirements
< THE SHELF SYSTEM FILLED WITH POSSIBILITIES. Design Anne Krook
Anne < THE SHELF SYSTEM FILLED WITH POSSIBILITIES Design Anne Krook beauty combination Anne är en hel serie hyllor vars grundidé bygger på en fyrkant som kan varieras i ett otal kombinationer. Frihängande
Tentamen del 2 SF1511, , kl , Numeriska metoder och grundläggande programmering
KTH Matematik Tentamen del 2 SF1511, 2018-03-16, kl 8.00-11.00, Numeriska metoder och grundläggande programmering Del 2, Max 50p + bonuspoäng (max 4p). Rättas ast om del 1 är godkänd. Betygsgränser inkl
STORSEMINARIET 3. Amplitud. frekvens. frekvens uppgift 9.4 (cylindriskt rör)
STORSEMINARIET 1 uppgift SS1.1 A 320 g block oscillates with an amplitude of 15 cm at the end of a spring, k =6Nm -1.Attimet = 0, the displacement x = 7.5 cm and the velocity is positive, v > 0. Write
NO NEWS ON MATRIX MULTIPLICATION. Manuel Kauers Institute for Algebra JKU
NO NEWS ON MATRIX MULTIPLICATION Manuel Kauers Institute for Algebra JKU ( ) ( ) ( ) a1,1 a 1,2 b1,1 b 1,2 c1,1 c = 1,2 a 2,1 a 2,2 b 2,1 b 2,2 c 2,1 c 2,2 c 1,1 = a 1,1 b 1,1 + a 1,2 b 2,1 c 1,2 = a 1,1
Kursplan MD2022. Matematik III 30 högskolepoäng, Grundnivå 2
Sida 1(6) Kursplan Matematik III 30 högskolepoäng, Grundnivå 2 Mathematics III 30 Credits*, First Cycle Level 2 Lärandemål Det övergripande målet för kursen är att den studerande ska vidga och fördjupa
Vad kännetecknar en god klass. Vad kännetecknar en god klass. F12 Nested & Inner Classes
Vad kännetecknar en god klass F12 Nested & En odelad, väldefinierad abstraktion Uppgiften kan beskrivas kort och tydlig Namnet är en substantiv eller adjektiv som beskriver abstraktionen på ett adekvat
2.1 Installation of driver using Internet Installation of driver from disk... 3
&RQWHQW,QQHKnOO 0DQXDOÃ(QJOLVKÃ'HPRGULYHU )RUHZRUG Ã,QWURGXFWLRQ Ã,QVWDOOÃDQGÃXSGDWHÃGULYHU 2.1 Installation of driver using Internet... 3 2.2 Installation of driver from disk... 3 Ã&RQQHFWLQJÃWKHÃWHUPLQDOÃWRÃWKHÃ3/&ÃV\VWHP
Bridging the gap - state-of-the-art testing research, Explanea, and why you should care
Bridging the gap - state-of-the-art testing research, Explanea, and why you should care Robert Feldt Blekinge Institute of Technology & Chalmers All animations have been excluded in this pdf version! onsdag
Exempel på uppgifter från 2010, 2011 och 2012 års ämnesprov i matematik för årskurs 3. Engelsk version
Exempel på uppgifter från 2010, 2011 och 2012 års ämnesprov i matematik för årskurs 3 Engelsk version 2 Innehåll Inledning... 5 Written methods... 7 Mental arithmetic, multiplication and division... 9
Make a speech. How to make the perfect speech. söndag 6 oktober 13
Make a speech How to make the perfect speech FOPPA FOPPA Finding FOPPA Finding Organizing FOPPA Finding Organizing Phrasing FOPPA Finding Organizing Phrasing Preparing FOPPA Finding Organizing Phrasing
Accomodations at Anfasteröd Gårdsvik, Ljungskile
Accomodations at Anfasteröd Gårdsvik, Ljungskile Anfasteröd Gårdsvik is a campsite and resort, located right by the sea and at the edge of the forest, south west of Ljungskile. We offer many sorts of accommodations
Beijer Electronics AB 2000, MA00336A, 2000-12
Demonstration driver English Svenska Beijer Electronics AB 2000, MA00336A, 2000-12 Beijer Electronics AB reserves the right to change information in this manual without prior notice. All examples in this
the standard scalar product, i.e. L E 4. Find the orthogonal projection of the vector w = (2, 1, 2, 1) on the orthogonal complement L of L (where
MÄLARDALEN UNIVERSITY School of Education, Culture and Communication Department of Applied Mathematics Examiner: Lars-Göran Larsson EXAMINATION IN MATHEMATICS MMA9 Linear Algebra Date: 05-0-6 Write time:
Gradientbaserad Optimering,
Gradientbaserad Optimering, Produktfamiljer och Trinitas Hur att sätta upp ett optimeringsproblem? Vad är lämpliga designvariabler x? Tjockleksvariabler (sizing) Tvärsnittsarean hos stänger Längdmått hos
Mönster. Ulf Cederling Växjö University Ulf.Cederling@msi.vxu.se http://www.msi.vxu.se/~ulfce. Slide 1
Mönster Ulf Cederling Växjö University UlfCederling@msivxuse http://wwwmsivxuse/~ulfce Slide 1 Beskrivningsmall Beskrivningsmallen är inspirerad av den som användes på AG Communication Systems (AGCS) Linda
Measuring child participation in immunization registries: two national surveys, 2001
Measuring child participation in immunization registries: two national surveys, 2001 Diana Bartlett Immunization Registry Support Branch National Immunization Program Objectives Describe the progress of
Bernoullis ekvation Rörelsemängdsekvationen Energiekvation applikationer Rörströmning Friktionskoefficient, Moody s diagram Pumpsystem.
010-04-6 Sammanfattning Bernoullis ekvation Rörelsemängdsekvationen Energiekvation applikationer Rörströmning Friktionskoefficient, Moody s diagram Pumpsystem BERNOULLI S EQUATION p V z H const. g Quantity
Examensarbete i matematik på grundnivå med inriktning mot optimeringslära och systemteori
Examensarbete i matematik på grundnivå med inriktning mot optimeringslära och systemteori (kurskod SA104X, 15hp, VT15) http://www.math.kth.se/optsyst/grundutbildning/kex/ Förkunskaper Det är ett krav att
English Version. 1 x 4x 3 dx = 0.8. = P (N(0, 1) < 3.47) = =
TAMS11: Probability and Statistics Provkod: TENB 11 June 2015, 14:00-18:00 Examiner: Xiangfeng Yang (Tel: 070 2234765). Please answer in ENGLISH if you can. a. You are allowed to use: a calculator; formel
A QUEST FOR MISSING PULSARS
LOFAR A QUEST FOR MISSING PULSARS Samayra Straal Joeri v. Leeuwen WHAT ARE MISSING ~ half of PWN are associated with a pulsar (32/56) PULSARS? less than 25% of all SNRs are associated with a pulsar (60/294)
Schenker Privpak AB Telefon VAT Nr. SE Schenker ABs ansvarsbestämmelser, identiska med Box 905 Faxnr Säte: Borås
Schenker Privpak AB Interface documentation for web service packageservices.asmx 2012-09-01 Version: 1.0.0 Doc. no.: I04304b Sida 2 av 7 Revision history Datum Version Sign. Kommentar 2012-09-01 1.0.0
How to format the different elements of a page in the CMS :
How to format the different elements of a page in the CMS : 1. Typing text When typing text we have 2 possible formats to start a new line: Enter - > is a simple line break. In a paragraph you simply want
ALGEBRA I SEMESTER 1 EXAM ITEM SPECIFICATION SHEET & KEY
ALGEBRA I SEMESTER EXAM ITEM SPECIFICATION SHEET & KEY Constructed Response # Objective Syllabus Objective NV State Standard Identify and apply real number properties using variables, including distributive
Discovering!!!!! Swedish ÅÄÖ. EPISODE 6 Norrlänningar and numbers 12-24. Misi.se 2011 1
Discovering!!!!! ÅÄÖ EPISODE 6 Norrlänningar and numbers 12-24 Misi.se 2011 1 Dialogue SJs X2000* från Stockholm är försenat. Beräknad ankoms?d är nu 16:00. Försenat! Igen? Vad är klockan? Jag vet inte.
Kursplan. AB1029 Introduktion till Professionell kommunikation - mer än bara samtal. 7,5 högskolepoäng, Grundnivå 1
Kursplan AB1029 Introduktion till Professionell kommunikation - mer än bara samtal 7,5 högskolepoäng, Grundnivå 1 Introduction to Professional Communication - more than just conversation 7.5 Higher Education
Flervariabel Analys för Civilingenjörsutbildning i datateknik
Flervariabel Analys för Civilingenjörsutbildning i datateknik Henrik Shahgholian KTH Royal Inst. of Tech. 2 / 9 Utbildningens mål Gällande matematik: Visa grundliga kunskaper i matematik. Härmed förstås
7.5 Experiment with a single factor having more than two levels
7.5 Experiment with a single factor having more than two levels Exempel: Antag att vi vill jämföra dragstyrkan i en syntetisk fiber som blandats ut med bomull. Man vet att inblandningen påverkar dragstyrkan
MMA129 Linear Algebra academic year 2015/16
MMA129 Linear Algebra academic year 2015/16 Assigned problems Set 1 (4) Vector spaces 1. Which of the sets equipped with the operations addition and scalar multiplication M a = {(x 1 x 2 ) R 2 : 3x 1 2x
Rättningstiden är i normalfall 15 arbetsdagar, annars är det detta datum som gäller:
Molekylärbiologi Provmoment: Ladokkod: Tentamen ges för: Tentamen TK151C Bt3 7,5 högskolepoäng TentamensKod: Tentamensdatum: 2016-01-12 Tid: 14:00 18:00 Hjälpmedel: Tillåtna hjälpmedel är lexikon. Dock
Consumer attitudes regarding durability and labelling
Consumer attitudes regarding durability and labelling 27 april 2017 Gardemoen Louise Ungerth Konsumentföreningen Stockholm/ The Stockholm Consumer Cooperative Society louise.u@konsumentforeningenstockholm.se
1. Find an equation for the line λ which is orthogonal to the plane
MÄLARDALEN UNIVERSITY School of Education, Culture and Communication Department of Applied Mathematics Examiner: Lars-Göran Larsson EXAMINATION IN MATHEMATICS MAA150 Vector Algebra, TEN1 Date: 2018-04-23