SlideShare uma empresa Scribd logo
1 de 56
Digital Signal & Image Processing
Lecture-4
Overview
• Filters
• Common Filter Types
• Analog vs. Digital Filters
• Difference Equation
• Difference Equation Diagram Elements
• Nonrecursive Difference Equation Diagrams
• Recursive Difference Equation Diagrams
• Impulse Response
• Step Response
Filters
• Filters change a signal’s characteristics by selectively removing
some of its frequency elements.
• A low pass filter, for example, removes the high frequency
components of a signal, but passes low frequency
components.
• It does this because the filter’s gain, the amplification factor it
applies to an input, varies with frequency.
3
Filters
• For a low pass filter, the gains are highest at low frequency
and much lower at high frequency.
• A high pass filter has exactly the opposite shape: its gains are
highest at high frequency and lowest at low frequency.
• The pass band of a filter determines the range of frequencies
that are passed.
• The stop band of the filter determines the range of
frequencies that are strongly attenuated.
4
Filters
Cutoff Frequency
• A filter is considered to pass signals at frequencies where the filter’s
gain exceeds 0.707 of its maximum gain.
• The frequency or frequencies where the gain equals 0.707 of the
maximum gain are called the cut-off frequencies of the filter.
• Since 20log0.707 = -3 dB, they are also called –3 dB frequencies.
5
Filters
Bandwidth
• The bandwidth of a low pass filter is the range of frequencies from
0 to the –3 dB frequency.
• For a high pass filter, the bandwidth is the range of frequencies
from the –3 dB frequency to half the sampling frequency.
• For band pass filters, the bandwidth is the distance in Hz between
the cut-off frequencies.
6
Common Filter Types
Low Pass Filter
7
_____ Real Filter
….... Ideal Filter
Common Filter Types
High Pass Filter
8
_____ Real Filter
….... Ideal Filter
Common Filter Types
Band Pass Filter
9
_____ Real Filter
….... Ideal Filter
Common Filter Types
Band Stop or Notch Filter
10
_____ Real Filter
….... Ideal Filter
Filters
Roll-Off
• Another important feature of a filter is its roll-off.
• This characteristic determines how quickly the gain drops
outside the pass band.
• The higher the order of a digital filter, defined by the number
of coefficients needed to specify it, the steeper the slope, and
the higher the quality of the filter is said to be.
11
Filters
Gain
• A filter’s gain at a certain frequency determines the
amplification factor that the filter applies to an input at this
frequency.
• A gain may have any value.
• In the pass band region, filter’s gain is high.
• In the stop band region, filter’s gain is low.
12
Filters
Gain
• The cutoff frequency of the filter occurs when the gain is
1
2
~0.707 𝑜𝑟 70.7%
• A gain in dB is calculated as 𝐺𝑎𝑖𝑛 𝑑𝐵 = 20𝑙𝑜𝑔 𝐺𝑎𝑖𝑛
13
Filters
Bandwidth
Example-1: Find the bandwidth of the band pass filter.
The edges of the pass
Band occur where the
Gain equals 0.707.
The bandwidth of the
Filter is
BW = FH - FL
BW = 4000 - 2000
BW = 2000 Hz
14
Square Wave
• A square wave can be constructed from multiple sine waves at different
frequencies.
• The sine waves added in addition to the fundamental frequency are
called harmonics.
• A square wave has harmonics at odd multiples of the fundamental
frequency.
15
Square Wave
• As higher harmonics are added, the result gets closer to an ideal square
wave, which contains infinite harmonics.
• sin(angle) + sin(3*angle)/3 + sin(5*angle)/5 + sin(7*angle)/7 + ...
16
Effects of Low Pass Filters
17
• Each filter type has a unique effect on an input signal.
• Low pass filters tend to smooth signals by averaging out sudden changes.
Effects of High Pass Filters
18
• Each filter type has a unique effect on an input signal.
• High pass filters tend emphasize sharp transition.
Antialiasing Filter
19
Analog vs. Digital Filters
• Filters may be implemented in either analog or digital form.
• Analog filters are defined in hardware, while digital filters are
defined in software.
• In general, digital filters are much less susceptible to noise
and component variation than are analog filters.
• Furthermore, digital filter re-design is simply a matter of
editing a list of coefficients, while analog re-design requires
building an entirely new circuit.
20
Difference Equation
• A difference equation is one way to specify a filter or system.
• It may be presented in equation or diagram form.
• The general form of a difference equation is
a0y[n] + a1y[n-1] + a2y[n-2] + … + aNy[n-N]
= b0x[n] + b1x[n-1] + b2x[n-2] + … + bMx[n-M]
• The ak and bk weightings are called filter coefficients.
• Generally difference equation has N+1 ak coefficients and M+1 bk
coefficients.
• N is the past output required, also referred as a filter order.
• M is the number of past input required.
• The equation defines how each new output y[n] is obtained.
• In general, a0 is assumed to be one.
21
Difference Equation
• The general form of a difference equation is
a0y[n] + a1y[n-1] + a2y[n-2] + … + aNy[n-N]
= b0x[n] + b1x[n-1] + b2x[n-2] + … + bMx[n-M]
The compact form of the recursive difference equation is
• In the above equation, both inputs and outputs are needed to
compute a new output, so the difference equation is said to
be recursive.
22
Difference Equation
• When only inputs are needed to compute a new output, the
difference equation is said to be non-recursive, that is,
y[n] = b0x[n] + b1x[n-1] + b2x[n-2] + … + bMx[n-M]
The compact form of the non-recursive difference equation is
23
Difference Equation
Example-2: A filter has a difference equation y[n] = 0.5y[n-1] + x[n]
a. Is this a recursive or non-recursive difference equation?
b. Identify all ak and bk coefficients.
c. If the input x[n] is u[n], find 5 samples of the output y[n].
Solution
a. The equation is recursive as it depends on a past output y[n-1]
b. Since y[n] – 0.5y[n-1] = x[n], therefore a0 = 1, a1 = -0.5, b0 = 1
c. y[n] = 0.5y[n-1] + x[n]
When n = 0, y[0] = 0.5y[0-1] + x[0] = 0.5(0) + 1 = 1
When n = 1, y[1] = 0.5y[1-1] + x[1] = 0.5(1) + 1 = 1.5
When n = 2, y[2] = 0.5y[2-1] + x[2] = 0.5(1.5) + 1 = 1.75
When n = 3, y[3] = 0.5y[3-1] + x[3] = 0.5(1.75) + 1 = 1.875
When n = 4, y[4] = 0.5y[4-1] + x[4] = 0.5(1.875) + 1 = 1.9375
24
Y[n] = {1, 1.5, 1.75, 1.875, 1.9375}
Difference Equation
25
Y[n] = {1, 1.5, 1.75, 1.875, 1.9375}
Difference Equation Diagram Elements
Delay Element
26
Difference Equation Diagram Elements
Coefficient Multiplier Element
27
Difference Equation Diagram Elements
Summer Element
28
Nonrecursive Difference Equation Diagram
• The general form of the nonrecursive difference equation is
y[n] = b0x[n] + b1x[n-1] + b2x[n-2] + … + bMx[n-M]
• It can be schematically presented as
29
Finite Word Length Effects
• When difference equations are implemented by a computer,
quantization means that filter coefficients cannot be represented
perfectly.
• This means that filter behavior will not match the design exactly.
• Furthermore, computer arithmetic is always subject to rounding
and truncation errors, again due to the limited number of bits
available.
• All of these effects are called finite word length effects.
30
Nonrecursive Difference Equation Diagram
• In order to reduce quantization error of filter’s coefficient one
strategy is to break higher order filter into second order chunks
31
Figure: Cascaded second order nonrecursive filter sections
Nonrecursive Difference Equation Diagram
Example-3: Draw a diagram for the difference equation
y[n] = 0.5x[n] + 0.4x[n-1] - 0.2x[n-2]
Solution
32
Nonrecursive Difference Equation Diagram
Example-4: Write the difference equation of the following diagram.
Solution
y[n] = x[n] - 0.3x[n-2] + 0.7x[n-3] 33
Recursive Difference Equation Diagram
• The general form of a recursive difference equation is
a0y[n] + a1y[n-1] + a2y[n-2] + … + aNy[n-N]
= b0x[n] + b1x[n-1] + b2x[n-2] + … + bMx[n-M]
34
Recursive Difference Equation Diagram
Example-5: Draw a direct form I diagram for the following
recursive difference equation
y[n] + 0.5y[n-2] = 0.8x[n] + 0.1x[n-1] - 0.3x[n-2]
Solution
35
Recursive Difference Equation Diagram
Example-6: Write the difference equation of the following diagram.
Solution
y[n] + 0.5y[n-2] = 0.8x[n] + 0.1x[n-1] - 0.3x[n-2]
36
Recursive Difference Equation Diagram
• In direct form I realization, calculation for output y[n] require
M + 1 input states
N output states
M + N + 1 coefficient multiplications
M + N additions
• When more than 2 or 3 delays are needed, this realization is
very sensitive to the finite word length effects.
37
Recursive Difference Equation Diagram
• Recursive filters have an alternative representation, called direct form 2,
that has certain advantages for implementation.
• This representation is defined by the pair of equations
w[n] = x[n] – a1w[n-1] – a2w[n-2] – … – aNw[n-N]
y[n] = b0w[n] + b1w[n-1] + b2w[n-2] + … + bMw[n-M]
38
Recursive Difference Equation Diagram
• Transpose of the direct form 2 realization is an another
popular implementation model.
39
Recursive Difference Equation Diagram
Example-7: Write the difference equation of the following diagram.
• The output of the bottom summer is 0.1x[n] – 0.3y[n]
• The output of the middle summer is 0.1x[n-1] – 0.3y[n-1] + 0.2x[n] – 0.2y[n]
• The final out top summer is y[n] = 0.1x[n-2] – 0.3y[n-2] + 0.2x[n-1] – 0.2y[n-1] + 0.8x[n]
40
Impulse Response
• The impulse response h[n] is an important way of characterizing a
filter or system.
• By definition, it is the system’s response to an impulse function
input δ[n].
41
Impulse Response
• For a musical instrument like a piano, an impulse response
corresponds to the note obtained by striking a single key.
42
Impulse Response
• The impulse response may be calculated from a system’s
difference equation.
• The impulse function δ[n] substitutes for the input x[n]
• The impulse response h[n] substitutes for the output y[n]
43
Impulse Response
• For a non-recursive system, the impulse response is
h[n] = b0δ[n] + b1δ[n-1] + b2δ[n-2] + … + bMδ[n-M]
• For a recursive system, the impulse response is
h[n] = – a1h[n-1] – a2h[n-2] – … – aNh[n-N]
+ b0δ[n] + b1δ[n-1] + b2δ[n-2] + … + bMδ[n-M]
44
Impulse Response
• Because non-recursive systems do not rely on past outputs,
they have finite impulse responses, which return to zero after
a finite number of samples have elapsed.
• Recursive systems, on the other hand, have infinite impulse
responses, because each new output depends on past
outputs as well as inputs.
• For causal systems, both non-recursive and recursive, the
impulse response h[n] is zero for n < 0.
45
Impulse Response
Example-8: Find the first six samples of the impulse response
h[n] for the difference equation
Y[n] – 0.4y[n-1] = x[n] – x[n-1]
Solution
The impulse response of the difference equation is
h[n] – 0.4h[n-1] = δ[n] – δ[n-1]
So the first six samples of the impulse response are
h[0] = 1 h[3] = -0.096
h[1] = -0.6 h[4] = -0.0384
h[2] = -0.24 h[5] = -0.01536
46
Impulse Response
So the first six samples of the impulse response are
h[0] = 1 h[3] = -0.096
h[1] = -0.6 h[4] = -0.0384
h[2] = -0.24 h[5] = -0.01536
h[n] = [1, 0.6, -0.24, -0.096, -0.0384, -0.01536]
47
Impulse Response
Example-9: write the difference equation whose impulse
response is shown in the figure.
Solution
The impulse response can be written as a sum of impulse
functions.
h[n] = δ[n] + 0.8δ[n-1] + 0.2δ[n-2]
The difference equation is y[n] = x[n] + 0.8x[n-1] + 0.2x[n-2]
48
Impulse Response
Example-10: The input signal x[n] and impulse response h[n] are
shown in the figures. Find the output y[n] by breaking the input
signal into impulse functions and finding the response to each.
49
Impulse Response
50
Y[n] = 3h[n] + 2h[n-1] + h[n-2]
Step Response
• The step response s[n] for a filter is its response to a step
input u[n].
• It records the response of the system to a change in level, and
may be calculated in two ways.
• The first way mimics that for the impulse response, but with
s[n] replacing y[n] and u[n] replacing x[n].
51
Step Response
• For non-recursive systems,
s[n] = b0u[n] + b1u[n-1] + b2u[n-2] + … + bMu[n-M]
• For recursive systems,
s[n] = – a1s[n-1] – a2s[n-2] – … – aNs[n-N]
+ b0u[n] + b1u[n-1] + b2u[n-2] + … + bMu[n-M]
52
Step Response
• The step function u[n] is equivalent to a sum of impulse
functions:
u[n] = δ[n] + δ[n-1] + δ[n-2] + …
• The step response s[n] is the same sum of impulse responses:
s[n] = h[n] + h[n-1] + h[n-2] + …
53
Step Response
• The second way to compute the step response s[n] relies on
the impulse response.
• each step response sample is a cumulative sum of the impulse
response samples.
• For example
s[4] = h[4] + h[3] + h[2] + h[1] + h[0]
54
Step Response
Example-11: Find the first eight samples of the step response
s[n] for the difference equation
Y[n] – 0.2y[n-1] = 0.5x[n] + 0.3x[n-1]
Solution
The step response s[n] of the difference equation is
s[n] – 0.4s[n-1] = u[n] – u[n-1]
So the first eight samples of the step response are
s[0] = 0.5 s[3] = 0.96 s[6] = 0.996
s[1] = 0.8 s[4] = 0.98 s[7] = 0.9984
s[2] = 0.9 s[5] = 0.992
55
Step Response
So the first eight samples of the step response are
s[0] = 0.5 s[3] = 0.96 s[6] = 0.996
s[1] = 0.8 s[4] = 0.98 s[7] = 0.9984
s[2] = 0.9 s[5] = 0.992
S[n] = [0.5, 0.8, 0.9, 0.96, 0.98, 0.992, 0.996, 0.9984]
56

