Skip to content

Commit

Permalink
bug fix: remove the density_compensation option from the overloaded c…
Browse files Browse the repository at this point in the history
…alcCoilMaps function
  • Loading branch information
SebastianFlassbeck authored Feb 6, 2025
1 parent 89fe350 commit de55afe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/CoilMaps.jl
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@ function calcCoilMaps(data::AbstractVector{<:AbstractMatrix{Complex{T}}}, trj::A
return cmaps
end

function calcCoilMaps(data::AbstractMatrix{Complex{T}}, trj::AbstractMatrix{T}, img_shape::NTuple{N,Int}; density_compensation=:radial_3D, kernel_size=ntuple(_ -> 6, N), calib_size=ntuple(_ -> 24, N), eigThresh_1=0.01, eigThresh_2=0.9, nmaps=1, verbose=false) where {N,T}
calcCoilMaps([data], [trj], img_shape; U=I(1), density_compensation, kernel_size, calib_size, eigThresh_1, eigThresh_2, nmaps, verbose)
end
function calcCoilMaps(data::AbstractMatrix{Complex{T}}, trj::AbstractMatrix{T}, img_shape::NTuple{N,Int}; kernel_size=ntuple(_ -> 6, N), calib_size=ntuple(_ -> 24, N), eigThresh_1=0.01, eigThresh_2=0.9, nmaps=1, verbose=false) where {N,T}
calcCoilMaps([data], [trj], img_shape; U=I(1), kernel_size, calib_size, eigThresh_1, eigThresh_2, nmaps, verbose)
end

0 comments on commit de55afe

Please sign in to comment.