Fitting: Voting and the Hough Transform (part 2)

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

Hough Transform Reading Watt, An edge is not a line... How can we detect lines ?
Edge Detection CSE P 576 Larry Zitnick
Beyond bags of features: Part-based models Many slides adapted from Fei-Fei Li, Rob Fergus, and Antonio Torralba.
Fitting: The Hough transform
Lecture 5 Hough transform and RANSAC
Beyond bags of features: Adding spatial information Many slides adapted from Fei-Fei Li, Rob Fergus, and Antonio Torralba.
1 Model Fitting Hao Jiang Computer Science Department Oct 6, 2009.
1 Image Recognition - I. Global appearance patterns Slides by K. Grauman, B. Leibe.
Announcements Mailing list: –you should have received messages Project 1 out today (due in two weeks)
1 Model Fitting Hao Jiang Computer Science Department Oct 8, 2009.
Beyond bags of features: Adding spatial information Many slides adapted from Fei-Fei Li, Rob Fergus, and Antonio Torralba.
Edge Detection Today’s reading Forsyth, chapters 8, 15.1
Fitting a Model to Data Reading: 15.1,
Edge Detection Today’s readings Cipolla and Gee –supplemental: Forsyth, chapter 9Forsyth Watt, From Sandlot ScienceSandlot Science.
Fitting: The Hough transform
Edge Detection.
Robust estimation Problem: we want to determine the displacement (u,v) between pairs of images. We are given 100 points with a correlation score computed.
כמה מהתעשייה? מבנה הקורס השתנה Computer vision.
Computer Vision Spring ,-685 Instructor: S. Narasimhan Wean Hall 5409 T-R 10:30am – 11:50am.
October 8, 2013Computer Vision Lecture 11: The Hough Transform 1 Fitting Curve Models to Edges Most contours can be well described by combining several.
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.
HOUGH TRANSFORM Presentation by Sumit Tandon
Bag-of-features models. Origin 1: Texture recognition Texture is characterized by the repetition of basic elements or textons For stochastic textures,
Fitting : Voting and the Hough Transform Monday, Feb 14 Prof. Kristen Grauman UT-Austin.
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.
Generalized Hough Transform
Image Processing Edge detection Filtering: Noise suppresion.
Fitting: Deformable contours Tuesday, September 22 th 2015 Devi Parikh Virginia Tech 1 Slide credit: Kristen Grauman Disclaimer: Many slides have been.
CS654: Digital Image Analysis Lecture 25: Hough Transform Slide credits: Guillermo Sapiro, Mubarak Shah, Derek Hoiem.
Fitting: The Hough transform
Many slides from Steve Seitz and Larry Zitnick
Edge Detection and Geometric Primitive Extraction Jinxiang Chai.
Fitting Thursday, Sept 24 Kristen Grauman UT-Austin.
1 Model Fitting Hao Jiang Computer Science Department Sept 30, 2014.
Object Detection 01 – Basic Hough Transformation JJCAO.
Lecture 08 27/12/2011 Shai Avidan הבהרה: החומר המחייב הוא החומר הנלמד בכיתה ולא זה המופיע / לא מופיע במצגת.
October 16, 2014Computer Vision Lecture 12: Image Segmentation II 1 Hough Transform The Hough transform is a very general technique for feature detection.
Fitting : Voting and the Hough Transform Thursday, September 17 th 2015 Devi Parikh Virginia Tech 1 Slide credit: Kristen Grauman Disclaimer: Many slides.
Digital Image Processing Lecture 17: Segmentation: Canny Edge Detector & Hough Transform Prof. Charlene Tsai.
Detecting Image Features: Corner. Corners Given an image, denote the image gradient. C is symmetric with two positive eigenvalues. The eigenvalues give.
Hough Transform CS 691 E Spring Outline Hough transform Homography Reading: FP Chapter 15.1 (text) Some slides from Lazebnik.
CS 2770: Computer Vision Fitting Models: Hough Transform & RANSAC
Segmentation by fitting a model: Hough transform and least squares
Fitting: Voting and the Hough Transform
Line Fitting James Hayes.
Fitting: The Hough transform
CS 2750: Machine Learning Linear Regression
Fitting: Voting and the Hough Transform April 24th, 2018
Fitting Curve Models to Edges
Image Processing, Leture #12
Prof. Adriana Kovashka University of Pittsburgh October 19, 2016
Edge Detection CSE 455 Linda Shapiro.
Photo by Carl Warner.
CSSE463: Image Recognition Day 26
CSSE463: Image Recognition Day 26
Hough Transform.
Morphological Operators
Outline Announcement Perceptual organization, grouping, and segmentation Hough transform Read Chapter 17 of the textbook File: week14-m.ppt.
CSSE463: Image Recognition Day 26
Edge Detection Today’s readings Cipolla and Gee Watt,
Finding Basic Shapes Hough Transforms
CSSE463: Image Recognition Day 26
Finding Line and Curve Segments from Edge Images
Introduction to Artificial Intelligence Lecture 22: Computer Vision II
Prof. Adriana Kovashka University of Pittsburgh September 26, 2019
Presentation transcript:

Fitting: Voting and the Hough Transform (part 2) Kristen Grauman UT Austin Feb 16, 2017

Announcements A2 due next Friday Anonymous course survey – see link on Piazza Please respond by next Thursday 2/23

Review: graph-based clustering Assuming we use a fully connected graph, what is the time complexity of computing the affinities for a graph cuts-based segmentation? Example affinity measure: X(i) is position of node i F(i) is a feature vector for node i based on color, texture, etc. This affinity measure limits connections to spatially close pixels. Slide credit: Kristen Grauman

Slide credit: Kristen Grauman Now: Fitting Want 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. Slide credit: Kristen Grauman

Recall: Voting It’s not feasible to check all combinations of features by fitting a model to each possible subset. 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.

Recall: Fitting lines: Hough transform Given points that belong to a line, what is the line? How many lines are there? Which points belong to which lines? Hough Transform is a voting technique that can be used to answer all of these questions. Main idea: 1. Record vote for each possible line on which each edge point lies. 2. Look for lines that get many votes. Slide credit: Kristen Grauman

Finding lines in an image: Hough space y b b0 x m0 m image space Hough (parameter) space Connection between image (x,y) and Hough (m,b) spaces A line in the image corresponds to a point in 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 Slide credit: Steve Seitz

Finding lines in an image: Hough space y b y0 Answer: the solutions of b = -x0m + y0 this is a line in Hough space x0 x m image space Hough (parameter) space Connection between image (x,y) and Hough (m,b) spaces A line in the image corresponds to a point in 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 What does a point (x0, y0) in the image space map to? Slide credit: Steve Seitz

Finding lines in an image: Hough space y b (x1, y1) y0 (x0, y0) b = –x1m + y1 x0 x m image space Hough (parameter) space What are the line parameters for the line that contains both (x0, y0) and (x1, y1)? It is the intersection of the lines b = –x0m + y0 and b = –x1m + y1

Finding lines in an image: Hough algorithm y b x m image space Hough (parameter) space How can we use this to find the most likely parameters (m,b) for the most prominent line in the image space? Let each edge point in image space vote for a set of possible parameters in Hough space Accumulate votes in discrete set of bins; parameters with the most votes indicate line in image space.

Polar representation for lines Issues with usual (m,b) parameter space: can take on infinite values, undefined for vertical lines. [0,0] Image columns : perpendicular distance from line to origin : angle the perpendicular makes with the x-axis Image rows Written in image coordinates Point in image space  sinusoid segment in Hough space Slide credit: Kristen Grauman

Hough transform algorithm Using the polar parameterization: Basic Hough transform algorithm Initialize H[d, ]=0 for each edge point I[x,y] in the image for  = [min to max ] // some quantization H[d, ] += 1 Find the value(s) of (d, ) where H[d, ] is maximum The detected line in the image is given by H: accumulator array (votes) d  Time complexity (in terms of number of votes per pt)? Source: Steve Seitz

https://www.youtube.com/watch?v=ebfi7qOFLuo

Example: What’s in the image? Square : Circle :

Example: Hough transform for straight lines Which line do you think generated the brightest peak?

Slide credit: Kristen Grauman Original image Canny edges Vote space and top peaks Slide credit: Kristen Grauman

Slide credit: Kristen Grauman Showing longest segments found Slide credit: Kristen Grauman

Impact of noise on Hough d y x  Image space edge coordinates Votes What difficulty does this present for an implementation?

Impact of noise on Hough Image space edge coordinates Votes Here, everything appears to be “noise”, or random edge points, but we still see peaks in the vote space.

From before: Hough transform algorithm Using the polar parameterization: Basic Hough transform algorithm Initialize H[d, ]=0 for each edge point I[x,y] in the image for  = [min to max ] // some quantization H[d, ] += 1 Find the value(s) of (d, ) where H[d, ] is maximum The detected line in the image is given by H: accumulator array (votes) d  Source: Steve Seitz

Extensions  = gradient at (x,y) Extension 1: Use the image gradient same for each edge point I[x,y] in the image  = gradient at (x,y) H[d, ] += 1 (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

Extensions Extension 1: Use the image gradient same for each edge point I[x,y] in the image compute unique (d, ) based on image gradient at (x,y) H[d, ] += 1 (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 other shape… Source: Steve Seitz

Hough transform for circles Circle: center (a,b) and radius r For a fixed radius r, unknown gradient direction Image space Hough space Slide credit: Kristen Grauman

Hough transform for circles Circle: center (a,b) and radius r For a fixed radius r, unknown gradient direction Intersection: most votes for center occur here. Image space Hough space Slide credit: Kristen Grauman

Hough transform for circles Circle: center (a,b) and radius r For an unknown radius r, unknown gradient direction b a r ? Image space Hough space Slide credit: Kristen Grauman

Hough transform for circles Circle: center (a,b) and radius r For an unknown radius r, unknown gradient direction r b a Image space Hough space Slide credit: Kristen Grauman

Hough transform for circles Circle: center (a,b) and radius r For an unknown radius r, known gradient direction x θ Image space Hough space Slide credit: Kristen Grauman

Hough transform for circles 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 Time complexity per edgel? Check out online demo : http://www.markschulze.net/java/hough/

Example: detecting circles with Hough Original Edges Votes: Penny Note: a different Hough transform (with separate accumulators) was used for each circle radius (quarters vs. penny).

Example: detecting circles with Hough Combined detections Original Edges Votes: Quarter Coin finding sample images from: Vivek Kwatra

Example: iris detection Gradient+threshold Hough space (fixed radius) Max detections Hemerson Pistori and Eduardo Rocha Costa http://rsbweb.nih.gov/ij/plugins/hough-circles.html

Example: iris detection An Iris Detection Method Using the Hough Transform and Its Evaluation for Facial and Eye Movement, by Hideki Kashima, Hitoshi Hongo, Kunihito Kato, Kazuhiko Yamamoto, ACCV 2002.

Voting: practical tips Minimize irrelevant tokens first Choose a good grid / discretization Vote for neighbors, also (smoothing in accumulator array) Use direction of edge to reduce parameters by 1 To read back which points voted for “winning” peaks, keep tags on the votes. Too coarse Too fine ? Slide credit: Kristen Grauman

Hough transform: pros and cons All points are processed independently, so can cope with occlusion, gaps 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: can be tricky to pick a good grid size Slide credit: Kristen Grauman

Generalized Hough Transform What if we want to detect arbitrary shapes? Intuition: Model image Novel image Displacement vectors x x x Ref. point x x Vote space Now suppose those colors encode gradient directions… Slide credit: Kristen Grauman

Generalized Hough Transform Define a model shape by its boundary points and a reference point. x Offline procedure: a At each boundary point, compute displacement vector: r = a – pi. Store these vectors in a table indexed by gradient orientation θ. p1 θ p2 θ Model shape θ … [Dana H. Ballard, Generalizing the Hough Transform to Detect Arbitrary Shapes, 1980] Slide credit: Kristen Grauman

Generalized Hough Transform Detection procedure: x For each edge point: Use its gradient orientation θ to index into stored table Use retrieved r vectors to vote for reference point x x θ x x θ θ p1 θ θ Novel image θ … Assuming translation is the only transformation here, i.e., orientation and scale are fixed. Slide credit: Kristen Grauman

Generalized Hough for object detection Instead of indexing displacements by gradient orientation, index by matched local patterns. training image “visual codeword” with displacement vectors B. Leibe, A. Leonardis, and B. Schiele, Combined Object Categorization and Segmentation with an Implicit Shape Model, ECCV Workshop on Statistical Learning in Computer Vision 2004 Source: L. Lazebnik

Generalized Hough for object detection Instead of indexing displacements by gradient orientation, index by “visual codeword” test image B. Leibe, A. Leonardis, and B. Schiele, Combined Object Categorization and Segmentation with an Implicit Shape Model, ECCV Workshop on Statistical Learning in Computer Vision 2004 Source: L. Lazebnik

Example: Results on Cows Original image K. Grauman, B. Leibe

Example: Results on Cows Interest points Original image K. Grauman, B. Leibe

Example: Results on Cows Matched patches Interest points Original image K. Grauman, B. Leibe

Example: Results on Cows Votes Matched patches Interest points Original image K. Grauman, B. Leibe

Example: Results on Cows 1st hypothesis K. Grauman, B. Leibe

Example: Results on Cows 2nd hypothesis K. Grauman, B. Leibe

Example: Results on Cows 3rd hypothesis K. Grauman, B. Leibe

Slide credit: Kristen Grauman Summary Grouping/segmentation useful to make a compact representation and merge similar features associate features based on defined similarity measure and clustering objective Fitting problems require finding any supporting evidence for a model, even within clutter and missing features. associate features with an explicit model Voting approaches, such as the Hough transform, make it possible to find likely model parameters without searching all combinations of features. Hough transform approach for lines, circles, …, arbitrary shapes defined by a set of boundary points, recognition from patches. Slide credit: Kristen Grauman

Fitting with deformable contours Coming up Fitting with deformable contours