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

GE TablePosition tableDelta #850

Merged
merged 1 commit into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion BIDS/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ Data unique to [GE](https://github.com/rordenlab/dcm2niix/tree/master/GE). Deter
| LabelingDuration | s | DICOM tag 0043,10A5 | B |
| SliceTiming | s | [see notes](https://github.com/rordenlab/dcm2niix/tree/master/GE#slice-timing) | B |
| CompressedSensingFactor | | DICOM tag 0043,10B7 | D |
| TablePosition | mm | DICOM tag 0043,10B2 | B |
| TablePosition | mm | The 3rd value of DICOM tag 0043,10B2 - the value of DICOM tag 0019,107F | B |
| DeepLearningFactor | | DICOM tag 0043,10CA | D |

### Manufacturer Philips
Expand Down
11 changes: 9 additions & 2 deletions console/nii_dicom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4483,6 +4483,7 @@ const uint32_t kEffectiveTE = 0x0018 + uint32_t(0x9082 << 16); //FD
#define kBandwidthPerPixelPhaseEncode 0x0019 + (0x1028 << 16) //FD
#define kSliceTimeSiemens 0x0019 + (0x1029 << 16) ///FD
#define kAcquisitionDurationGE 0x0019 + (0x105a << 16) //FL Acquisition Duration in microsecond, Duration of Scan (series)
#define kTableDeltaGE 0x0019 + (0x107f << 16) //DS Table delta
#define kPulseSequenceNameGE 0x0019 + (0x109C << 16) //LO 'epiRT' or 'epi'
#define kInternalPulseSequenceNameGE 0x0019 + (0x109E << 16) //LO 'EPI' or 'EPI2'
#define kRawDataRunNumberGE 0x0019 + (0x10A2 << 16)//SL
Expand Down Expand Up @@ -4692,6 +4693,7 @@ const uint32_t kEffectiveTE = 0x0018 + uint32_t(0x9082 << 16); //FD
int userData12GE = 0;
float userData15GE = 0;
float accelFactPE = 0.0;
float tableDeltaGE = 0.0;
int overlayRows = 0;
int overlayCols = 0;
bool isNeologica = false;
Expand Down Expand Up @@ -7387,15 +7389,20 @@ const uint32_t kEffectiveTE = 0x0018 + uint32_t(0x9082 << 16); //FD
d.durationLabelPulseGE = dcmStrInt(lLength, &buffer[lPos]);
break;
}
case kMRTablePositionInformation: { //LO issue427GE
case kTableDeltaGE: { //DS issue726
if (d.manufacturer != kMANUFACTURER_GE)
break;
tableDeltaGE = dcmStrFloat(lLength, &buffer[lPos]);
}
case kMRTablePositionInformation: { //LO issue726
if (d.manufacturer != kMANUFACTURER_GE)
break;
//LO array of floats stored in LONG STRING!
// [960.5\400\17.9108\0\-9999\-9999]
//we want 3rd value, e.g. 17.9:
float v[5];
dcmMultiFloat(lLength, (char *)&buffer[lPos], 5, v);
d.CSA.tablePos[3] = v[3];
d.CSA.tablePos[3] = v[3] - tableDeltaGE;
d.CSA.tablePos[0] = 1.0;
break;
}
Expand Down
2 changes: 1 addition & 1 deletion console/nii_dicom.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ extern "C" {
#define kCPUsuf " " //unknown CPU
#endif

#define kDCMdate "v1.0.20240731"
#define kDCMdate "v1.0.20240812"
#define kDCMvers kDCMdate " " kJP2suf kLSsuf kCCsuf kCPUsuf

static const int kMaxEPI3D = 1024; //maximum number of EPI images in Siemens Mosaic
Expand Down
Loading