Mais conteúdo relacionado

Mais procurados

Signal modelling
Signal modellingSignal modelling
Signal modelling
Debangi_G
 
Acoustic echo cancellation
Acoustic echo cancellationAcoustic echo cancellation
Acoustic echo cancellation
chintanajoshi
 
Logic Simplification Using SOP
Logic Simplification Using SOPLogic Simplification Using SOP
Logic Simplification Using SOP
Abi Malik
 
Testing Dynamic Behavior in Executable Software Models - Making Cyber-physica...
Testing Dynamic Behavior in Executable Software Models - Making Cyber-physica...Testing Dynamic Behavior in Executable Software Models - Making Cyber-physica...
Testing Dynamic Behavior in Executable Software Models - Making Cyber-physica...
Lionel Briand
 

Mais procurados (20)

Introduction to MATLAB
Introduction to MATLABIntroduction to MATLAB
Introduction to MATLAB
 
Signal modelling
Signal modellingSignal modelling
Signal modelling
 
Bài 3 giá trị tuyệt đối của một số hữu tỉ
Bài 3   giá trị tuyệt đối của một số hữu tỉBài 3   giá trị tuyệt đối của một số hữu tỉ
Bài 3 giá trị tuyệt đối của một số hữu tỉ
 
Digital Signal Processing[ECEG-3171]-L00
Digital Signal Processing[ECEG-3171]-L00Digital Signal Processing[ECEG-3171]-L00
Digital Signal Processing[ECEG-3171]-L00
 
