Photo by Carl Warner.

Slides:



Advertisements
Similar presentations
Fitting: The Hough transform. Voting schemes Let each feature vote for all the models that are compatible with it Hopefully the noise features will not.
Advertisements

Feature Matching and Robust Fitting Computer Vision CS 143, Brown James Hays Acknowledgment: Many slides from Derek Hoiem and Grauman&Leibe 2008 AAAI Tutorial.
Photo by Carl Warner.
Fitting: The Hough transform
Lecture 5 Hough transform and RANSAC
A Study of Approaches for Object Recognition
Fitting. We’ve learned how to detect edges, corners, blobs. Now what? We would like to form a higher-level, more compact representation of the features.
Color a* b* Brightness L* Texture Original Image Features Feature combination E D 22 Boundary Processing Textons A B C A B C 22 Region Processing.
Fitting a Model to Data Reading: 15.1,
Automatic Image Alignment (feature-based) : Computational Photography Alexei Efros, CMU, Fall 2006 with a lot of slides stolen from Steve Seitz and.
Fitting: The Hough transform
Fitting.
כמה מהתעשייה? מבנה הקורס השתנה Computer vision.
Fitting and Registration
Computer Vision Spring ,-685 Instructor: S. Narasimhan Wean Hall 5409 T-R 10:30am – 11:50am.
CSE 185 Introduction to Computer Vision
Computer Vision - Fitting and Alignment
Fitting and Registration Computer Vision CS 543 / ECE 549 University of Illinois Derek Hoiem 02/14/12.
Fitting: The Hough transform. Voting schemes Let each feature vote for all the models that are compatible with it Hopefully the noise features will not.
Fitting & Matching Lecture 4 – Prof. Bregler Slides from: S. Lazebnik, S. Seitz, M. Pollefeys, A. Effros.
Photo by Carl Warner. Feature Matching and Robust Fitting Computer Vision James Hays Acknowledgment: Many slides from Derek Hoiem and Grauman&Leibe.
Object Detection 01 – Advance Hough Transformation JJCAO.
CS 1699: Intro to Computer Vision Matching and Fitting Prof. Adriana Kovashka University of Pittsburgh September 29, 2015.
CS654: Digital Image Analysis Lecture 25: Hough Transform Slide credits: Guillermo Sapiro, Mubarak Shah, Derek Hoiem.
Fitting: The Hough transform
Model Fitting Computer Vision CS 143, Brown James Hays 10/03/11 Slides from Silvio Savarese, Svetlana Lazebnik, and Derek Hoiem.
Edge Detection and Geometric Primitive Extraction Jinxiang Chai.
EECS 274 Computer Vision Model Fitting. Fitting Choose a parametric object/some objects to represent a set of points Three main questions: –what object.
Computer Vision - Fitting and Alignment (Slides borrowed from various presentations)
CSE 185 Introduction to Computer Vision Feature Matching.
CS 2750: Machine Learning Linear Regression Prof. Adriana Kovashka University of Pittsburgh February 10, 2016.
Fitting.
Hough Transform CS 691 E Spring Outline Hough transform Homography Reading: FP Chapter 15.1 (text) Some slides from Lazebnik.
Grouping and Segmentation. Sometimes edge detectors find the boundary pretty well.
HOUGH TRANSFORM.
CS 2770: Computer Vision Fitting Models: Hough Transform & RANSAC
Segmentation by fitting a model: Hough transform and least squares
CS 4501: Introduction to Computer Vision Sparse Feature Descriptors: SIFT, Model Fitting, Panorama Stitching. Connelly Barnes Slides from Jason Lawrence,
Presented by David Lee 3/20/2006
University of Ioannina
Fitting: Voting and the Hough Transform
Miguel Tavares Coimbra
Local features: main components
Fitting.
Project 1: hybrid images
Line Fitting James Hayes.
Fitting: The Hough transform
Exercise Class 11: Robust Tecuniques RANSAC, Hough Transform
Lecture 7: Image alignment
Fitting: Voting and the Hough Transform (part 2)
CS 2750: Machine Learning Linear Regression
A special case of calibration
Object recognition Prof. Graeme Bailey
Fitting.
Computer Vision - A Modern Approach
Photo by Carl Warner.
Prof. Adriana Kovashka University of Pittsburgh October 19, 2016
Segmentation by fitting a model: robust estimators and RANSAC
CS 1675: Intro to Machine Learning Regression and Overfitting
Fitting CS 678 Spring 2018.
776 Computer Vision Jan-Michael Frahm.
Outline Announcement Perceptual organization, grouping, and segmentation Hough transform Read Chapter 17 of the textbook File: week14-m.ppt.
Introduction to Sensor Interpretation
CSE 185 Introduction to Computer Vision
Introduction to Sensor Interpretation
Calibration and homographies
CS5760: Computer Vision Lecture 9: RANSAC Noah Snavely
CS5760: Computer Vision Lecture 9: RANSAC Noah Snavely
Lecture 11: Image alignment, Part 2
Prof. Adriana Kovashka University of Pittsburgh September 26, 2019
Presentation transcript:

