Sampling and Reconstruction

Slides:



Advertisements
Similar presentations
CSCE 643 Computer Vision: Template Matching, Image Pyramids and Denoising Jinxiang Chai.
Advertisements

Motion illusion, rotating snakes. Slide credit Fei Fei Li.
Multiscale Analysis of Images Gilad Lerman Math 5467 (stealing slides from Gonzalez & Woods, and Efros)
15-463: Computational Photography Alexei Efros, CMU, Spring 2010 Most slides from Steve Marschner Sampling and Reconstruction.
Ted Adelson’s checkerboard illusion. Motion illusion, rotating snakes.
Slides from Alexei Efros
CS 691 Computational Photography
Computational Photography: Sampling + Reconstruction Connelly Barnes Slides from Alexei Efros and Steve Marschner.
Computational Photography CSE 590 Tamara Berg Filtering & Pyramids.
Templates, Image Pyramids, and Filter Banks Slides largely from Derek Hoeim, Univ. of Illinois.
Templates and Image Pyramids Computational Photography Derek Hoiem, University of Illinois 09/06/11.
Convolution, Edge Detection, Sampling : Computational Photography Alexei Efros, CMU, Fall 2006 Some slides from Steve Seitz.
Sampling and Pyramids : Rendering and Image Processing Alexei Efros …with lots of slides from Steve Seitz.
Recap from Monday Spectra and Color Light capture in cameras and humans.
Image Sampling Moire patterns
1 Image Filtering Readings: Ch 5: 5.4, 5.5, 5.6,5.7.3, 5.8 (This lecture does not follow the book.) Images by Pawan SinhaPawan Sinha formal terminology.
Linear filtering. Overview: Linear filtering Linear filters Definition and properties Examples Gaussian smoothing Separability Applications Denoising.
15-463: Computational Photography Alexei Efros, CMU, Fall 2011 Many slides from Steve Marschner Sampling and Reconstruction.
Templates, Image Pyramids, and Filter Banks Computer Vision James Hays, Brown Slides: Hoiem and others.
Linear filtering.
Slides from Alexei Efros, Steve Marschner Filters & fourier theory.
Image Sampling Moire patterns -
Computer Vision Spring ,-685 Instructor: S. Narasimhan Wean 5409 T-R 10:30am – 11:50am.
Applications of Image Filters Computer Vision CS 543 / ECE 549 University of Illinois Derek Hoiem 02/04/10.
Templates, Image Pyramids, and Filter Banks Computer Vision Derek Hoiem, University of Illinois 01/31/12.
Templates, Image Pyramids, and Filter Banks
Templates and Image Pyramids Computational Photography Derek Hoiem, University of Illinois 09/03/15.
Lecture 3: Edge detection CS4670/5670: Computer Vision Kavita Bala From Sandlot ScienceSandlot Science.
Image Filtering Computer Vision CS 543 / ECE 549 University of Illinois Derek Hoiem 02/02/10.
Linear filtering. Motivation: Noise reduction Given a camera and a still scene, how can you reduce noise? Take lots of images and average them! What’s.
Templates, Image Pyramids, and Filter Banks
CS 691B Computational Photography
CS559: Computer Graphics Lecture 3: Image Sampling and Filtering Li Zhang Spring 2010.
Pixels and Image Filtering Computational Photography Derek Hoiem 08/26/10 Graphic:
Reconnaissance d’objets et vision artificielle
Linear filtering. Motivation: Image denoising How can we reduce noise in a photograph?
Projects Project 1a due this Friday Project 1b will go out on Friday to be done in pairs start looking for a partner now.
Cornell CS465 Fall 2004 Lecture 5© 2004 Steve Marschner 1 Sampling and reconstruction CS 465 Lecture 5.
CSE 185 Introduction to Computer Vision Image Filtering: Spatial Domain.
Grauman Today: Image Filters Smooth/Sharpen Images... Find edges... Find waldo…
Image Filtering in Spatial domain
Slide credit Fei Fei Li.
CS 4501: Introduction to Computer Vision Filtering and Edge Detection
Image Resampling & Interpolation
Sampling and reconstruction
Linear Filters T-11 Computer Vision University of Houston
Image Sampling Moire patterns
Pixels and Image Filtering
Image Pyramids and Applications
Recap from Wednesday Spectra and Color Light capture in cameras and humans.
Image Sampling Moire patterns
Multiscale Analysis of Images
More Image Manipulation
Image filtering Images by Pawan Sinha.
Samuel Cheng Slide credits: Noah Snavely
Image Processing Today’s readings For Monday
Image filtering Images by Pawan Sinha.
Motion illusion, rotating snakes
Filtering Part 2: Image Sampling
Linear filtering.
Image Sampling Moire patterns
Most slides from Steve Seitz
Linear Filtering CS 678 Spring 2018.
Image Resampling & Interpolation
Resampling.
Lecture 1: Images and image filtering
Image Filtering Readings: Ch 5: 5. 4, 5. 5, 5. 6, , 5
Most slides from Steve Seitz
Samuel Cheng Slide credits: Noah Snavely
Templates and Image Pyramids
Presentation transcript:

