Lecture 2: Image filtering

Slides:



Advertisements
Similar presentations
CS Spring 2009 CS 414 – Multimedia Systems Design Lecture 4 – Digital Image Representation Klara Nahrstedt Spring 2009.
Advertisements

Linear Filtering – Part I Selim Aksoy Department of Computer Engineering Bilkent University
Spatial Filtering (Chapter 3)
Lecture 2: Filtering CS4670/5670: Computer Vision Kavita Bala.
1 Image filtering Hybrid Images, Oliva et al.,
Lecture 1: Images and image filtering
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.
Announcements Kevin Matzen office hours – Tuesday 4-5pm, Thursday 2-3pm, Upson 317 TA: Yin Lou Course lab: Upson 317 – Card access will be setup soon Course.
1 Image filtering Images by Pawan SinhaPawan Sinha.
Lecture 2: Image filtering
Matlab Tutorial Continued Files, functions and images.
Linear filtering.
Linear Filtering About modifying pixels based on neighborhood. Local methods simplest. Linear means linear combination of neighbors. Linear methods simplest.
CS448f: Image Processing For Photography and Vision Denoising.
Most slides from Steve Seitz
Lecture 1: Images and image filtering CS4670/5670: Intro to Computer Vision Kavita Bala Hybrid Images, Oliva et al.,
Filtering Course web page: vision.cis.udel.edu/cv March 5, 2003  Lecture 9.
Machine Vision ENT 273 Image Filters Hema C.R. Lecture 5.
CS559: Computer Graphics Lecture 3: Digital Image Representation Li Zhang Spring 2008.
Lecture 03 Area Based Image Processing Lecture 03 Area Based Image Processing Mata kuliah: T Computer Vision Tahun: 2010.
Linear Filters Monday, Jan 24 Prof. Kristen Grauman UT-Austin …
Linear Filters August 27 th 2015 Devi Parikh Virginia Tech 1 Slide credit: Devi Parikh Disclaimer: Many slides have been borrowed from Kristen Grauman,
Image Filtering Computer Vision CS 543 / ECE 549 University of Illinois Derek Hoiem 02/02/10.
Why is computer vision difficult?
Chapter 5: Neighborhood Processing
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.
Lecture 5 Mask/Filter Transformation 1.The concept of mask/filters 2.Mathematical model of filtering Correlation, convolution 3.Smoother filters 4.Filter.
Machine Vision ENT 273 Image Filters Hema C.R. Lecture 5.
CSE 473/573 Computer Vision and Image Processing (CVIP) Ifeoma Nwogu Lecture 7 – Linear Filters 1.
Intelligent Vision Systems ENT 496 Image Filtering and Enhancement Hema C.R. Lecture 4.
Visual Computing Computer Vision 2 INFO410 & INFO350 S2 2015
CS 691B Computational Photography
CSE 6367 Computer Vision Image Operations and Filtering “You cannot teach a man anything, you can only help him find it within himself.” ― Galileo GalileiGalileo.
Lecture 3: Filtering and Edge detection
Linear filtering. Motivation: Image denoising How can we reduce noise in a photograph?
CSE 185 Introduction to Computer Vision Image Filtering: Spatial Domain.
Grauman Today: Image Filters Smooth/Sharpen Images... Find edges... Find waldo…
Lecture 1: Images and image filtering CS4670/5670: Intro to Computer Vision Noah Snavely Hybrid Images, Oliva et al.,
Filters– Chapter 6. Filter Difference between a Filter and a Point Operation is that a Filter utilizes a neighborhood of pixels from the input image to.
Spatial Filtering (Chapter 3) CS474/674 - Prof. Bebis.
Image Subtraction Mask mode radiography h(x,y) is the mask.
Digital Image Processing Lecture 10: Image Restoration
Linear Filters and Edges Chapters 7 and 8
Linear Filters April 6th, 2017
ECE 692 – Advanced Topics in Computer Vision
Filtering – Part I Gokberk Cinbis Department of Computer Engineering
The Chinese University of Hong Kong
Image Processing - in short
Lecture 1: Images and image filtering
Image filtering Hybrid Images, Oliva et al.,
Image filtering Images by Pawan Sinha.
Image filtering Images by Pawan Sinha.
Image Processing Today’s readings For Monday
Image filtering Images by Pawan Sinha.
Linear filtering.
Lecture: Image manipulations (2) Filters and kernels
Digital Image Processing Week IV
Most slides from Steve Seitz
Image filtering Images by Pawan Sinha.
Image filtering
Image filtering
Edge Detection in Computer Vision
Lecture 1: Images and image filtering
Intensity Transformation
Image Filtering Readings: Ch 5: 5. 4, 5. 5, 5. 6, , 5
Most slides from Steve Seitz
Lecture 7 Spatial filtering.
Lecture: Pixels and Filters
All about convolution.
Lecture: Pixels and Filters
Presentation transcript:

Lecture 2: Image filtering

= What is an image? A grid (matrix) of intensity values (common to use one byte per value: 0 = black, 255 = white) 255 20 75 95 96 127 145 175 200 47 74 =

Images as functions An image contains discrete numbers of pixels Pixel value grayscale/intensity [0,255] Color RGB [R, G, B], where [0,255] per channel Lab [L, a, b]: Lightness, a and b are color-opponent dimensions HSV [H, S, V]: Hue, saturation, value

