<< Chapter < Page Chapter >> Page >
x k = arg min x y - Φ Ω x 2 , α ^ t = Φ Ω x t , r t = y - α ^ t .

These steps are repeated until convergence. This is known as Orthogonal Matching Pursuit (OMP)  [link] . Tropp and Gilbert  [link] proved that OMP can be used to recover a sparse signal with high probability using compressive measurements. The algorithm converges in at most K iterations, where K is the sparsity, but requires the added computational cost of orthogonalization at each iteration. Indeed, the total complexity of OMP can be shown to be O ( M N K ) .

While OMP is provably fast and can be shown to lead to exact recovery, the guarantees accompanying OMP for sparse recovery are weaker than those associated with optimization techniques . In particular, the reconstruction guarantees are not uniform , i.e., it cannot be shown that a single measurement matrix with M = C K log N rows can be used to recover every possible K - sparse signal with M = C K log N measurements. (Although it is possible to obtain such uniform guarantees when it is acceptable to take more measurements. For example, see [link] .) Another issue with OMP is robustness to noise; it is unknown whether the solution obtained by OMP will only be perturbed slightly by the addition of a small amount of noise in the measurements. Nevertheless, OMP is an efficient method for CS recovery, especially when the signal sparsity K is low. A pseudocode representation of OMP is shown below.

Inputs: Measurement matrix Φ , signal measurements y Outputs: Sparse representation x ^ Initialize: θ ^ 0 = 0 , r = y , Ω = , i = 0 . while ħalting criterion false do 1. i i + 1 2. b Φ T r {form residual signal estimate} 3. Ω Ω supp ( T ( b , 1 ) ) {add index of residual's largest magnitude entry to signal support} 4. x ^ i | Ω Φ Ω x , x ^ i | Ω C 0 {form signal estimate} 5. r y - Φ x ^ i {update measurement residual} end while return x ^ x ^ i

Stagewise orthogonal matching pursuit (stomp)

Orthogonal Matching Pursuit is ineffective when the signal is not very sparse as the computational cost increases quadratically with the number of nonzeros K . In this setting, Stagewise Orthogonal Matching Pursuit (StOMP)  [link] is a better choice for approximately sparse signals in a large-scale setting.

StOMP offers considerable computational advantages over 1 minimization and Orthogonal Matching Pursuit for large scale problems with sparse solutions. The algorithm starts with an initial residual r 0 = y and calculates the set of all projections Φ T r k - 1 at the k t h stage (as in OMP). However, instead of picking a single dictionary element, it uses a threshold parameter τ to determine the next best set of columns of Φ whose correlations with the current residual exceed τ . The new residual is calculated using a least squares estimate of the signal using this expanded set of columns, just as before.

Unlike OMP, the number of iterations in StOMP is fixed and chosen before hand; S = 10 is recommended in [link] . In general, the complexity of StOMP is O ( K N log N ) , a significant improvement over OMP. However, StOMP does not bring in its wake any reconstruction guarantees. StOMP also has moderate memory requirements compared to OMP where the orthogonalization requires the maintenance of a Cholesky factorization of the dictionary elements.

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, An introduction to compressive sensing. OpenStax CNX. Apr 02, 2011 Download for free at http://legacy.cnx.org/content/col11133/1.5
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'An introduction to compressive sensing' conversation and receive update notifications?

Ask