|
iradon_InterpToUniformAngle
Convert equal solid angle projection scheme into equal linear angle scheme
Syntax:
Pela=iradon_InterpToUniformAngle(Pesa, options);
Description:
To be used in conjunction with iradon_d2d_mstage.
Pesa - equal solid angle scheme projections (float, see below)
for 3D: size(Pela)=[points_in_projection, 1, NΘ, Nφ]
for 4D: size(Pela)=[points_in_projection, NΘ, Nφ, Nα]
Number of Nφs≤Nφ angles for each NΘ is given by the formula: Nφs=round(abs(NΘ*sin(Θ)))
Missing projections (Nφs+1 ... Nφ) are padded with zeros.
options - options (string, 'imgData'/'timeStamp')
'timeStamp' : do spline interpolation and then extrapolation
'imgData' : do interpolation using azimuthal symmetry
Pela - equal linear angle scheme projections (float, see below)
for 3D: size(Pela)=[points_in_projection, 1, NΘ, Nφ]
for 4D: size(Pela)=[points_in_projection, NΘ, Nφ, NΘ]
See also:
iradon_d2d_mstage
|