so far features and filters motion magnification
play

So far: features and filters Motion magnification Transforming - PDF document

CS 376: Computer Vision - lecture 7 2/7/2018 Last time Texture synthesis wrap up Fitting : Optical flow: estimating motion in video Voting and the Hough Transform Review: What can we expect from an Nth order Markov Thurs Feb 8,


  1. CS 376: Computer Vision - lecture 7 2/7/2018 Last time • Texture synthesis wrap up Fitting : • Optical flow: estimating motion in video Voting and the Hough Transform • Review: – What can we expect from an Nth order Markov Thurs Feb 8, 2018 field for texture synthesis (N > 1)? Kristen Grauman – What is the aperture problem? UT Austin – What can cause flow errors at object boundaries? Recall: Motion estimation techniques Motion magnification • Direct methods • Directly recover image motion at each pixel from spatio-temporal image brightness variations • Dense motion fields, but sensitive to appearance variations • Suitable for video and when image motion is small • Feature-based methods • Extract visual features (corners, textured areas) and track them over multiple frames • Sparse motion fields, but more robust tracking • Suitable when image motion is large (10s of pixels) Liu et al. SIGGRAPH 2005 original magnified 1

  2. CS 376: Computer Vision - lecture 7 2/7/2018 So far: features and filters Motion magnification Transforming images; gradients, textures, http://people.csail.mit.edu/mrub/vidmag/ Hao-Yu Wu, Michael Rubinstein, Eugene Shih, John Guttag, Frédo Durand, William T. edges, flow Freeman. Eulerian Video Magnification for Revealing Subtle Changes in the World ACM Transactions on Graphics, Volume 31, Number 4 (Proc. SIGGRAPH), 2012 Fitting: Main idea Now: Fitting • Choose a parametric model to represent a • Want to associate a model with observed features set of features • Membership criterion is not local • Can’t tell whether a point belongs to a given model just by looking at that point • Three main questions: • What model represents this set of features best? • Which of several model instances gets which feature? • How many model instances are there? • Computational complexity is important • It is infeasible to examine every possible set of parameters and every possible combination of features [Fig from Marszalek & Schmid, 2007] For example, the model could be a line, a circle, or an arbitrary shape. Slide credit: L. Lazebnik Case study: Line fitting Difficulty of line fitting • Why fit lines? • Extra edge points (clutter), Many objects characterized by presence of straight lines multiple models: – which points go with which line, if any? • Only some parts of each line detected, and some parts are missing: – how to find a line that bridges missing evidence? • Noise in measured edge points, orientations: – how to detect true underlying • Wait, why aren’t we done just by running edge detection? parameters? 2

  3. CS 376: Computer Vision - lecture 7 2/7/2018 Voting Fitting lines: Hough transform • It’s not feasible to check all combinations of features by • Given points that belong to a line, what fitting a model to each possible subset. is the line? • How many lines are there? • Voting is a general technique where we let the features • Which points belong to which lines? vote for all models that are compatible with it . • Hough Transform is a voting – Cycle through features, cast votes for model parameters. technique that can be used to answer – Look for model parameters that receive a lot of votes. all of these questions. • Noise & clutter features will cast votes too, but typically Main idea: their votes should be inconsistent with the majority of 1. Record vote for each possible line “good” features. on which each edge point lies. 2. Look for lines that get many votes . Finding lines in an image: Hough space Finding lines in an image: Hough space y b y b y 0 b 0 x m 0 m x 0 x m image space Hough (parameter) space image space Hough (parameter) space Connection between image (x,y) and Hough (m,b) spaces Connection between image (x,y) and Hough (m,b) spaces • A line in the image corresponds to a point in Hough space • A line in the image corresponds to a point in Hough space • To go from image space to Hough space: • To go from image space to Hough space: – given a set of points (x,y), find all (m,b) such that y = mx + b – given a set of points (x,y), find all (m,b) such that y = mx + b • What does a point (x 0 , y 0 ) in the image space map to? – Answer: the solutions of b = -x 0 m + y 0 – this is a line in Hough space Slide credit: Steve Seitz Slide credit: Steve Seitz Finding lines in an image: Hough space Finding lines in an image: Hough algorithm y b y b ( x 1 , y 1 ) y 0 ( x 0 , y 0 ) b = – x 1 m + y 1 x 0 x m x m image space Hough (parameter) space image space Hough (parameter) space How can we use this to find the most likely parameters (m,b) What are the line parameters for the line that contains both for the most prominent line in the image space? (x 0 , y 0 ) and (x 1 , y 1 )? • Let each edge point in image space vote for a set of • It is the intersection of the lines b = –x 0 m + y 0 and possible parameters in Hough space b = –x 1 m + y 1 • Accumulate votes in discrete set of bins*; parameters with the most votes indicate line in image space. 3

  4. CS 376: Computer Vision - lecture 7 2/7/2018 Polar representation for lines Hough transform algorithm Using the polar parameterization: Issues with usual ( m,b ) parameter space: can take on H: accumulator array (votes)     x cos y sin d infinite values, undefined for vertical lines. Image columns Basic Hough transform algorithm d x d : perpendicular distance [0,0] 1. Initialize H[d,  ]=0  from line to origin 2. for each edge point I[x,y] in the image  d for  = [  min to  max ] // some quantization : angle the perpendicular  Image rows y d  x cos   y sin  makes with the x-axis H[d,  ] += 1 3. Find the value(s) of (d,  ) where H[d,  ] is maximum     x cos y sin d     4. The detected line in the image is given by d x cos y sin Time complexity (in terms of number of votes per pt)? Point in image space  sinusoid segment in Hough space Source: Steve Seitz Example: What was the shape? Circle : Square : d  Original image Canny edges Example: Hough transform for straight lines Decode Vote space and top peaks the vote space. d Which line generated this peak?  4

  5. CS 376: Computer Vision - lecture 7 2/7/2018 Impact of noise on Hough d y x  Image space Votes edge coordinates Showing longest segments found What difficulty does this present for an implementation? Impact of noise on Hough Extensions Extension 1: Use the image gradient 1. same 2. for each edge point I[x,y] in the image  = gradient at (x,y) d  x cos   y sin  H[d,  ] += 1 3. same 4. same (Reduces degrees of freedom) Extension 2 • give more votes for stronger edges Image space Votes Extension 3 edge coordinates change the sampling of (d,  ) to give more/less resolution • Extension 4 Here, everything appears to be “noise”, or random • The same procedure can be used with circles, squares, or any edge points, but we still see peaks in the vote space. other shape Extensions Hough transform for circles Extension 1: Use the image gradient • Circle: center (a,b) and radius r 1. same 2. for each edge point I[x,y] in the image ( x  a ) 2  ( y  b ) 2  r 2 i i compute unique (d,  ) based on image gradient at (x,y) H[d,  ] += 1 • For a fixed radius r, unknown gradient direction 3. same 4. same b (Reduces degrees of freedom) Extension 2 • give more votes for stronger edges (use magnitude of gradient) Extension 3 • change the sampling of (d,  ) to give more/less resolution Extension 4 • The same procedure can be used with circles, squares, or any a other shape… Hough space Image space Source: Steve Seitz 5

  6. CS 376: Computer Vision - lecture 7 2/7/2018 Hough transform for circles Hough transform for circles • Circle: center (a,b) and radius r • Circle: center (a,b) and radius r  2   2  2  2   2  2 ( x a ) ( y b ) r ( x a ) ( y b ) r i i i i • For a fixed radius r, unknown gradient direction • For an unknown radius r, unknown gradient direction r Intersection: most votes for ? center occur here. b a Hough space Image space Image space Hough space Hough transform for circles Hough transform for circles • Circle: center (a,b) and radius r • Circle: center (a,b) and radius r  2   2  2  2   2  2 ( x a ) ( y b ) r ( x a ) ( y b ) r i i i i • For an unknown radius r, unknown gradient direction • For an unknown radius r, known gradient direction r x θ b a Image space Hough space Image space Hough space Example: detecting circles with Hough Hough transform for circles Original Edges Votes: Penny For every edge pixel ( x,y ) : For each possible radius value r : For each possible gradient direction θ: // or use estimated gradient at (x,y) a = x + r cos( θ ) // column b = y - r sin( θ ) // row H[ a,b,r ] += 1 end Note: a different Hough transform (with separate accumulators) end was used for each circle radius (quarters vs. penny). Time complexity per edge pixel? • Check out online demo : http://www.markschulze.net/java/hough/ 6

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend