Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added call to create jacobian_white measure directly in fastsurfer #282

Merged
merged 2 commits into from
Apr 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions recon_surf/recon-surf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -884,6 +884,11 @@ else

echo "pushd $mdir" >> $CMDF
# these are run automatically in fs7* recon-all and cannot be called directly without -pial flag (or other t2 flags)
if [ "$fssurfreg" == "1" ] ; then
# jacobian needs sphere reg which might be turned off by user (on by default)
cmd="mris_jacobian ../surf/$hemi.white ../surf/$hemi.sphere.reg ../surf/$hemi.jacobian_white"
RunIt "$cmd" $LF $CMDF
fi
cmd="mris_place_surface --curv-map ../surf/$hemi.white 2 10 ../surf/$hemi.curv"
RunIt "$cmd" $LF $CMDF
cmd="mris_place_surface --area-map ../surf/$hemi.white ../surf/$hemi.area"
Expand Down