0 1 0 0 0 0 0 0 0 1 1 1 0 2 0 1 1 1 original 0 0 0 1 1 1
play

? 0 1 0 0 0 0 0 0 0 - 1 1 1 = ? * 0 2 0 1 1 1 - PDF document

Last time Cross correlation Convolution Examples of smoothing filters Filters, Features, Edges Box filter (averaging) Thursday, Sept 11 Gaussian Convolution Smoothing with a Gaussian Parameter is the scale /


  1. Last time • Cross correlation • Convolution • Examples of smoothing filters Filters, Features, Edges – Box filter (averaging) Thursday, Sept 11 – Gaussian Convolution Smoothing with a Gaussian Parameter σ is the “scale” / “width” / “spread” of the Gaussian • Convolution: kernel, and controls the amount of smoothing. – Flip the filter in both dimensions (bottom to top, right to left) – Then apply cross-correlation … F H Notation for for sigma=1:3:10 convolution h = fspecial('gaussian‘, fsize, sigma); operator out = imfilter(im, h); imshow(out); pause; end Predict the filtered outputs Practice with linear filters 0 0 0 0 0 0 = ? = ? * 0 1 0 * 0 0 1 0 0 0 0 0 0 0 0 0 ? 0 1 0 0 0 0 0 0 0 - 1 1 1 = ? * 0 2 0 1 1 1 Original 0 0 0 1 1 1 Source: D. Lowe

  2. Practice with linear filters Practice with linear filters 0 0 0 0 0 0 ? 0 1 0 0 0 1 0 0 0 0 0 0 Original Original Filtered (no change) Source: D. Lowe Source: D. Lowe Practice with linear filters Practice with linear filters 0 0 0 ? 1 1 1 0 0 1 1 1 1 0 0 0 1 1 1 Original Original Shifted left by 1 pixel with correlation Source: D. Lowe Source: D. Lowe Practice with linear filters Practice with linear filters 0 0 0 - 1 1 1 ? 1 1 1 0 2 0 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 Original Original Blur (with a box filter) Source: D. Lowe Source: D. Lowe

  3. Practice with linear filters Filtering examples: sharpening 0 0 0 - 1 1 1 0 2 0 1 1 1 0 0 0 1 1 1 Original Sharpening filter - Accentuates differences with local average Source: D. Lowe Shift invariant linear system Properties of convolution • Linear & shift invariant • Shift invariant: • Commutative: – Operator behaves the same everywhere, i.e. the f * g = g * f value of the output depends on the pattern in the image neighborhood, not the position of the • Associative neighborhood. (f * g) * h = f * (g * h) • Linear: • Identity: – Superposition: h * (f1 + f2) = (h * f1) + (h * f2) unit impulse e = […, 0, 0, 1, 0, 0, …]. f * e = f – Scaling: h * (k f) = k (h * f) • Differentiation: Separability Separability • In some cases, filter is separable, and we can factor into • In some cases, filter is separable, and we can factor into two steps: two steps: e.g., h – Convolve all rows What is the computational – Convolve all columns complexity advantage for a g separable filter of size k x k, in terms of number of operations per output pixel? f f * (g * h) = (f * g) * h

  4. Effect of smoothing filters Median filter • No new pixel values introduced • Removes spikes: good 5x5 for impulse, salt & pepper noise • Linear? Additive Gaussian noise Salt and pepper noise Median filter Median filter • Median filter is edge preserving Salt and Median pepper filtered noise Plots of a row of the image Source: M. Hebert Filters for features Template matching • Previously, thinking of filtering • Filters as templates : as a way to remove or reduce Note that filters look like the effects they are intended noise to find --- “matched filters” • Now, consider how filters will allow us to abstract higher-level “ features ”. – Map raw pixels to an intermediate representation that will be used for • Use normalized cross-correlation score to find a subsequent processing given pattern (template) in the image. – Goal: reduce amount of data, • Normalization needed to control for relative discard redundancy, preserve brightnesses. what’s useful

  5. Template matching Template matching Template Template (mask) Scene Detected template A toy example Template matching Where’s Waldo? Template Detected template Correlation map Scene Where’s Waldo? Where’s Waldo? Template Detected template Correlation map Detected template

  6. Template matching Template matching Template Template Scene Detected template What if the template is not identical to some Match can be meaningful, if scale, orientation, subimage in the scene? and general appearance is right. Edge detection What can cause an edge? • Goal : map image from 2d array of pixels to a set of curves or line segments or contours. Depth discontinuity: Reflectance change: object boundary • Why? appearance information, texture Cast shadows Figure from J. Shotton et al., PAMI 2007 Change in surface orientation: shape • Main idea : look for strong gradients, post-process Contrast and invariance Recall : Images as functions Edges look like steep cliffs Source: S. Seitz

  7. Derivatives and edges Differentiation and convolution An edge is a place of rapid change in the For 2D function, f(x,y), the partial derivative is: image intensity function. ∂ + ε − f ( x , y ) f ( x , y ) f ( x , y ) = lim intensity function ∂ ε ε → x 0 image (along horizontal scanline) first derivative For discrete data, we can approximate using finite differences: ∂ + − f ( x , y ) f ( x 1 , y ) f ( x , y ) ≈ ∂ x 1 To implement above as convolution, what would be the associated filter? edges correspond to extrema of derivative Source: L. Lazebnik Partial derivatives of an image Assorted finite difference filters ∂ ∂ f ( x , y ) f ( x , y ) ∂ ∂ x y ? -1 1 >> My = fspecial(‘sobel’); -1 1 or 1 -1 >> outim = imfilter(double(im), My); >> imagesc(outim); >> colormap gray; Which shows changes with respect to x? (showing flipped filters) Image gradient Effects of noise The gradient of an image: Consider a single row or column of the image • Plotting intensity as a function of position gives a signal The gradient points in the direction of most rapid change in intensity The gradient direction (orientation of edge normal) is given by: The edge strength is given by the gradient magnitude Where is the edge? Slide credit S. Seitz

  8. Solution: smooth first Derivative theorem of convolution Differentiation property of convolution. Where is the edge? Look for peaks in Derivative of Gaussian filter Derivative of Gaussian filters ⊗ ⊗ = ⊗ ⊗ ( I g ) h I ( g h ) [ ] 0.0030 0.0133 0.0219 0.0133 0.0030 [ ] 0.0133 0.0596 0.0983 0.0596 0.0133 ⊗ 1 − 1 0.0219 0.0983 0.1621 0.0983 0.0219 0.0133 0.0596 0.0983 0.0596 0.0133 y -direction x -direction 0.0030 0.0133 0.0219 0.0133 0.0030 Why is this preferable? Source: L. Lazebnik Laplacian of Gaussian 2D edge detection filters Consider Laplacian of Gaussian Gaussian derivative of Gaussian Laplacian of Gaussian operator • is the Laplacian operator: Where is the edge? Zero-crossings of bottom graph

  9. Mask properties Gradients -> edges • Smoothing – Values positive Primary edge detection steps: – Sum to 1 � constant regions same as input – Amount of smoothing proportional to mask size 1. Smoothing: suppress noise – Remove “high-frequency” components; “low-pass” filter 2. Edge enhancement: filter for contrast • Derivatives 3. Edge localization – Opposite signs used to get high response in regions of high contrast Determine which local maxima from filter output – Sum to 0 � no response in constant regions are actually edges vs. noise – High absolute value at points of high contrast • Threshold, Thin • Filters act as templates • Highest response for regions that “look the most like the filter” • Dot product as correlation Smoothing with a Gaussian Effect of σ on derivatives Recall: parameter σ is the “scale” / “width” / “spread” of the Gaussian kernel, and controls the amount of smoothing. … σ = 1 pixel σ = 3 pixels The apparent structures differ depending on Gaussian’s scale parameter. Larger values: larger scale edges detected Smaller values: finer features detected Thresholding So, what scale to choose? It depends what we’re looking for. • Choose a threshold value t • Set any pixels less than t to zero (off) • Set any pixels greater than or equal to t to one (on) Too fine of a scale…can’t see the forest for the trees. Too coarse of a scale…can’t tell the maple grain from the cherry.

  10. Original image Gradient magnitude image Thresholding gradient with a lower threshold Thresholding gradient with a higher threshold Canny edge detector The Canny edge detector • Filter image with derivative of Gaussian • Find magnitude and orientation of gradient • Non-maximum suppression : – Thin multi-pixel wide “ridges” down to single pixel width • Linking and thresholding ( hysteresis ): – Define two thresholds: low and high – Use the high threshold to start edge curves and the low threshold to continue them • MATLAB: edge(image, ‘canny’); original image (Lena) >>help edge • Source: D. Lowe, L. Fei-Fei

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