Images as functions Can think of image as a function, f, from R2 to R or RM: Grayscale: f (x,y) gives intensity at position (x,y) f: [a,b] x [c,d] [0,255] Color: f (x,y) = [r(x,y), g(x,y), b(x,y)]

What is an image? A digital image is a discrete (sampled, quantized) version of this function x y f (x, y)

Image transformations g (x,y) = f (x,y) + 20 g (x,y) = f (-x,y)

Super-resolution Noise reduction

Image denoising

Why would images have noise? Sensor noise Sensors count photons: noise in count Dead pixels Old photographs …

What is an image? A grid (matrix) of intensity values: 1 color or 3 colors (common to use one byte per value: 0 = black, 255 = white) 255 20 75 95 96 127 145 175 200 47 74 =

An assumption about noise Let us assume noise at a pixel is independent of other pixels distributed according to a Gaussian distribution i.e., low noise values are more likely than high noise values “grainy images”

Noise reduction Nearby pixels are likely to belong to same object thus likely to have similar color Replace each pixel by average of neighbors

Mean filtering (0 + 0 + 0 + 10 + 40 + 0 + 10 + 0 + 0)/9 = 6.66 10 20 10 20 40 30 (0 + 0 + 0 + 10 + 40 + 0 + 10 + 0 + 0)/9 = 6.66

Mean filtering 10 20 40 30 (0 + 0 + 0 + 0 + 0 + 10 + 0 + 0 + 0 + 0 + 20 + 10 + 40 + 0 + 0 + 20 + 10 + 0 + 0 + 0 + 30 + 20 + 10 + 0 + 0)/25 = 6.8

Mean filtering (0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 10)/9 = 1.11 10 20 40 10 20 40 30 1 (0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 10)/9 = 1.11

Mean filtering (0 + 0 + 0 + 0 + 0 + 10 + 0 + 10 + 20)/9 = 4.44 10 20 10 20 40 30 1 4 (0 + 0 + 0 + 0 + 0 + 10 + 0 + 10 + 20)/9 = 4.44

Mean filtering (0 + 0 + 0 + 0 + 10 + 10 + 10 + 20 + 20)/9 = 7.77 10 20 10 20 40 30 1 4 8 (0 + 0 + 0 + 0 + 10 + 10 + 10 + 20 + 20)/9 = 7.77

Mean filtering 10 20 40 30 1 4 8 10 9 6 11 13 16 12 7 14 19 23 18 28 17 2 26 31 30 20 3 27 29 22

Noise reduction using mean filtering

Filters Filtering Form a new image whose pixels are a combination of the original pixels Why? To get useful information from images E.g., extract edges or contours (to understand shape) To enhance the image E.g., to blur to remove noise E.g., to sharpen to “enhance image” a la CSI

Mean filtering Replace pixel by mean of neighborhood f S[f] 5 1 4 7 3 10 4.1 Local image data f Modified image data S[f]

A more general version 5 1 4 7 3 10 7 Local image data Kernel / filter

A more general version 7 Local image data Kernel size = 2k+1 10 5 7 11 10 5 7 11 6 8 3 9 22 4 1 2 14 15 12 7 Local image data Kernel size = 2k+1

A more general version w(i,j) = 1/(2k+1)2 for mean filter If w(i,j) >=0 and sum to 1, weighted mean But w(i,j) can be arbitrary real numbers!

Properties: Linearity

Properties: Linearity

Properties: Linearity

Properties: Linearity

Properties: Shift invariance

Shift invariance

Shift invariance Shift, then convolve = convolve, then shift Output of convolution does not depend on where the pixel is f f’

Convolution and cross-correlation

Cross-correlation 1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9 w f 1*1 + 2*2 + 3*3 + 4*4 + 5*5 + 6*6 + 7*7 + 8*8 + 9*9

Convolution 1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9 w f 1*9 + 2*8 + 3*7 + 4*6 + 5*5 + 6*4 + 7*3 + 8*2 + 9*1

Convolution Adapted from F. Durand

* = Filters: examples 1 Kernel (k) Blur (with a mean filter) (g) Original (f) Source: D. Lowe

* = Filters: examples 1 Kernel (k) Original (f) Identical image (g) 1 = Kernel (k) Original (f) Identical image (g) Source: D. Lowe

Sharpening Source: D. Lowe

Sharpening = = What does blurring take away? – + α Let’s add it back: original detail + α =

Sharpening

Sharpening = = What does blurring take away? – + α Let’s add it back: original detail + α =

Sharpening 1 1

Sharpening filter (accentuates edges) 1 2 - * = Original Source: D. Lowe

Another example -1 1

Another example

Convolution is everywhere Horse

Why is convolution important? Shift invariance is a crucial property

Why is convolution important? We like linearity Linear functions behave predictably when input changes Lots of theory just easier with linear functions All linear shift-invariant systems can be expressed as a convolution

Non-linear filters: Thresholding

Non-linear filters: Rectification g(m,n) = max(f(m,n), 0) Crucial component of modern convolutional networks

Non-linear filters Sometimes mean filtering does not work

Non-linear filters Sometimes mean filtering does not work

Non-linear filters Mean is sensitive to outliers Median filter: Replace pixel by median of neighbors

Non-linear filters

Takeaway Two general recipes: Properties convolution cross-correlation Properties Shift-invariant: a sensible thing to require Linearity: convenient Can be used for smoothing, sharpening Also main component of CNNs

Next up Back to linear filters Signal processing view of filtering Filtering for detecting edges etc