Sampling and Reconstruction 15-463: Computational Photography Alexei Efros, CMU, Fall 2012 Many slides from Steve Marschner

Sampling and Reconstruction

Sampled representations How to store and compute with continuous functions? Common scheme for representation: samples write down the function’s values at many points [FvDFH fig.14.14b / Wolberg] © 2006 Steve Marschner • 3

Reconstruction Making samples back into a continuous function for output (need realizable method) for analysis or processing (need mathematical method) amounts to “guessing” what the function did in between [FvDFH fig.14.14b / Wolberg] © 2006 Steve Marschner • 4

1D Example: Audio low high frequencies

Sampling in digital audio Recording: sound to analog to samples to disc Playback: disc to samples to analog to sound again how can we be sure we are filling in the gaps correctly? © 2006 Steve Marschner • 6

Sampling and Reconstruction Simple example: a sign wave © 2006 Steve Marschner • 7

Undersampling What if we “missed” things between the samples? Simple example: undersampling a sine wave unsurprising result: information is lost © 2006 Steve Marschner • 8

Undersampling What if we “missed” things between the samples? Simple example: undersampling a sine wave unsurprising result: information is lost surprising result: indistinguishable from lower frequency © 2006 Steve Marschner • 9

Undersampling What if we “missed” things between the samples? Simple example: undersampling a sine wave unsurprising result: information is lost surprising result: indistinguishable from lower frequency also, was always indistinguishable from higher frequencies aliasing: signals “traveling in disguise” as other frequencies © 2006 Steve Marschner • 10

Aliasing in video Slide by Steve Seitz

Aliasing in images

What’s happening? Input signal: Plot as image: x = 0:.05:5; imagesc(sin((2.^x).*x)) Alias! Not enough samples

Antialiasing What can we do about aliasing? Sample more often Join the Mega-Pixel craze of the photo industry But this can’t go on forever Make the signal less “wiggly” Get rid of some high frequencies Will loose information But it’s better than aliasing

Preventing aliasing Introduce lowpass filters: remove high frequencies leaving only safe, low frequencies choose lowest frequency in reconstruction (disambiguate) © 2006 Steve Marschner • 15

Linear filtering: a key idea Transformations on signals; e.g.: bass/treble controls on stereo blurring/sharpening operations in image editing smoothing/noise reduction in tracking Key properties linearity: filter(f + g) = filter(f) + filter(g) shift invariance: behavior invariant to shifting the input delaying an audio signal sliding an image around Can be modeled mathematically by convolution © 2006 Steve Marschner • 16

Moving Average basic idea: define a new function by averaging over a sliding window a simple example to start off: smoothing © 2006 Steve Marschner • 17

Weighted Moving Average Can add weights to our moving average Weights […, 0, 1, 1, 1, 1, 1, 0, …] / 5 © 2006 Steve Marschner • 18

Weighted Moving Average bell curve (gaussian-like) weights […, 1, 4, 6, 4, 1, …] © 2006 Steve Marschner • 19