Acoustic echo cancellation
Acoustic echo cancellationAcoustic echo cancellation
Acoustic echo cancellation
 
Multirate DSP
Multirate DSPMultirate DSP
Multirate DSP
 
Multirate digital signal processing
Multirate digital signal processingMultirate digital signal processing
Multirate digital signal processing
 
Solved problems
Solved problemsSolved problems
Solved problems
 
Logic Simplification Using SOP
Logic Simplification Using SOPLogic Simplification Using SOP
Logic Simplification Using SOP
 
Testing Dynamic Behavior in Executable Software Models - Making Cyber-physica...
Testing Dynamic Behavior in Executable Software Models - Making Cyber-physica...Testing Dynamic Behavior in Executable Software Models - Making Cyber-physica...
Testing Dynamic Behavior in Executable Software Models - Making Cyber-physica...
 
Properties of dft
Properties of dftProperties of dft
Properties of dft
 
Digital Signal Processing-Digital Filters
Digital Signal Processing-Digital FiltersDigital Signal Processing-Digital Filters
Digital Signal Processing-Digital Filters
 
Acoustic echo cancellation using nlms adaptive algorithm ranbeer
Acoustic echo cancellation using nlms adaptive algorithm ranbeerAcoustic echo cancellation using nlms adaptive algorithm ranbeer
Acoustic echo cancellation using nlms adaptive algorithm ranbeer
 
