Click here to load reader
View
43
Download
0
Embed Size (px)
DESCRIPTION
Blurring and Local Blurring. 姓名 : 張珮毓 授課教師:張顧耀 教授 報告日期: 2007/06/12. Outline. Introduction Blurring Discrete Gaussian Binomial Blurring Recursive Gaussian IIR Local Blurring. Introduction. This section describes several methods that can be applied to reduce noise on images. Blurring - PowerPoint PPT Presentation
Blurring and Local Blurring: 2007/06/12
H703
OutlineIntroductionBlurringDiscrete GaussianBinomial BlurringRecursive Gaussian IIRLocal Blurring**
H703
IntroductionThis section describes several methods that can be applied to reduce noise on images.BlurringBlurring is the traditional approach for removing noise from images.The effect of blurring on the image spectrum is to attenuate high spatial frequencies.
**
H703
OutlineIntroductionBlurringDiscrete GaussianBinomial BlurringRecursive Gaussian IIRLocal Blurring**
H703
Header:#include "itkDiscreteGaussianImageFilter.h"filter->SetVariance( gaussianVariance );filter->SetMaximumKernelWidth( maxKernelWidth );
**Discrete Gaussian
H703
**Discrete GaussianEffect of the DiscreteGaussianImageFilter on a slice from a MRI proton density image of the brain.
H703
**Variance=3 maxKernelWidth=3*3Discrete GaussianVariance=7maxKernelWidth=3*3
H703
**Discrete GaussianVariance=3 maxKernelWidth=5*5Variance=3 maxKernelWidth=7*7
H703
Binomial BlurringBinomial Blurring computes a nearest neighbor average along each dimensionThe process is repeated a number of times, as specified by the user.**
H703
Binomial filters. 1D versions**Binomial Blurring
H703
In principle, after a large number of iterations the result will approach the convolution with a Gaussian.Header:#include "itkBinomialBlurImageFilter.h"
**Binomial Blurring
H703
**Binomial BlurringRepetitions=2Repetitions=8
H703
Finite Impulse Response (FIR)Infinite Impulse Response (IIR)**Recursive Gaussian IIR(FIR)(IIR)
H703
Recursive Gaussian IIRHeader:#include "itkRecursiveGaussianImageFilter.h
**
H703
**Recursive Gaussian IIRSigma=3Sigma=5Sigma=7
H703
OutlineIntroductionBlurringDiscrete GaussianBinomial BlurringRecursive Gaussian IIRLocal Blurring**
H703
Local BlurringIn some cases it is desirable to compute smoothing in restricted regions of the image, or to do it using different parameters that are computed locally.
**
H703
ItkSoftwareGuidehttp://www.engr.udayton.edu/faculty/jloomis/ece563/notes/filter/smooth/smooth.htmlhttp://ssip2003.info.uvt.ro/lectures/gui/smoothing_techniques_in_image_processing.ppthttp://www.cee.hw.ac.uk/hipr/html/gsmooth.html**
H703
The filter requires the user to provide a value for the variance associated with the Gaussian kernel.
*