Block Sparsity¶
This section covers algorithms for recovery of block sparse signals from compressive measurements.
Related Examples
Problem Formulations¶
The basic compressive sensing model is given by
where \(\by\) is a known measurement vector, \(\Phi\) is a known sensing matrix and \(\bx\) is a sparse signal to be recovered from the measurements.
We introduce the block/group structure on \(\bx\) as
where each \(\bx_i\) is a block of \(b\) values. The signal \(\bx\) consists of \(g\) such blocks/groups. Under the block sparsity model, only a few \(k \ll g\) blocks are nonzero (active) in the signal \(\bx\) however, the locations of these blocks are unknown.
We can rewrite the sensing equation as:
by splitting the sensing matrix into blocks of columns appropriately.
Following possibilities are there:
Block Sizes:
All blocks have same size.
Different blocks have different sizes.
Block sizes are known.
Block sizes are unknown.
Intra Block Correlation:
Nonzero coefficients in each active block are independent of each other.
Nonzero coefficients in each active block exhibit some correlation.
Measurements
Measurements are noiseless.
Measurements have some noise at high SNR.
Measurements have high amount of noise with low SNR.
Measurements are real valued.
Measurements are quantized and hence integer valued introducing quantization noise.
Different block sparse recovery algorithms exhibit different capabilities along these choices.
Intra Block Correlation
We can model the correlation among the values within each active block as an AR-1 process. Under this assumption the matrices \(\bB_i\) of intra block covariance take the form of a Toeplitz matrix
where \(r\) is the AR-1 model coefficient.
Block Sparse Bayesian Learning¶
The Block Sparse Bayesian Learning (BSBL) algorithm and its extensions are described in [ZR12, ZR13].
Our implementation is restricted to the case of blocks with identical sizes which are known a priori. This is done to take advantage of JIT (just in time) compilation abilities of JAX that require sizes of arrays to be statically determined.
Following extensions of BSBL algorithm have been implemented:
BSBL-EM (Expectation Maximization)
BSBL-BO (Bound Optimization)
Methods
Reconstructs a block sparse signal using BSBL-EM algorithm |
|
Reconstructs a block sparse signal using BSBL-EM algorithm |
|
Reconstructs a block sparse signal using BSBL-BO algorithm |
|
Reconstructs a block sparse signal using BSBL-BO algorithm |
|
Helper function to initialize options for the BSBL-EM algorithm |
|
Helper function to initialize options for the BSBL-BO algorithm |
Data Types
Options for the BSBL algorithm |
|
Sparse Bayesian Learning algorithm state |