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
Function Index
PowerSpectrum
PowerSpectrum[
img
]
returns the power spectrum of
img
.
PowerSpectrum[
img
, {
n
1
,
n
2
,
...
}]
returns the power spectrum of
img
calculated using non-overlapping blocks of size
n
1
n
2
....
PowerSpectrum[
img
, {
n
1
,
n
2
,
...
},
{
d
1
,
d
2
,
...
}]
uses offset
d
i
at level
i
in
img
.
PowerSpectrum
uses one of several classic nonparametric spectrum estimation methods:
"DFT"
,
"Welch"
, and
"BlackmanTukey"
.
The default method is
Method
→
"DFT"
. The power spectrum is effectively | DFT[
img
] |
2
.
Welch's method returns a power spectrum of dimensions
n
1
n
2
that is an average of the power spectra evaluated over blocks of dimensions
n
1
n
2
that tile
img
. In each block the DFT method is used to compute the spectrum. Additionally, the samples of
img
may be windowed using any available window sequence.
The method by Blackman and Tukey calculates the power spectrum from the autocorrelation coefficients of
img
. The autocorrelation coefficients may be windowed using any available window sequence.
The desired window sequence is selected using option
WindowType
. The default window sequence is
WindowsType
→
"Bartlett"
(or equivalently
"Triangular"
). Other available window sequences are:
"Rectangular"
,
"Hamming"
, and
"Blackman".
The argument
img
may be an array or a grayscale
ImageData
object.
See also User's Guide
8.3
.
New in Version 2.
Examples
This loads the package.
In[1]:=
This loads an example image.
In[2]:=
This compares two different power spectrum calculations.
In[3]:=
Out[3]=
The following shows the power spectrum calculated using Welch's method.
In[4]:=
Out[4]=
THIS IS DOCUMENTATION FOR AN OBSOLETE PRODUCT.