PRODUCTS
Products Overview
Mathematica
Mathematica Student Edition
Mathematica Home Edition
Wolfram
CDF Player
(free download)
Computable Document Format (CDF)
web
Mathematica
grid
Mathematica
Wolfram
Workbench
Wolfram
SystemModeler
Wolfram
Finance Platform
Mathematica
Add-Ons
Wolfram|Alpha Products
SOLUTIONS
Solutions Overview
Engineering
Aerospace Engineering & Defense
Chemical Engineering
Control Systems
Electrical Engineering
Image Processing
Industrial Engineering
Materials Science
Mechanical Engineering
Operations Research
Optics
Petroleum Engineering
Biotechnology & Medicine
Bioinformatics
Medical Imaging
Finance, Statistics & Business Analysis
Actuarial Sciences
Data Analysis & Mining
Econometrics
Economics
Financial Engineering & Mathematics
Financial Risk Management
Statistics
Software Engineering & Content Delivery
Authoring & Publishing
Interface Development
Software Engineering
Web Development
Science
Astronomy
Biological Sciences
Chemistry
Environmental Sciences
Geosciences
Social & Behavioral Sciences
Design, Arts & Entertainment
Game Design, Special Effects & Generative Art
Education
STEM Education Initiative
Higher Education
Community & Technical College Education
Primary & Secondary Education
Students
Technology
Computable Document Format (CDF)
High-Performance & Parallel Computing (HPC)
See Also: Technology Guide
PURCHASE
Online Store
Other Ways to Buy
Volume & Site Licensing
Contact Sales
Software
Service
Upgrades
Training
Books
Merchandise
SUPPORT
Support Overview
Mathematica
Documentation
Knowledge Base
Learning Center
Technical Services
Community & Forums
Training
Does My Site Have a License?
Wolfram User Portal
COMPANY
About Wolfram Research
News
Events
Wolfram Blog
Partnerships
Employment Opportunities
History of
Mathematica
Stephen Wolfram's Home Page
Contact Us
OUR SITES
All Sites
Wolfram|Alpha
Demonstrations Project
MathWorld
Integrator
Wolfram Functions Site
Mathematica Journal
Wolfram Media
Wolfram
Tones
Wolfram Science
Stephen Wolfram
DOCUMENTATION CENTER SEARCH
User's Guide
Area Operations
5.5 Nonlinear Filtering
Noise reduction is an important consideration in many image processing applications. Five noise reducing nonlinear area operators are defined in the
Digital Image Processing
package. These operators use the method of block processing to slide a typically small window across the image domain and perform nonlinear operations on each neighborhood. From a statistical perspective these filters are estimators: they estimate the value of a data sample based on the values of samples in its immediate neighborhood. These filters tend to preserve structural information (i.e., an edge) while suppressing noise.
BlockTrimmedMean
[
img
,
{
k
1
,
k
2
}
,
n
]
returns
BlockMedian
[
img
]
returns
BlockSigma
[
img
,
{
]
returns
BlockLee
[
img
]
returns
BlockOutlier
[
img
,
{
,
t
]
returns's neighborhood if |
x
| is, and, where
Noise reduction operators.
The first argument for each of the noise reduction functions may be a vector, matrix, or
ImageData
expression.
This loads the package.
In[1]:=
This generates a data array
with uniformly distributed additive noise.
In[2]:=
This sets some useful options.
In[3]:=
This shows two views of the example data array.
In[4]:=
Out[4]=
A commonly used measure of the degree of noise corruption is the so-called signal-to-noise ratio (SNR). The SNR is defined as
where
s
is the signal and
n
the noise. The units of SNR are decibels (dB). Since both signals are explicitly given the SNR of the experimental data can be calculated.
In[5]:=
Out[5]=
In the remainder of this section, we demonstrate noise suppression using the five available filters. Features to note are the degree of noise suppression and the amount of blurring. In all cases 3×3 neighborhoods were used. For ease of comparison, a line profile and a density plot are shown for each filter. We begin with an example using the trimmed-mean and the outlier noise reduction filters.
In[6]:=
This plots the results demonstrating the noise reduction achieved with these two operators.
In[7]:=
Out[7]=
Here are the resulting signal-to-noise ratios (larger values indicate better results).
In[8]:=
Out[8]=
Here we use the median and sigma noise reduction filters.
In[9]:=
Out[10]=
Here are the resulting signal-to-noise ratios.
In[11]:=
Out[11]=
Finally, two examples of the Lee operator are shown for different values of the estimate of noise variance [
Lee80
,
Lee83
].
In[12]:=
Out[13]=
Here are the resulting signal-to-noise ratios.
In[14]:=
Out[14]=
These restore the default
ListDensityPlot
and
ListPlot
options.
In[15]:=
THIS IS DOCUMENTATION FOR AN OBSOLETE PRODUCT.