Replies: 1 comment 1 reply
-
Most of the documentation is outdated... The interface for solving convex problems has changed. Can you try with : # reco parameters
params = Dict{Symbol, Any}()
params[:reco] = "multiCoil"
params[:reconSize] = (N,N)
params[:reg] = L2Regularization(1.e-3) # regularization
params[:iterations] = 40
params[:solver] = CGNRE
params[:senseMaps] = coilsens
# do reconstruction
Ireco = reconstruction(acqData, params) If it still does not works, can you share the error. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi! I am implementing multiple coil simulations in KomaMRI. In the raw data profile I added one column per coil, and when using MRIReco.jl I get one image per coil. I was wondering how would I instead reconstruct an image with all coil data combined? I saw the example in X, but I was not able to make it work. Thanks!
Beta Was this translation helpful? Give feedback.
All reactions