33
Fitting Lecture 7 Slide credits: K. Grauman, S. Seitz, S. Lazebnik, D. Forsyth, J. Ponce

Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

  • Upload
    others

  • View
    2

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

Fitting

Lecture 7

Slide credits: K. Grauman, S. Seitz, S. Lazebnik, D. Forsyth, J. Ponce 

Page 2: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

FittingWant to associate a model with observed features

[Fig from Marszalek & Schmid, 2007]

For example, the model could be a line, a circle, or an arbitrary shape.

Page 3: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

Example: Line fitting• Why fit lines?  

Many objects characterized by presence of straight lines

Page 4: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM
Page 5: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM
Page 6: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

Example: Line fitting• Why fit lines?  

Many objects characterized by presence of straight lines

• Wait, why aren’t we done just by running edge detection?

Page 7: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

• Extra edge points (clutter), 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 parameters?

Difficulty of line fitting

Page 8: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

Voting• It’s not easy to check all combinations of features by fitting a 

model to each possible subset (but see later RANSAC)

• Voting is a general technique where we let the features vote for all models that are compatible with it.

– Cycle through features, cast votes for model parameters.

– Look for model parameters that receive a lot of votes.

• Noise & clutter features will cast votes too, but typically their votes should be inconsistent with the majority of “good” features.

• Ok if some features not observed, as model can span multiple fragments.

Page 9: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

Hough transform algorithmUsing the polar parameterization:

Basic Hough transform algorithm1. Initialize H[ , ]=02. for each edge point I[x,y] in the image

for = 0 to 180 // some quantization

H[ , ] += 13. Find the value(s) of ( , ) where H[ , ] is maximum4. The detected line in the image is given by

H: accumulator array (votes)

Time complexity (in terms of number of votes)?

sincos yx

Source: Steve Seitz

sincos yx

sincos yx

Page 10: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

tokens

Note that most points in the vote array are very dark, because they get only one vote.

Page 11: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

tokens votes

What difficulty does this present for an implementation?

Page 12: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

Here, everything appears to be “noise”, or random edge points, but we still see peaks in the vote space.

tokens votes

Page 13: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

ExtensionsExtension 1: Use the image gradient

1. same2. for each edge point I[x,y] in the image

= gradient at (x,y)

H[ , ] += 13. same4. same

(Reduces degrees of freedom)

Extension 2• give more votes for stronger edges

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

other shape

sincos yx

Page 14: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

ExtensionsExtension 1: Use the image gradient

1. same2. for each edge point I[x,y] in the image

compute unique ( , ) based on image gradient at (x,y)H[ , ] += 1

3. same4. same

(Reduces degrees of freedom)

Extension 2• give more votes for stronger edges (use magnitude of gradient)

Extension 3• change the sampling of ( , ) to give more/less resolution

Extension 4• The same procedure can be used with circles, squares, or any

other shape…

Page 15: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM
Page 16: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

Showing longest segments found

Page 17: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

Voting: practical tips

• Minimize irrelevant tokens first (take edge points with significant gradient magnitude)

• Choose a good grid / discretization– Too coarse: large votes obtained when too many different lines 

correspond to a single bucket– Too fine: miss lines because some points that are not exactly collinear 

cast votes for different buckets

• Vote for neighbors, also (smoothing in accumulator array)• Utilize direction of edge to reduce free parameters by 1• To read back which points voted for “winning” peaks, keep 

tags on the votes.

Page 18: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

Hough transform: pros and consPros• All points are processed independently, so can cope with 

occlusion• Some robustness to noise: noise points unlikely to contribute 

consistently to any single bin• Can detect multiple instances of a model in a single pass

Cons• Complexity of search time increases exponentially with the 

number of model parameters • Non‐target shapes can produce spurious peaks in parameter 

space• Quantization: hard to pick a good grid size

Page 19: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

Generalized Hough transformTo detect the model shape in a new image:

• For each edge point

– Index into table with its gradient orientation θ

– Use retrieved r vectors to vote for position of reference point

• Peak in this Hough space is reference point with most supporting edges

Assuming translation is the only transformation here, i.e., orientation and scale are fixed.

Page 20: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

Example

model shape Source: L. Lazebnik

Say we’ve already stored a table of displacement vectors as a function of edge orientation for this model shape.

Page 21: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

Example

displacement vectors for model points

Now we want to look at some edge points detected in a newimage, and vote on the position of that shape.

Page 22: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

Example

range of voting locations for test point

Page 23: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

Example

range of voting locations for test point

Page 24: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

Example

votes for points with θ =

Page 25: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

Example

displacement vectors for model points

Page 26: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

Example

range of voting locations for test point

Page 27: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

votes for points with θ =

Example

Page 28: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM
Page 29: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM
Page 30: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM
Page 31: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM
Page 32: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

Computer Vision ‐ A Modern ApproachSet:  Fitting

Slides by D.A. Forsyth

Page 33: Fitting - Matematikcentrum | Matematikcentrum · Microsoft PowerPoint - Presentation1.pptx Author: CS Created Date: 9/23/2013 10:40:56 AM

Computer Vision ‐ A Modern ApproachSet:  Fitting

Slides by D.A. Forsyth