Skip to content

Commit

Permalink
Merge branch 'dev' of github.com:freesurfer/freesurfer into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Douglas Greve committed Feb 18, 2022
2 parents 257ed6d + 956ee1b commit 20bc96b
Show file tree
Hide file tree
Showing 2 changed files with 127 additions and 106 deletions.
8 changes: 4 additions & 4 deletions include/GradUnwarp.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ class GradUnwarp
void load_transtable(const char* morphfile);
void save_transtable(const char* morphfile);

MRI* unwarp_volume(MRI *origvol, MRI *unwarpedvol, int interpcode, int sinchw);
MRIS* unwarp_surface_gradfile(MRIS *origsurf, MRIS *unwarpedsurf);
MRIS* unwarp_surface(MRIS *origsurf, MRIS *unwarpedsurf);
MRI* unwarp_volume(MRI *warpedvol, MRI *unwarpedvol, int interpcode, int sinchw);
MRIS* unwarp_surface_gradfile(MRIS *warpedsurf, MRIS *unwarpedsurf);
MRIS* unwarp_surface(MRIS *warpedsurf, MRIS *unwarpedsurf);

private:
int nthreads;
Expand Down Expand Up @@ -91,7 +91,7 @@ class GradUnwarp
void _skipCoeffComment();
void _initCoeff();
void _update_GCAMnode(int c, int r, int s, float fcs, float frs, float fss);
void _assignUnWarpedVolumeValues(MRI* origvol, MRI* unwarpedvol, MRI_BSPLINE *bspline, int interpcode, int sinchw,
void _assignUnWarpedVolumeValues(MRI* warpedvol, MRI* unwarpedvol, MRI_BSPLINE *bspline, int interpcode, int sinchw,
int c, int r, int s, float fcs, float frs, float fss);
};

Expand Down
Loading

0 comments on commit 20bc96b

Please sign in to comment.