Skip to content

Commit

Permalink
Merge pull request #505 from mr-jaemin/development
Browse files Browse the repository at this point in the history
Detect GE direct fieldmaps Update
  • Loading branch information
neurolabusc authored Apr 10, 2021
2 parents b9252b5 + c8874a6 commit 629da0d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion console/nii_dicom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5531,6 +5531,9 @@ uint32_t kSequenceDelimitationItemTag = 0xFFFE +(0xE0DD << 16 );
if (strstr(epiStr, "epiRT") != NULL){
d.epiVersionGE = 1; //-1 = not epi, 0 = epi, 1 = epiRT
}
if (strcmp(epiStr, "3db0map") == 0){
isGEfieldMap = true; //issue501
}
break;
}
case kInternalPulseSequenceNameGE : { //LO 'EPI'(gradient echo)/'EPI2'(spin echo):
Expand All @@ -5546,8 +5549,9 @@ uint32_t kSequenceDelimitationItemTag = 0xFFFE +(0xE0DD << 16 );
if (strcmp(epiStr, "EPI2") == 0){
d.internalepiVersionGE = 2; //-1 = not epi, 1 = EPI, 2 = EPI2
}
if ((strcmp(epiStr, "EFGRE3D") == 0) || (strcmp(epiStr, "B0map") == 0))
if (strcmp(epiStr, "B0map") == 0){
isGEfieldMap = true; //issue501
}
break;
}
case kBandwidthPerPixelPhaseEncode:
Expand Down

0 comments on commit 629da0d

Please sign in to comment.