What?
Forward model:
Given a volume V and N simulation_parameters, use the linear simulator to simulate images:
X = simulate(V, simulation_parameters)
Backprojection:
Given images {X} and simulation_parameters, reconstruct the starting volume:
V = \sum_i back_project(X[i], simulation_parameters[i]).
Why?
- Useful to "close the simulation loop", for testing.
- Could be used as a diagnostic for validation, benchmark.
Where?
How?
TBD
What?
Forward model:
Given a volume
VandNsimulation_parameters, use the linear simulator to simulate images:X = simulate(V, simulation_parameters)Backprojection:
Given images
{X}andsimulation_parameters, reconstruct the starting volume:V = \sum_i back_project(X[i], simulation_parameters[i]).Why?
Where?
backproject.pyin the simSPI/simSPI/linear_simulator folderHow?
TBD