Lecture 10 Image restoration and reconstruction 1.Basic concepts about image degradation/restoration 2.Noise models 3.Spatial filter techniques for restoration.

Slides:



Advertisements
Similar presentations
ECE 472/572 - Digital Image Processing Lecture 7 - Image Restoration - Noise Models 10/04/11.
Advertisements

Digital Image Processing Chapter 5: Image Restoration.
Digital Image Processing
Image Restoration 影像復原 Spring 2005, Jen-Chang Liu.
ECE 472/572 - Digital Image Processing
5. 1 Model of Image degradation and restoration
Use of moment generating functions. Definition Let X denote a random variable with probability density function f(x) if continuous (probability mass function.
Continuous Random Variable (2). Families of Continuous Random Variables Uniform R.V. Exponential R.V. Gaussian R.V.
Digital Image Processing
Image Restoration.
Digital Image Processing Chapter 5: Image Restoration.
Continuous Random Variables Chap. 12. COMP 5340/6340 Continuous Random Variables2 Preamble Continuous probability distribution are not related to specific.
Image Restoration.
A random variable that has the following pmf is said to be a binomial random variable with parameters n, p The Binomial random variable.
The moment generating function of random variable X is given by Moment generating function.
DIGITAL IMAGE PROCESSING Instructors: Dr J. Shanbehzadeh M.Gholizadeh M.Gholizadeh
Chapter 5 Image Restoration. Preview Goal: improve an image in some predefined sense. Image enhancement: subjective process Image restoration: objective.
4-1 Continuous Random Variables 4-2 Probability Distributions and Probability Density Functions Figure 4-1 Density function of a loading on a long,
Digital Image Processing Lecture 4 Image Restoration and Reconstruction Second Semester Azad University Islamshar Branch
Image Restoration The main aim of restoration is to improve an image in some predefined way. Image Enhancement is a subjective process whereas Image restoration.
© by Yu Hen Hu 1 ECE533 Digital Image Processing Image Restoration.
Chapter 5 Image Restoration.
Image Restoration and Reconstruction (Noise Removal)
Computer Vision - Restoration Hanyang University Jong-Il Park.
Functions of Random Variables. Methods for determining the distribution of functions of Random Variables 1.Distribution function method 2.Moment generating.
Moment Generating Functions
DIGITAL IMAGE PROCESSING Instructors: Dr J. Shanbehzadeh M.Gholizadeh M.Gholizadeh
K. Shum Lecture 16 Description of random variables: pdf, cdf. Expectation. Variance.
Use of moment generating functions 1.Using the moment generating functions of X, Y, Z, …determine the moment generating function of W = h(X, Y, Z, …).
Digital Image Processing
Continuous Distributions The Uniform distribution from a to b.
Chapter 3: Image Restoration Introduction. Image restoration methods are used to improve the appearance of an image by applying a restoration process.
CS654: Digital Image Analysis
انجمن دانشجویان ایران – مرجع دانلود کتاب ، نمونه سوال و جزوات درسی
4-1 Continuous Random Variables 4-2 Probability Distributions and Probability Density Functions Figure 4-1 Density function of a loading on a long,
Image Restoration Chapter 5.
Digital Image Processing Lecture 10: Image Restoration March 28, 2005 Prof. Charlene Tsai.
Image Restoration.
Digital Image Processing Lecture : Image Restoration
Image Restoration Fasih ur Rehman. –Goal of restoration: improve image quality –Is an objective process compared to image enhancement –Restoration attempts.
Digital Image Processing Lecture 10: Image Restoration
8-1 Chapter 8: Image Restoration Image enhancement: Overlook degradation processes, deal with images intuitively Image restoration: Known degradation processes;
Ch5 Image Restoration CS446 Instructor: Nada ALZaben.
7 sum of RVs. 7-1: variance of Z Find the variance of Z = X+Y by using Var(X), Var(Y), and Cov(X,Y)
IE 300, Fall 2012 Richard Sowers IESE. 8/30/2012 Goals: Rules of Probability Counting Equally likely Some examples.
Chapter 5 Image Restoration.
By Dr. Rajeev Srivastava
Image Restoration: Noise Models By Dr. Rajeev Srivastava.
The Chinese University of Hong Kong
Outline Random variables –Histogram, Mean, Variances, Moments, Correlation, types, multiple random variables Random functions –Correlation, stationarity,
Image Restoration. Image restoration vs. image enhancement Enhancement:  largely a subjective process  Priori knowledge about the degradation is not.
Lecture 22 Image Restoration. Image restoration Image restoration is the process of recovering the original scene from the observed scene which is degraded.
6/10/20161 Digital Image Processing Lecture 09: Image Restoration-I Naveed Ejaz.
Lecture 10 Chapter 5: Image Restoration. Image restoration Image restoration is the process of recovering the original scene from the observed scene which.
Digital Image Processing
A VQ-Based Blind Image Restoration Algorithm
IMAGE PROCESSING IMAGE RESTORATION AND NOISE REDUCTION
Image Restoration – Degradation Model and General Approaches
Image Restoration Spring 2005, Jen-Chang Liu.
Digital Image Processing
Digital Image Processing
DIGITAL IMAGE PROCESSING
The Chinese University of Hong Kong
Image Analysis Image Restoration.
Digital Image Processing
ENG4BF3 Medical Image Processing
Image Restoration - Focus on Noise
Lecture 5 b Faten alamri.
Chapter 3 : Random Variables
Lecture 12 Figures from Gonzalez and Woods, Digital Image Processing, Second Edition, 2002.
Presentation transcript:

Lecture 10 Image restoration and reconstruction 1.Basic concepts about image degradation/restoration 2.Noise models 3.Spatial filter techniques for restoration

Image Restoration Image restoration is to recover an image that has been degraded by using a priori knowledge of the degradation phenomenon Image enhancement vs. image restoration –Enhancement is for vision –Restoration is to recover the original image –There is overlap of the techniques used Image restored is an approximation of the original image –Criteria for the goodness

The model of Image Degradation

Noise models Noise often arise during image acquisition/transformation –Caused by many factors –Spatial noise –Frequency noise Some important noise probability density functions –Gaussian noise –Rayleigh noise –Erlang (gamma) noise –Exponential noise –Uniform –Impulse Periodic noise

Generate spatial noise of a given distribution Theorem Given CDF F(z). Let w be the uniform random number generator on (0,1). Then the random number has the CDF F(z) Example: Reyleigh’s CDF is Matlab example: a = 50, b =10, M = 100, N = 100; R = a + sqrt(-b*log(1-rand(M,N))); MatLab example 2: Gaussian distribution mean a and std b a = 10, b =10, M = 100, N = 100; R = a + b*randn(M,N);

Add spatial noise to an image of Let f(x, y) be an M N image, and N(x, y) be the random MN noise of the given distribution. Then the image with the spatial noise is g(x, y) = f(x,y) + N(x,y) MatLab example: f = imread('moon.tif'); [M N] = size(f); s = uint8(a + sqrt(-b*log(1-rand(M,N)))); fs = y + s; imshow(fs)

Estimation of Noise Parameters Parameters of a PDF: mean, standard deviation, variance, moments about the mean The method of estimation –If possible, take a flat image the system and compute its parameter –If only images are available. Take a strip image S. Determine the histogram of S. Let denote the frequency of value z i

Spatial filters based restoration technique When only additive random noise is present, spatial filter can be applied Mean filters –Arithmetic mean filter

Spatial filters based restoration technique –Geometric mean filter –Harmonic mean filter –Contraharmonic mean filter