Image Processing, Leture #12

Slides:



Advertisements
Similar presentations
Hough Transforms CSE 6367 – Computer Vision Vassilis Athitsos University of Texas at Arlington.
Advertisements

Hough Transform Reading Watt, An edge is not a line... How can we detect lines ?
Segmentation (2): edge detection
Edge Detection CSE P 576 Larry Zitnick
Lecture 5 Hough transform and RANSAC
0 - 1 © 2007 Texas Instruments Inc, Content developed in partnership with Tel-Aviv University From MATLAB ® and Simulink ® to Real Time with TI DSPs Detecting.
1Ellen L. Walker Segmentation Separating “content” from background Separating image into parts corresponding to “real” objects Complete segmentation Each.
1 Model Fitting Hao Jiang Computer Science Department Oct 8, 2009.
CS 376b Introduction to Computer Vision 04 / 16 / 2008 Instructor: Michael Eckmann.
Parallel Processing – Final Project Performed by:Nitsan Mane Jonathan Distler PP9.
Moments area of the object center of mass  describe the image content (or distribution) with respect to its axes.
CS 376b Introduction to Computer Vision 04 / 14 / 2008 Instructor: Michael Eckmann.
CS 376b Introduction to Computer Vision 04 / 15 / 2008 Instructor: Michael Eckmann.
Hough Transform. Detecting Lines Hough transform detects lines in images Equation of line is: y = mx + b or Hough transform uses an array called accumulator.
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.
Hough Transform (Section 10.2) CS474/67. Edge Linking and Boundary Detection Edge detection does not yield connected boundaries. Edge linking and boundary.
כמה מהתעשייה? מבנה הקורס השתנה 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.
Hough Transform on the GPU Presented by Javier Garcia November 29, 2010.
October 14, 2014Computer Vision Lecture 11: Image Segmentation I 1Contours How should we represent contours? A good contour representation should meet.
Edge Linking & Boundary Detection
HOUGH TRANSFORM Presentation by Sumit Tandon
HOUGH TRANSFORM & Line Fitting Introduction  HT performed after Edge Detection  It is a technique to isolate the curves of a given shape / shapes.
Intelligent Vision Systems ENT 496 Object Shape Identification and Representation Hema C.R. Lecture 7.
Fitting : Voting and the Hough Transform Monday, Feb 14 Prof. Kristen Grauman UT-Austin.
Generalized Hough Transform
: Chapter 8: Edge Detection 1 Montri Karnjanadecha ac.th/~montri Image Processing.
Lecture 08 Detecting Shape Using Hough Transform Lecture 08 Detecting Shape Using Hough Transform Mata kuliah: T Computer Vision Tahun: 2010.
CS654: Digital Image Analysis Lecture 25: Hough Transform Slide credits: Guillermo Sapiro, Mubarak Shah, Derek Hoiem.
HOUGH TRANSFORM. Introduced in 1962 by Paul Hough pronounced like “tough” according to orm.html.
Fitting Thursday, Sept 24 Kristen Grauman UT-Austin.
October 16, 2014Computer Vision Lecture 12: Image Segmentation II 1 Hough Transform The Hough transform is a very general technique for feature detection.
Hough transform and geometric transform
Digital Image Processing Lecture 17: Segmentation: Canny Edge Detector & Hough Transform Prof. Charlene Tsai.
Machine Vision Edge Detection Techniques ENT 273 Lecture 6 Hema C.R.
Hough Transform. Introduction The Hough Transform is a general technique for extracting geometrical primitives from e.g. edge data Performed after Edge.
Object Recognition. Segmentation –Roughly speaking, segmentation is to partition the images into meaningful parts that are relatively homogenous in certain.
: Chapter 13: Finding Basic Shapes 1 Montri Karnjanadecha ac.th/~montri Image Processing.
Computer Graphics Lecture 06 Circle Drawing Techniques Taqdees A. Siddiqi
HOUGH TRANSFORM.
Bitmap Image Vectorization using Potrace Algorithm
Fitting: Voting and the Hough Transform
Copyright © Cengage Learning. All rights reserved.
Detection of discontinuity using
(c) 2002 University of Wisconsin, CS559
Chapter Three Part I Output Primitives CS 380.
Computer Vision Lecture 12: Image Segmentation II
Fitting: Voting and the Hough Transform (part 2)
Fitting Curve Models to Edges
© University of Wisconsin, CS559 Fall 2004
ECE 692 – Advanced Topics in Computer Vision
Computer Vision Lecture 16: Texture II
Edge Detection CSE 455 Linda Shapiro.
Image Processing, Lecture #10
: Chapter 8: Edge Detection
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 27
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
Reporter: Wenkai Cui Institution: Tsinghua University Date:
Pattern Recognition and Training
Introduction to Artificial Intelligence Lecture 22: Computer Vision II
Presentation transcript:

240-373 Image Processing, Leture #12 Finding Basic Shapes Hough Transforms Combining edges into lines Basic principal of the straight-line Hough transform Based on y = mx + c or in (m,c) space c = (-x)m + y Find (m,c) that crossing lines occurs the most 16/11/61 240-373 Image Processing, Leture #12

Real straight-edge discovery using the Hough transform Problem with the basic technique: m could be from - infinity to +infinity Polar coordinates can be used instead of cartesian coordinates 16/11/61 240-373 Image Processing, Leture #12

Real straight-edge discovery Technique 1: Real straight-edge discovery using the Hough transform USE: To find out and connect substantial straight edges from partial edges already found using an edge detector. OPERATION: For each edge pixel value I(x,y) , vary q from 0o to 360o and calculate r = x cos q + y sin q Given an accumulator array size (N + M, 360), increase those elements in the array that lie in a box (b x b) with center (r, q) Look for the highest values in the accumulator (r, q) array and identify the pairs (r, q) that are the most likely to indicate a line in (x,y) space This method can be enhanced in a number of ways: 1. The gradient of the edge before thresholding can be used to update the accumulator array. 2. Gradient direction can be taken in to account. If this suggests that the direction of the real edge lies between two angles (q1, q2), then only the element in the (r, q) array that lies in q1 < q <q2 are plotted 3. The incrementing box does not need to be uniform. The center can be emphasized 16/11/61 240-373 Image Processing, Leture #12

240-373 Image Processing, Leture #12 Real Circle Discovery Technique 2: Real circle discovery using the Hough transform USE: To find circles from an edge-detected image. OPERATION: To search for circles of a known radius, R, then the following identity can be used (x-a)2 + (y-b)2 = R2 where (a,b) is the center of the circle A circle of elements is incremented in the (a,b) accumulator array center (a = 0 .. M-1, b = 0 .. N-1) The highest values in the (a,b) array indicates coincident edges 16/11/61 240-373 Image Processing, Leture #12

Real circle discovery (cont’d) It is possible to look for the following types of circle: different radii plot in (a,b,R) space different radii, same vert. centers plot in (b,R) space different radii, same horz. centers plot in (a,R) space Important points As the number of unknown parameters increases, the amount of processing increases exponentially The Hough technique can be used to discover any edge shapes with simple identity The generalized Hough transform can be used to discover complex shapes Technique 2: The generalized Hough transform USE: To find a known shape of any size or orientation in an image. OPERATION: Given the object boundary (assuming that the object is of the same size and orientation), choose a center (x,y) The boundary is traversed and after every step d along the boundary the angle of the boundary tangent with respect to horizontal is noted, and the x difference and y difference of the boundary position from the center point are also noted. See table 16/11/61 240-373 Image Processing, Leture #12

240-373 Image Processing, Leture #12 For every pixels I(x,y) in the edge-detected image, the gradient direction is found and the row of elements in the array shown in the table above then refer to a set of elements relative to this boundary point which may be ‘center’ of the object The accumulator (same size as image) is then incremented by 1 for such element Finally, the highest-valued element(s) in the accumulator array point to the possible ‘centers’ of the object 16/11/61 240-373 Image Processing, Leture #12

Bresenham’s algorithms Bresenham’s straight-line drawing algorithm Bresenham’s circle drawing algorithm 16/11/61 240-373 Image Processing, Leture #12

240-373 Image Processing, Leture #12 16/11/61 240-373 Image Processing, Leture #12

240-373 Image Processing, Leture #12 16/11/61 240-373 Image Processing, Leture #12