Moving Average In 2D What are the weights H? 90 90 ones, divide by 9 © 2006 Steve Marschner • 20 Slide by Steve Seitz

Cross-correlation filtering Let’s write this down as an equation. Assume the averaging window is (2k+1)x(2k+1): We can generalize this idea by allowing different weights for different neighboring pixels: This is called a cross-correlation operation and written: H is called the “filter,” “kernel,” or “mask.” © 2006 Steve Marschner • 21 Slide by Steve Seitz

Gaussian filtering A Gaussian kernel gives less weight to pixels further from the center of the window This kernel is an approximation of a Gaussian function: 90 1 2 4 Slide by Steve Seitz

Mean vs. Gaussian filtering Slide by Steve Seitz

Convolution cross-correlation: A convolution operation is a cross-correlation where the filter is flipped both horizontally and vertically before being applied to the image: It is written: Suppose H is a Gaussian or mean kernel. How does convolution differ from cross-correlation? Slide by Steve Seitz

Convolution is nice! Notation: Convolution is a multiplication-like operation commutative associative distributes over addition scalars factor out identity: unit impulse e = […, 0, 0, 1, 0, 0, …] Conceptually no distinction between filter and signal Usefulness of associativity often apply several filters one after another: (((a * b1) * b2) * b3) this is equivalent to applying one filter: a * (b1 * b2 * b3) © 2006 Steve Marschner • 25

Tricks with convolutions =

Practice with linear filters 1 ? Original Source: D. Lowe 27

Practice with linear filters 1 Original Filtered (no change) Source: D. Lowe 28

Practice with linear filters 1 ? Original Source: D. Lowe 29

Practice with linear filters 1 Original Shifted left By 1 pixel Source: D. Lowe 30

Other filters -1 1 -2 2 Sobel Vertical Edge (absolute value)

Other filters -1 -2 1 2 Horizontal Edge (absolute value) Q? Sobel 1 2 Questions at this point? Sobel Horizontal Edge (absolute value) 32

Important filter: Gaussian Weight contributions of neighboring pixels by nearness 0.003 0.013 0.022 0.013 0.003 0.013 0.059 0.097 0.059 0.013 0.022 0.097 0.159 0.097 0.022 5 x 5,  = 1 Slide credit: Christopher Rasmussen 33

Gaussian filters Remove “high-frequency” components from the image (low-pass filter) Images become more smooth Convolution with self is another Gaussian So can smooth with small-width kernel, repeat, and get same result as larger-width kernel would have Convolving two times with Gaussian kernel of width σ is same as convolving once with kernel of width σ√2 Linear vs. quadratic in mask size Source: K. Grauman 34

Practical matters How big should the filter be? Values at edges should be near zero Rule of thumb for Gaussian: set filter half-width to about 3 σ Side by Derek Hoiem 35

Practical matters What is the size of the output? MATLAB: filter2(g, f, shape) or conv2(g,f,shape) shape = ‘full’: output size is sum of sizes of f and g shape = ‘same’: output size is same as f shape = ‘valid’: output size is difference of sizes of f and g full same valid g g g g f f g f g g g g g g g Source: S. Lazebnik 36

Practical matters What about near the edge? the filter window falls off the edge of the image need to extrapolate methods: clip filter (black) wrap around copy edge reflect across edge Source: S. Marschner 37

Practical matters methods (MATLAB): Q? Practical matters methods (MATLAB): clip filter (black): imfilter(f, g, 0) wrap around: imfilter(f, g, ‘circular’) copy edge: imfilter(f, g, ‘replicate’) reflect across edge: imfilter(f, g, ‘symmetric’) Source: S. Marschner 38

Template matching Goal: find in image Main challenge: What is a good similarity or distance measure between two patches? Correlation Zero-mean correlation Sum Square Difference Normalized Cross Correlation Side by Derek Hoiem 39

Matching with filters Goal: find in image Method 0: filter the image with eye patch f = image g = filter Problem: response is stronger for higher intensity What went wrong? Input Filtered Image Side by Derek Hoiem 40

