Skip to main content
. Author manuscript; available in PMC: 2011 Aug 1.
Published in final edited form as: Magn Reson Med. 2010 Aug;64(2):457–471. doi: 10.1002/mrm.22428

Table 1.

A POCS algorithm for SPIRiT from arbitrary sampling on a Cartesian grid.

POCS SPIRiT CARTESIAN RECONSTRUCTION
INPUTS:
y - k-space measurements from all coils
D - operator selecting acquired k-space
Dc - operator selecting non-acquired k-space
G - SPIRiT operator matrix obtained from calibration
errToll - stopping tolerance
OUTPUTS:
xk - reconstructed k-space for all coils
ALGORITHM:
x0 = DT y; k = 0
do {
   k = k+1
   xk = Gxk–1 % Calibration consistency projection
   xk=DcTDcxk+DTy%Dcxk + DT y % Data acquisition consistency projection
   e = ∥xk - xk–1∥ % Error stopping criteria
   xk–1=xk
}while e > errToll