The Matched Filter / Backpropagation Estimator
The Simplest Estimator: Correlate and Sum
Given the forward model , the most natural question is: what is the simplest way to produce an image? The answer is the matched filter (or backpropagation) estimator . It correlates each measurement with the expected response of every pixel. This operation goes by many names -- delay-and-sum in radar, backpropagation in diffraction tomography, adjoint imaging in inverse problems -- but they all compute .
While the matched filter does not invert the forward model, it is the foundation on which every reconstruction algorithm in this book is built: ISTA starts from , OAMP uses it at each iteration, and the MF-to-U-Net pipeline feeds it to a neural network.
Definition: The Matched Filter (Adjoint) Estimator
The Matched Filter (Adjoint) Estimator
Given the forward model , the matched filter estimator is:
In component form, the image value at pixel is:
where denotes the -th column of (the sensing vector for pixel ).
Interpretation: is the inner product between the measurement and the "signature" of pixel . The matched filter correlates with each possible scatterer location.
Theorem: SNR Optimality of the Matched Filter
For a single scatterer at pixel with reflectivity , the linear estimator that maximizes the output signal-to-noise ratio
is the matched filter (for white noise ), achieving:
The maximum SNR grows linearly with (number of measurements) -- the processing gain of the matched filter.
The matched filter aligns the filter to the known signature of pixel . By the Cauchy-Schwarz inequality, no other linear filter can produce a higher signal-to-noise ratio.
Single-scatterer model
For a single scatterer at pixel : .
SNR expression
A linear estimator has:
Cauchy-Schwarz bound
By Cauchy-Schwarz: , with equality when for any .
Maximum SNR
Setting :
Theorem: Matched Filter and the Gram Matrix
The matched filter estimator satisfies:
where is the Gram matrix and is the filtered noise.
Key observations:
- The MF image is the true scene convolved with , which acts as the discrete point-spread function (Β§The Point-Spread Function (PSF)).
- If (orthonormal columns), the MF is exact -- but for this is impossible.
- The MF image equals the gradient of the least-squares cost at the origin: .
Direct substitution
Substitute :
Identification
Define and . The noise has covariance -- it is colored, correlated across pixels, with the same structure as the PSF.
Definition: Delay-and-Sum Beamforming for Imaging
Delay-and-Sum Beamforming for Imaging
For a scene pixel at position with transmitter at and receiver at , the round-trip delay is:
The delay-and-sum (DAS) image at pixel is:
In frequency domain (stepped frequency), this becomes:
which is exactly the matched filter with entries .
Three Names, One Operation
The matched filter, delay-and-sum beamforming, and backpropagation are mathematically identical -- they all compute . The naming depends on the community:
- Matched filter: Signal processing / estimation theory.
- Delay-and-sum: Radar and sonar engineering.
- Backpropagation: Diffraction tomography and inverse scattering.
In the k-space (Fourier) view, the backpropagation estimator places the measured data at the corresponding k-space locations and applies an inverse Fourier transform -- equivalent to correlating with the sensing vectors .
Definition: Backpropagation in the k-Space View
Backpropagation in the k-Space View
In the diffraction-tomography framework (Chapter 6), each measurement samples the scene's spatial spectrum at wavenumber .
The backpropagation estimator is:
which is an inverse discrete Fourier transform (IDFT) of the k-space data evaluated on the non-uniform grid .
When the k-space samples lie on a uniform grid, backpropagation reduces to a standard inverse FFT. For non-uniform samples, one uses a non-uniform FFT (NUFFT) or the direct summation above.
Example: Matched Filter for SAR Imaging
For stripmap SAR, the sensing matrix has Fourier structure, and the matched filter reduces to the range-Doppler algorithm:
Resolution:
- Range: where is the bandwidth.
- Cross-range: where is the synthetic aperture length.
Sidelobes: The sinc-like PSF has sidelobes at dB (uniform weighting). Windowing (Hamming, Taylor) reduces sidelobes to dB at the cost of approximately 50% wider mainlobe.
Show that the DAS image for a monostatic radar with , ULA elements, and stepped frequencies is equivalent to a 2D IDFT when the array is in the far field.
Forward model
In the far field, the round-trip delay for element and frequency to pixel is:
so .
Separability
The sensing matrix factors as , where both factors are DFT matrices. Hence is a 2D IDFT.
Result
The DAS/matched filter image is obtained by reshaping into an matrix and applying a 2D IFFT -- the standard range-Doppler algorithm.
Matched Filter / Backpropagation Imaging
Demonstrates the matched filter estimator for a 2D radar scene.
Left panel: True scene -- point scatterers on a grid.
Right panel: Matched filter image . Observe how sidelobes blur the scatterers and how increasing SNR reduces the noise floor but does not improve resolution.
Parameters
Historical Note: The Matched Filter in Radar History
1943--1960The matched filter was introduced by D. O. North in a classified 1943 RCA Laboratories report during World War II. North showed that for a known signal in additive white Gaussian noise, the linear filter maximizing the output SNR is the time-reversed, conjugated replica of the signal -- hence "matched." The result was independently derived by J. H. Van Vleck and D. Middleton (1946) and later by G. L. Turin (1960) who generalized it to colored noise.
In imaging, the matched filter became the standard baseline with the development of synthetic aperture radar (SAR) in the 1950s at the University of Michigan, where range compression and azimuth compression were recognized as matched filter operations applied sequentially.
Quick Check
The matched filter estimator is:
The maximum likelihood estimator for the reflectivity
The linear filter maximizing per-pixel SNR
An unbiased estimator of the reflectivity
By Cauchy-Schwarz, maximizes the signal-to-noise ratio at pixel among all linear filters.
Matched filter
A linear filter whose impulse response is the time-reversed, conjugated replica of the signal of interest. In imaging, the matched filter at pixel is , and the full matched filter image is .
Backpropagation
The adjoint operation viewed as inverse Fourier transform of k-space data. Borrowed from diffraction tomography, where the scattered field is "propagated back" through the medium to estimate the contrast function.
Delay-and-sum (DAS)
A beamforming technique that forms an image by delaying (time-shifting) received signals according to the round-trip time to each pixel and summing coherently. Mathematically equivalent to the matched filter .
Processing gain
The SNR improvement achieved by the matched filter relative to a single measurement. For measurements: .
Gram matrix
The matrix whose entry is the inner product . The Gram matrix acts as the discrete point-spread function of the matched filter estimator.
Key Takeaway
The matched filter maximizes per-pixel SNR but does not deconvolve the PSF. The MF image equals the true scene convolved with the Gram matrix , and it is the negative gradient of the data-fidelity cost at the origin -- the starting point for every iterative reconstruction algorithm.