digital filter design
digital filter designdigital filter design
digital filter design
 
Expert System - Automated Traffic Light Control Based on Road Congestion
Expert System - Automated Traffic Light Control Based on Road CongestionExpert System - Automated Traffic Light Control Based on Road Congestion
Expert System - Automated Traffic Light Control Based on Road Congestion
 
DSP_FOEHU - MATLAB 01 - Discrete Time Signals and Systems
DSP_FOEHU - MATLAB 01 - Discrete Time Signals and SystemsDSP_FOEHU - MATLAB 01 - Discrete Time Signals and Systems
DSP_FOEHU - MATLAB 01 - Discrete Time Signals and Systems
 
Overview of sampling
Overview of samplingOverview of sampling
Overview of sampling
 
Discrete time filter design by windowing 3
Discrete time filter design by windowing 3Discrete time filter design by windowing 3
Discrete time filter design by windowing 3
 
Optimization tutorial
Optimization tutorialOptimization tutorial
Optimization tutorial
 
Slides2 The Communication System midterm Slides
Slides2  The Communication System midterm SlidesSlides2  The Communication System midterm Slides
Slides2 The Communication System midterm Slides
 

Semelhante a Lecture-2.pptx

Semelhante a Lecture-2.pptx (20)

iir_filter_design.pptx
iir_filter_design.pptxiir_filter_design.pptx
iir_filter_design.pptx
 