Photo by Carl Warner

Photo by Carl Warner

Photo by Carl Warner

Feature Matching and Robust Fitting Read Szeliski 4.1 Computer Vision James Hays Acknowledgment: Many slides from Derek Hoiem and Grauman&Leibe 2008 AAAI Tutorial

Project 2

This section: correspondence and alignment Correspondence: matching points, patches, edges, or regions across images ≈

Review: Local Descriptors Most features can be thought of as templates, histograms (counts), or combinations The ideal descriptor should be Robust and Distinctive Compact and Efficient Most available descriptors focus on edge/gradient information Capture texture information Color rarely used K. Grauman, B. Leibe

Can we refine this further?

Fitting: find the parameters of a model that best fit the data Alignment: find the parameters of the transformation that best align matched points

Fitting and Alignment Design challenges Design a suitable goodness of fit measure Similarity should reflect application goals Encode robustness to outliers and noise Design an optimization method Avoid local optima Find best parameters quickly

Fitting and Alignment: Methods Global optimization / Search for parameters Least squares fit Robust least squares Other parameter search methods Hypothesize and test Generalized Hough transform RANSAC

Fitting and Alignment: Methods Global optimization / Search for parameters Least squares fit Robust least squares Other parameter search methods Hypothesize and test Generalized Hough transform RANSAC

Simple example: Fitting a line

Least squares line fitting Data: (x1, y1), …, (xn, yn) Line equation: yi = m xi + b Find (m, b) to minimize y=mx+b (xi, yi) Matlab: p = A \ y; Python: p = numpy.linalg.lstsq(A, y) Modified from S. Lazebnik

Least squares (global) optimization Good Clearly specified objective Optimization is easy Bad May not be what you want to optimize Sensitive to outliers Bad matches, extra points Doesn’t allow you to get multiple good fits Detecting multiple objects, lines, etc.

Least squares: Robustness to noise Least squares fit to the red points:

Least squares: Robustness to noise Least squares fit with an outlier: Problem: squared error heavily penalizes outliers

Fitting and Alignment: Methods Global optimization / Search for parameters Least squares fit Robust least squares Other parameter search methods Hypothesize and test Generalized Hough transform RANSAC

Robust least squares (to deal with outliers) General approach: minimize ui (xi, θ) – residual of ith point w.r.t. model parameters θ ρ – robust function with scale parameter σ The robust function ρ Favors a configuration with small residuals Constant penalty for large residuals Slide from S. Savarese

Choosing the scale: Just right Fit to earlier data with an appropriate choice of s The effect of the outlier is minimized

Choosing the scale: Too small The error value is almost the same for every point and the fit is very poor

Choosing the scale: Too large Behaves much the same as least squares

Robust estimation: Details Robust fitting is a nonlinear optimization problem that must be solved iteratively Least squares solution can be used for initialization Scale of robust function should be chosen adaptively based on median residual

Fitting and Alignment: Methods Global optimization / Search for parameters Least squares fit Robust least squares Other parameter search methods Hypothesize and test Generalized Hough transform RANSAC

Other ways to search for parameters (for when no closed form solution exists) Line search For each parameter, step through values and choose value that gives best fit Repeat (1) until no parameter changes Grid search Propose several sets of parameters, evenly sampled in the joint set Choose best (or top few) and sample joint parameters around the current best; repeat Gradient descent Provide initial position (e.g., random) Locally search for better parameters by following gradient