Matching with filters Goal: find in image Method 1: filter the image with zero-mean eye mean of f True detections Likes bright pixels where filters are above average, dark pixels where filters are below average. Problems: response is sensitive to gain/contrast, pixels in filter that are near the mean have little effect, does not require pixel values in image to be near or proportional to values in filter. False detections Input Filtered Image (scaled) Thresholded Image 41

Matching with filters Goal: find in image Method 2: SSD True detections Problem: SSD sensitive to average intensity Input 1- sqrt(SSD) Thresholded Image 42

Matching with filters Can SSD be implemented with linear filters? Side by Derek Hoiem

What’s the potential downside of SSD? Matching with filters What’s the potential downside of SSD? Goal: find in image Method 2: SSD Problem: SSD sensitive to average intensity Input 1- sqrt(SSD) Side by Derek Hoiem 44

Matching with filters Goal: find in image Method 3: Normalized cross-correlation mean template mean image patch Invariant to mean and scale of intensity Side by Derek Hoiem 45

Matching with filters Goal: find in image Method 3: Normalized cross-correlation True detections Input Thresholded Image Normalized X-Correlation 46

Matching with filters Goal: find in image Method 3: Normalized cross-correlation True detections Input Thresholded Image Normalized X-Correlation 47

Q: What is the best method to use? A: Depends Zero-mean filter: fastest but not a great matcher SSD: next fastest, sensitive to overall intensity Normalized cross-correlation: slowest, invariant to local average intensity and contrast Side by Derek Hoiem

Image half-sizing This image is too big to fit on the screen. How can we reduce it? How to generate a half- sized version?

Image sub-sampling 1/8 1/4 Throw away every other row and column to create a 1/2 size image - called image sub-sampling Slide by Steve Seitz

Image sub-sampling 1/2 1/4 (2x zoom) 1/8 (4x zoom) Aliasing! What do we do? Slide by Steve Seitz

Gaussian (lowpass) pre-filtering Solution: filter the image, then subsample Filter size should double for each ½ size reduction. Why? Slide by Steve Seitz

Subsampling with Gaussian pre-filtering Slide by Steve Seitz

Compare with... 1/2 1/4 (2x zoom) 1/8 (4x zoom) Slide by Steve Seitz

Gaussian (lowpass) pre-filtering Solution: filter the image, then subsample Filter size should double for each ½ size reduction. Why? How can we speed this up? Slide by Steve Seitz

Image Pyramids Known as a Gaussian Pyramid [Burt and Adelson, 1983] In computer graphics, a mip map [Williams, 1983] A precursor to wavelet transform Slide by Steve Seitz

A bar in the big images is a hair on the zebra’s nose; in smaller images, a stripe; in the smallest, the animal’s nose Figure from David Forsyth

What are they good for? Improve Search Pre-computation Search over translations Like project 1 Classic coarse-to-fine strategy Search over scale Template matching E.g. find a face at different scales Pre-computation Need to access image at different blur levels Useful for texture mapping at different resolutions (called mip-mapping)

Gaussian pyramid construction filter mask Repeat Filter Subsample Until minimum resolution reached can specify desired number of levels (e.g., 3-level pyramid) The whole pyramid is only 4/3 the size of the original image! Slide by Steve Seitz

Denoising Gaussian Filter Additive Gaussian Noise

Reducing Gaussian noise Smoothing with larger standard deviations suppresses noise, but also blurs the image Source: S. Lazebnik 61

Reducing salt-and-pepper noise by Gaussian smoothing 3x3 5x5 7x7 What’s wrong with these results? 62

Alternative idea: Median filtering A median filter operates over a window by selecting the median intensity in the window Better at salt’n’pepper noise Not convolution: try a region with 1’s and a 2, and then 1’s and a 3 Is median filtering linear? Source: K. Grauman 63

Median filter What advantage does median filtering have over Gaussian filtering? Robustness to outliers Source: K. Grauman 64

Salt-and-pepper noise Median filter Salt-and-pepper noise Median filtered MATLAB: medfilt2(image, [h w]) Source: M. Hebert 65

Median vs. Gaussian filtering 3x3 5x5 7x7 Gaussian Median 66