Fir filter_utkarsh_kulshrestha
Fir filter_utkarsh_kulshresthaFir filter_utkarsh_kulshrestha
Fir filter_utkarsh_kulshrestha
 
Multirate-signal-processing.pptx
Multirate-signal-processing.pptxMultirate-signal-processing.pptx
Multirate-signal-processing.pptx
 
1. Combinational Logic Circutis with examples (1).pdf
1. Combinational Logic Circutis with examples (1).pdf1. Combinational Logic Circutis with examples (1).pdf
1. Combinational Logic Circutis with examples (1).pdf
 
1. Combinational Logic Circutis with examples (1).pdf
1. Combinational Logic Circutis with examples (1).pdf1. Combinational Logic Circutis with examples (1).pdf
1. Combinational Logic Circutis with examples (1).pdf
 
Presentation1 comb filter
Presentation1 comb filterPresentation1 comb filter
Presentation1 comb filter
 
DSP_FOEHU - Lec 11 - IIR Filter Design
DSP_FOEHU - Lec 11 - IIR Filter DesignDSP_FOEHU - Lec 11 - IIR Filter Design
DSP_FOEHU - Lec 11 - IIR Filter Design
 
Adaptive filters and band reject filters
Adaptive filters and band reject filtersAdaptive filters and band reject filters
Adaptive filters and band reject filters
 
Dss
Dss Dss
Dss
 
Filters2
Filters2Filters2
Filters2
 
DSP_FOEHU - Lec 07 - Digital Filters
DSP_FOEHU - Lec 07 - Digital FiltersDSP_FOEHU - Lec 07 - Digital Filters
DSP_FOEHU - Lec 07 - Digital Filters
 
Combinational circuits r011
Combinational circuits   r011Combinational circuits   r011
Combinational circuits r011
 
chapter5-Filter Implementation-pp32.pptx
chapter5-Filter Implementation-pp32.pptxchapter5-Filter Implementation-pp32.pptx
chapter5-Filter Implementation-pp32.pptx
 
DSP-UNIT-V-PPT-1.pptx
DSP-UNIT-V-PPT-1.pptxDSP-UNIT-V-PPT-1.pptx
DSP-UNIT-V-PPT-1.pptx
 
Linear programming
Linear programmingLinear programming
Linear programming
 
Filters.pdf
Filters.pdfFilters.pdf
Filters.pdf
 
lecture_37.pptx
lecture_37.pptxlecture_37.pptx
lecture_37.pptx
 
F044033742
F044033742F044033742
F044033742
 
DSP_2018_FOEHU - Lec 07 - IIR Filter Design
DSP_2018_FOEHU - Lec 07 - IIR Filter DesignDSP_2018_FOEHU - Lec 07 - IIR Filter Design
DSP_2018_FOEHU - Lec 07 - IIR Filter Design
 
Digital Electronics Unit_2.pptx
Digital Electronics Unit_2.pptxDigital Electronics Unit_2.pptx
Digital Electronics Unit_2.pptx
 

Último

Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
Neometrix_Engineering_Pvt_Ltd
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
Epec Engineered Technologies
 
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills KuwaitKuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
jaanualu31
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ssuser89054b
 
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments""Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
mphochane1998
 

Último (20)

Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
 
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best ServiceTamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
 
kiln thermal load.pptx kiln tgermal load
kiln thermal load.pptx kiln tgermal loadkiln thermal load.pptx kiln tgermal load
kiln thermal load.pptx kiln tgermal load
 
Engineering Drawing focus on projection of planes
Engineering Drawing focus on projection of planesEngineering Drawing focus on projection of planes
Engineering Drawing focus on projection of planes
 
PE 459 LECTURE 2- natural gas basic concepts and properties
PE 459 LECTURE 2- natural gas basic concepts and propertiesPE 459 LECTURE 2- natural gas basic concepts and properties
PE 459 LECTURE 2- natural gas basic concepts and properties
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
 
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptxS1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
 
Computer Lecture 01.pptxIntroduction to Computers
Computer Lecture 01.pptxIntroduction to ComputersComputer Lecture 01.pptxIntroduction to Computers
Computer Lecture 01.pptxIntroduction to Computers
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills KuwaitKuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
 
Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptx
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
GEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLE
GEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLEGEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLE
GEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLE
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.
 
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments""Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
 
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
 
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 