Fitting and Alignment: Methods Global optimization / Search for parameters Least squares fit Robust least squares Other parameter search methods Hypothesize and test Generalized Hough transform RANSAC

Multi-stable Perception Necker Cube

Spinning dancer illusion, Nobuyuki Kayahara

Fitting and Alignment: Methods Global optimization / Search for parameters Least squares fit Robust least squares Iterative closest point (ICP) Hypothesize and test Generalized Hough transform RANSAC

Hough Transform: Outline Create a grid of parameter values Each point votes for a set of parameters, incrementing those values in grid Find maximum or local maxima in grid

Hough transform P.V.C. Hough, Machine Analysis of Bubble Chamber Pictures, Proc. Int. Conf. High Energy Accelerators and Instrumentation, 1959 Given a set of points, find the curve or line that explains the data points best 􀁑 Basic ideas • A line is represented as . Every line in the image corresponds to a point in the parameter space • Every point in the image domain corresponds to a line in the parameter space (why ? Fix (x,y), (m,n) can change on the line . In other words, for all the lines passing through (x,y) in the image space, their parameters form a line in the parameter space) • Points along a line in the space correspond to lines passing through the same point in the parameter space (why ?) y m b x Hough space y = m x + b Slide from S. Savarese

Hough transform y m b x x y m b 3 5 2 7 11 10 4 1 􀁑 Basic ideas • A line is represented as . Every line in the image corresponds to a point in the parameter space • Every point in the image domain corresponds to a line in the parameter space (why ? Fix (x,y), (m,n) can change on the line . In other words, for all the lines passing through (x,y) in the image space, their parameters form a line in the parameter space) • Points along a line in the space correspond to lines passing through the same point in the parameter space (why ?) b x x y m 3 5 2 7 11 10 4 1 b Slide from S. Savarese

Hough transform Use a polar representation for the parameter space P.V.C. Hough, Machine Analysis of Bubble Chamber Pictures, Proc. Int. Conf. High Energy Accelerators and Instrumentation, 1959 Issue : parameter space [m,b] is unbounded… Use a polar representation for the parameter space 􀁑 Basic ideas • A line is represented as . Every line in the image corresponds to a point in the parameter space • Every point in the image domain corresponds to a line in the parameter space (why ? Fix (x,y), (m,n) can change on the line . In other words, for all the lines passing through (x,y) in the image space, their parameters form a line in the parameter space) • Points along a line in the space correspond to lines passing through the same point in the parameter space (why ?) y x Hough space Slide from S. Savarese

Hough transform - experiments Figure 15.1, top half. Note that most points in the vote array are very dark, because they get only one vote. features votes Slide from S. Savarese

Hough transform - experiments Noisy data This is 15.1 lower half features votes Need to adjust grid size or smooth Slide from S. Savarese

Hough transform - experiments 15.2; main point is that lots of noise can lead to large peaks in the array features votes Issue: spurious peaks due to uniform noise Slide from S. Savarese

1. Image  Canny

2. Canny  Hough votes

3. Hough votes  Edges Find peaks and post-process

Hough transform example http://ostatic.com/files/images/ss_hough.jpg

Finding lines using Hough transform Using m,b parameterization Using r, theta parameterization Using oriented gradients Practical considerations Bin size Smoothing Finding multiple lines Finding line segments

How would we find circles? Hough Transform How would we find circles? Of fixed radius Of unknown radius Of unknown radius but with known edge orientation

Hough transform for circles Conceptually equivalent procedure: for each (x,y,r), draw the corresponding circle in the image and compute its “support” x y r Is this more or less efficient than voting with features?

Hough transform conclusions Good Robust to outliers: each point votes separately Fairly efficient (much faster than trying all sets of parameters) Provides multiple good fits Bad Some sensitivity to noise Bin size trades off between noise tolerance, precision, and speed/memory Can be hard to find sweet spot Not suitable for more than a few parameters grid size grows exponentially Common applications Line fitting (also circles, ellipses, etc.) Object instance recognition (parameters are affine transform) Object category recognition (parameters are position/scale)