Skip to content

Commit 4659d69

Browse files
committed
Update terminology to 'co-registration' and version info
Standardized the spelling of 'co-registration' across comments and documentation in DICOMRead.m, SiemensDICOMRead.m, and GannetLoad.m. Updated the version string in CoRegStandAlone.m and improved comment formatting for clarity.
1 parent 2feb077 commit 4659d69

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

CoRegStandAlone/CoRegStandAlone.m

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
out = regexp(str, expression, 'names');
6868
MRS_struct.info.version.load = out.version;
6969

70-
MRS_struct.info.version.coregstandalone = '250911';
70+
MRS_struct.info.version.coregstandalone = '251112';
7171

7272
MRS_struct.ii = 0;
7373
if size(metabfile,2) == 1
@@ -133,21 +133,21 @@
133133

134134
end
135135

136-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
137-
% 4. Call coregister function
138-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
136+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
137+
% 4. Call co-register function
138+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
139139

140140
MRS_struct = CoReg(MRS_struct, struc);
141141

142-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
142+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
143143
% 5. Call segment function
144-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
144+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
145145

146146
MRS_struct = Seg(MRS_struct);
147147

148-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
148+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
149149
% 6. Clean up, save data
150-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
150+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
151151

152152
% Save MRS_struct as mat file
153153
MRS_struct = rmfield(MRS_struct,'fids');

DICOMRead.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
% of Minnesota) (2017-11-20). Thanks to Jim Lagopoulos.
3131
% 0.95: Fills missing voxel geometry parameters in DICOM header with zero
3232
% values. Thanks to Alen Tersakyan.
33-
% 0.96: Fixed to accomodate batch processing of coregister/segmentation.
33+
% 0.96: Fixed to accomodate batch processing of co-registration/segmentation.
3434
% (2018-09-19)
3535
%
3636
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

GannetLoad.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@
530530
case 'SpecReg'
531531
[AllFramesFTrealign, MRS_struct] = SpectralRegistration(MRS_struct,0);
532532
case 'SpecRegDual'
533-
% Dual-channel spectral registration is applied separately to ON and OFF and they are coregistered after
533+
% Dual-channel spectral registration is applied separately to ON and OFF and they are co-registered after
534534
[AllFramesFTrealign, MRS_struct] = SpectralRegistration(MRS_struct,0,1);
535535
case 'SpecRegHERMES'
536536
[AllFramesFTrealign, MRS_struct] = SpectralRegistrationHERMES(MRS_struct);

SiemensDICOMRead.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
% of Minnesota) (2017-11-20). Thanks to Jim Lagopoulos.
3131
% 0.95: Fills missing voxel geometry parameters in DICOM header with zero
3232
% values. Thanks to Alen Tersakyan.
33-
% 0.96: Fixed to accomodate batch processing of coregister/segmentation.
33+
% 0.96: Fixed to accomodate batch processing of co-registration/segmentation.
3434
% (2018-09-19)
3535
% 0.97: Loading TR and TE of water reference.
3636
% 0.98: Added support for Utah's sequence.

0 commit comments

Comments
 (0)