Lecture-2.pptx

  • 1. Digital Signal & Image Processing Lecture-4
  • 2. Overview • Filters • Common Filter Types • Analog vs. Digital Filters • Difference Equation • Difference Equation Diagram Elements • Nonrecursive Difference Equation Diagrams • Recursive Difference Equation Diagrams • Impulse Response • Step Response
  • 3. Filters • Filters change a signal’s characteristics by selectively removing some of its frequency elements. • A low pass filter, for example, removes the high frequency components of a signal, but passes low frequency components. • It does this because the filter’s gain, the amplification factor it applies to an input, varies with frequency. 3
  • 4. Filters • For a low pass filter, the gains are highest at low frequency and much lower at high frequency. • A high pass filter has exactly the opposite shape: its gains are highest at high frequency and lowest at low frequency. • The pass band of a filter determines the range of frequencies that are passed. • The stop band of the filter determines the range of frequencies that are strongly attenuated. 4
  • 5. Filters Cutoff Frequency • A filter is considered to pass signals at frequencies where the filter’s gain exceeds 0.707 of its maximum gain. • The frequency or frequencies where the gain equals 0.707 of the maximum gain are called the cut-off frequencies of the filter. • Since 20log0.707 = -3 dB, they are also called –3 dB frequencies. 5
  • 6. Filters Bandwidth • The bandwidth of a low pass filter is the range of frequencies from 0 to the –3 dB frequency. • For a high pass filter, the bandwidth is the range of frequencies from the –3 dB frequency to half the sampling frequency. • For band pass filters, the bandwidth is the distance in Hz between the cut-off frequencies. 6
  • 7. Common Filter Types Low Pass Filter 7 _____ Real Filter ….... Ideal Filter
  • 8. Common Filter Types High Pass Filter 8 _____ Real Filter ….... Ideal Filter
  • 9. Common Filter Types Band Pass Filter 9 _____ Real Filter ….... Ideal Filter
  • 10. Common Filter Types Band Stop or Notch Filter 10 _____ Real Filter ….... Ideal Filter
  • 11. Filters Roll-Off • Another important feature of a filter is its roll-off. • This characteristic determines how quickly the gain drops outside the pass band. • The higher the order of a digital filter, defined by the number of coefficients needed to specify it, the steeper the slope, and the higher the quality of the filter is said to be. 11
  • 12. Filters Gain • A filter’s gain at a certain frequency determines the amplification factor that the filter applies to an input at this frequency. • A gain may have any value. • In the pass band region, filter’s gain is high. • In the stop band region, filter’s gain is low. 12
  • 13. Filters Gain • The cutoff frequency of the filter occurs when the gain is 1 2 ~0.707 𝑜𝑟 70.7% • A gain in dB is calculated as 𝐺𝑎𝑖𝑛 𝑑𝐵 = 20𝑙𝑜𝑔 𝐺𝑎𝑖𝑛 13
  • 14. Filters Bandwidth Example-1: Find the bandwidth of the band pass filter. The edges of the pass Band occur where the Gain equals 0.707. The bandwidth of the Filter is BW = FH - FL BW = 4000 - 2000 BW = 2000 Hz 14
  • 15. Square Wave • A square wave can be constructed from multiple sine waves at different frequencies. • The sine waves added in addition to the fundamental frequency are called harmonics. • A square wave has harmonics at odd multiples of the fundamental frequency. 15
  • 16. Square Wave • As higher harmonics are added, the result gets closer to an ideal square wave, which contains infinite harmonics. • sin(angle) + sin(3*angle)/3 + sin(5*angle)/5 + sin(7*angle)/7 + ... 16
  • 17. Effects of Low Pass Filters 17 • Each filter type has a unique effect on an input signal. • Low pass filters tend to smooth signals by averaging out sudden changes.
  • 18. Effects of High Pass Filters 18 • Each filter type has a unique effect on an input signal. • High pass filters tend emphasize sharp transition.
  • 20. Analog vs. Digital Filters • Filters may be implemented in either analog or digital form. • Analog filters are defined in hardware, while digital filters are defined in software. • In general, digital filters are much less susceptible to noise and component variation than are analog filters. • Furthermore, digital filter re-design is simply a matter of editing a list of coefficients, while analog re-design requires building an entirely new circuit. 20
  • 21. Difference Equation • A difference equation is one way to specify a filter or system. • It may be presented in equation or diagram form. • The general form of a difference equation is a0y[n] + a1y[n-1] + a2y[n-2] + … + aNy[n-N] = b0x[n] + b1x[n-1] + b2x[n-2] + … + bMx[n-M] • The ak and bk weightings are called filter coefficients. • Generally difference equation has N+1 ak coefficients and M+1 bk coefficients. • N is the past output required, also referred as a filter order. • M is the number of past input required. • The equation defines how each new output y[n] is obtained. • In general, a0 is assumed to be one. 21
  • 22. Difference Equation • The general form of a difference equation is a0y[n] + a1y[n-1] + a2y[n-2] + … + aNy[n-N] = b0x[n] + b1x[n-1] + b2x[n-2] + … + bMx[n-M] The compact form of the recursive difference equation is • In the above equation, both inputs and outputs are needed to compute a new output, so the difference equation is said to be recursive. 22
  • 23. Difference Equation • When only inputs are needed to compute a new output, the difference equation is said to be non-recursive, that is, y[n] = b0x[n] + b1x[n-1] + b2x[n-2] + … + bMx[n-M] The compact form of the non-recursive difference equation is 23
  • 24. Difference Equation Example-2: A filter has a difference equation y[n] = 0.5y[n-1] + x[n] a. Is this a recursive or non-recursive difference equation? b. Identify all ak and bk coefficients. c. If the input x[n] is u[n], find 5 samples of the output y[n]. Solution a. The equation is recursive as it depends on a past output y[n-1] b. Since y[n] – 0.5y[n-1] = x[n], therefore a0 = 1, a1 = -0.5, b0 = 1 c. y[n] = 0.5y[n-1] + x[n] When n = 0, y[0] = 0.5y[0-1] + x[0] = 0.5(0) + 1 = 1 When n = 1, y[1] = 0.5y[1-1] + x[1] = 0.5(1) + 1 = 1.5 When n = 2, y[2] = 0.5y[2-1] + x[2] = 0.5(1.5) + 1 = 1.75 When n = 3, y[3] = 0.5y[3-1] + x[3] = 0.5(1.75) + 1 = 1.875 When n = 4, y[4] = 0.5y[4-1] + x[4] = 0.5(1.875) + 1 = 1.9375 24 Y[n] = {1, 1.5, 1.75, 1.875, 1.9375}
  • 25. Difference Equation 25 Y[n] = {1, 1.5, 1.75, 1.875, 1.9375}
  • 26. Difference Equation Diagram Elements Delay Element 26
  • 27. Difference Equation Diagram Elements Coefficient Multiplier Element 27
  • 28. Difference Equation Diagram Elements Summer Element 28
  • 29. Nonrecursive Difference Equation Diagram • The general form of the nonrecursive difference equation is y[n] = b0x[n] + b1x[n-1] + b2x[n-2] + … + bMx[n-M] • It can be schematically presented as 29
  • 30. Finite Word Length Effects • When difference equations are implemented by a computer, quantization means that filter coefficients cannot be represented perfectly. • This means that filter behavior will not match the design exactly. • Furthermore, computer arithmetic is always subject to rounding and truncation errors, again due to the limited number of bits available. • All of these effects are called finite word length effects. 30
  • 31. Nonrecursive Difference Equation Diagram • In order to reduce quantization error of filter’s coefficient one strategy is to break higher order filter into second order chunks 31 Figure: Cascaded second order nonrecursive filter sections
  • 32. Nonrecursive Difference Equation Diagram Example-3: Draw a diagram for the difference equation y[n] = 0.5x[n] + 0.4x[n-1] - 0.2x[n-2] Solution 32
  • 33. Nonrecursive Difference Equation Diagram Example-4: Write the difference equation of the following diagram. Solution y[n] = x[n] - 0.3x[n-2] + 0.7x[n-3] 33
  • 34. Recursive Difference Equation Diagram • The general form of a recursive difference equation is a0y[n] + a1y[n-1] + a2y[n-2] + … + aNy[n-N] = b0x[n] + b1x[n-1] + b2x[n-2] + … + bMx[n-M] 34
  • 35. Recursive Difference Equation Diagram Example-5: Draw a direct form I diagram for the following recursive difference equation y[n] + 0.5y[n-2] = 0.8x[n] + 0.1x[n-1] - 0.3x[n-2] Solution 35
  • 36. Recursive Difference Equation Diagram Example-6: Write the difference equation of the following diagram. Solution y[n] + 0.5y[n-2] = 0.8x[n] + 0.1x[n-1] - 0.3x[n-2] 36
  • 37. Recursive Difference Equation Diagram • In direct form I realization, calculation for output y[n] require M + 1 input states N output states M + N + 1 coefficient multiplications M + N additions • When more than 2 or 3 delays are needed, this realization is very sensitive to the finite word length effects. 37
  • 38. Recursive Difference Equation Diagram • Recursive filters have an alternative representation, called direct form 2, that has certain advantages for implementation. • This representation is defined by the pair of equations w[n] = x[n] – a1w[n-1] – a2w[n-2] – … – aNw[n-N] y[n] = b0w[n] + b1w[n-1] + b2w[n-2] + … + bMw[n-M] 38
  • 39. Recursive Difference Equation Diagram • Transpose of the direct form 2 realization is an another popular implementation model. 39
  • 40. Recursive Difference Equation Diagram Example-7: Write the difference equation of the following diagram. • The output of the bottom summer is 0.1x[n] – 0.3y[n] • The output of the middle summer is 0.1x[n-1] – 0.3y[n-1] + 0.2x[n] – 0.2y[n] • The final out top summer is y[n] = 0.1x[n-2] – 0.3y[n-2] + 0.2x[n-1] – 0.2y[n-1] + 0.8x[n] 40
  • 41. Impulse Response • The impulse response h[n] is an important way of characterizing a filter or system. • By definition, it is the system’s response to an impulse function input δ[n]. 41
  • 42. Impulse Response • For a musical instrument like a piano, an impulse response corresponds to the note obtained by striking a single key. 42
  • 43. Impulse Response • The impulse response may be calculated from a system’s difference equation. • The impulse function δ[n] substitutes for the input x[n] • The impulse response h[n] substitutes for the output y[n] 43
  • 44. Impulse Response • For a non-recursive system, the impulse response is h[n] = b0δ[n] + b1δ[n-1] + b2δ[n-2] + … + bMδ[n-M] • For a recursive system, the impulse response is h[n] = – a1h[n-1] – a2h[n-2] – … – aNh[n-N] + b0δ[n] + b1δ[n-1] + b2δ[n-2] + … + bMδ[n-M] 44
  • 45. Impulse Response • Because non-recursive systems do not rely on past outputs, they have finite impulse responses, which return to zero after a finite number of samples have elapsed. • Recursive systems, on the other hand, have infinite impulse responses, because each new output depends on past outputs as well as inputs. • For causal systems, both non-recursive and recursive, the impulse response h[n] is zero for n < 0. 45
  • 46. Impulse Response Example-8: Find the first six samples of the impulse response h[n] for the difference equation Y[n] – 0.4y[n-1] = x[n] – x[n-1] Solution The impulse response of the difference equation is h[n] – 0.4h[n-1] = δ[n] – δ[n-1] So the first six samples of the impulse response are h[0] = 1 h[3] = -0.096 h[1] = -0.6 h[4] = -0.0384 h[2] = -0.24 h[5] = -0.01536 46
  • 47. Impulse Response So the first six samples of the impulse response are h[0] = 1 h[3] = -0.096 h[1] = -0.6 h[4] = -0.0384 h[2] = -0.24 h[5] = -0.01536 h[n] = [1, 0.6, -0.24, -0.096, -0.0384, -0.01536] 47
  • 48. Impulse Response Example-9: write the difference equation whose impulse response is shown in the figure. Solution The impulse response can be written as a sum of impulse functions. h[n] = δ[n] + 0.8δ[n-1] + 0.2δ[n-2] The difference equation is y[n] = x[n] + 0.8x[n-1] + 0.2x[n-2] 48
  • 49. Impulse Response Example-10: The input signal x[n] and impulse response h[n] are shown in the figures. Find the output y[n] by breaking the input signal into impulse functions and finding the response to each. 49
  • 50. Impulse Response 50 Y[n] = 3h[n] + 2h[n-1] + h[n-2]
  • 51. Step Response • The step response s[n] for a filter is its response to a step input u[n]. • It records the response of the system to a change in level, and may be calculated in two ways. • The first way mimics that for the impulse response, but with s[n] replacing y[n] and u[n] replacing x[n]. 51
  • 52. Step Response • For non-recursive systems, s[n] = b0u[n] + b1u[n-1] + b2u[n-2] + … + bMu[n-M] • For recursive systems, s[n] = – a1s[n-1] – a2s[n-2] – … – aNs[n-N] + b0u[n] + b1u[n-1] + b2u[n-2] + … + bMu[n-M] 52
  • 53. Step Response • The step function u[n] is equivalent to a sum of impulse functions: u[n] = δ[n] + δ[n-1] + δ[n-2] + … • The step response s[n] is the same sum of impulse responses: s[n] = h[n] + h[n-1] + h[n-2] + … 53
  • 54. Step Response • The second way to compute the step response s[n] relies on the impulse response. • each step response sample is a cumulative sum of the impulse response samples. • For example s[4] = h[4] + h[3] + h[2] + h[1] + h[0] 54
  • 55. Step Response Example-11: Find the first eight samples of the step response s[n] for the difference equation Y[n] – 0.2y[n-1] = 0.5x[n] + 0.3x[n-1] Solution The step response s[n] of the difference equation is s[n] – 0.4s[n-1] = u[n] – u[n-1] So the first eight samples of the step response are s[0] = 0.5 s[3] = 0.96 s[6] = 0.996 s[1] = 0.8 s[4] = 0.98 s[7] = 0.9984 s[2] = 0.9 s[5] = 0.992 55
  • 56. Step Response So the first eight samples of the step response are s[0] = 0.5 s[3] = 0.96 s[6] = 0.996 s[1] = 0.8 s[4] = 0.98 s[7] = 0.9984 s[2] = 0.9 s[5] = 0.992 S[n] = [0.5, 0.8, 0.9, 0.96, 0.98, 0.992, 0.996, 0.9984] 56