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

Ability to specify which series to convert #146

Merged
merged 3 commits into from
Dec 13, 2017
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ If you have any problems with the cmake build script described above or want to
- [dcm2niir](https://github.com/muschellij2/dcm2niir) R wrapper for dcm2niix/dcm2nii.
- [divest](https://github.com/jonclayden/divest) R interface to dcm2niix.
- [sci-tran dcm2niix](https://github.com/scitran-apps/dcm2niix) docker.
- [neuro_docker](https://github.com/Neurita/neuro_docker) includes dcm2niix as part of a provides a single, static Dockerfile.
- [neuro_docker](https://github.com/Neurita/neuro_docker) includes dcm2niix as part of a single, static Dockerfile.
- [neurodocker](https://github.com/kaczmarj/neurodocker) generates [custom](https://github.com/rordenlab/dcm2niix/issues/138) Dockerfiles given specific versions of neuroimaging software.
- [dcm2niix_afni](https://afni.nimh.nih.gov/pub/dist/doc/program_help/dcm2niix_afni.html) is a version of dcm2niix included with the [AFNI](https://afni.nimh.nih.gov/) distribution.
- [MRIcroGL](https://github.com/neurolabusc/MRIcroGL) is available for MacOS, Linux and Windows and provides a graphical interface for dcm2niix. You can get compiled copies from the [MRIcroGL NITRC web site](https://www.nitrc.org/projects/mricrogl/).
2 changes: 1 addition & 1 deletion VERSIONS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Versions

4-Dev-2017
4-Dec-2017
- Handle implicit VR DICOMs where [critical values nested in sequence groups (SQ)](https://github.com/rordenlab/dcm2niix/commit/7f5649c6fe6ed366d07776aa54397b50f6641aff)
- Better support for [PAR/REC files with segmented 3D EPI](https://github.com/rordenlab/dcm2niix/commit/66cdf2dcc60d55a6ef37f5a6db8d500d3eeb7c88).
- Allow Protocol Name to be [empty](https://github.com/rordenlab/dcm2niix/commit/94f3129898ba83bf310c9ff28e994f29feb13068).
Expand Down
10 changes: 10 additions & 0 deletions console/main_console.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ void showHelp(const char * argv[], struct TDCMopts opts) {
printf(" -h : show help\n");
printf(" -i : ignore derived, localizer and 2D images (y/n, default n)\n");
printf(" -m : merge 2D slices from same series regardless of study time, echo, coil, orientation, etc. (y/n, default n)\n");
printf(" -n : only convert this series number - can be used up to %i times (default convert all)\n", MAX_NUM_SERIES);
printf(" -o : output directory (omit to save to input folder)\n");
printf(" -p : Philips precise float (not display) scaling (y/n, default y)\n");
printf(" -s : single file mode, do not convert other images in folder (y/n, default n)\n");
Expand Down Expand Up @@ -279,6 +280,15 @@ int main(int argc, const char * argv[])
} else if ((argv[i][1] == 'o') && ((i+1) < argc)) {
i++;
strcpy(opts.outdir,argv[i]);
} else if ((argv[i][1] == 'n') && ((i+1) < argc)) {
if (opts.numSeries < MAX_NUM_SERIES) {
i++;
opts.seriesNumber[opts.numSeries] = atoi(argv[i]);
opts.numSeries += 1;
}
else {
printf("Warning: too many series specified, ignoring -n %s\n", argv[i]);
}
} else
printf(" Error: invalid option '%s %s'\n", argv[i], argv[i+1]);;
lastCommandArg = i;
Expand Down
14 changes: 14 additions & 0 deletions console/nii_dicom_batch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2470,6 +2470,18 @@ int saveDcm2Nii(int nConvert, struct TDCMsort dcmSort[],struct TDICOMdata dcmLis
imgM = nii_flipZ(imgM, &hdr0);
sliceDir = abs(sliceDir); //change this, we have flipped the image so GE DTI bvecs no longer need to be flipped!
}
// skip converting if user has specified one or more series, but has not specified this one
if (opts.numSeries > 0) {
int i = 0;
for (; i < opts.numSeries; i++) {
if (opts.seriesNumber[i] == dcmList[dcmSort[0].indx].seriesNum) {
break;
}
}
if (i == opts.numSeries) {
return EXIT_SUCCESS;
}
}
//move before headerDcm2Nii2 checkSliceTiming(&dcmList[indx0], &dcmList[indx1]);
//nii_SaveBIDS(pathoutname, dcmList[dcmSort[0].indx], opts, dti4D, &hdr0, nameList->str[dcmSort[0].indx]);
nii_SaveBIDS(pathoutname, dcmList[dcmSort[0].indx], opts, &hdr0, nameList->str[dcmSort[0].indx]);
Expand Down Expand Up @@ -3184,6 +3196,8 @@ void setDefaultOpts (struct TDCMopts *opts, const char * argv[]) { //either "set
opts->isVerbose = false;
#endif
opts->isTiltCorrect = true;
opts->numSeries = 0;
memset(opts->seriesNumber, 0, sizeof(opts->seriesNumber));
strcpy(opts->filename,"%f_%p_%t_%s");
} // setDefaultOpts()

Expand Down
3 changes: 3 additions & 0 deletions console/nii_dicom_batch.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,13 @@ extern "C" {
};
#endif

#define MAX_NUM_SERIES 16

struct TDCMopts {
bool isSave3D,isGz, isFlipY, isCreateBIDS, isSortDTIbyBVal, isAnonymizeBIDS, isOnlyBIDS, isCreateText, isIgnoreDerivedAnd2D, isPhilipsFloatNotDisplayScaling, isTiltCorrect, isRGBplanar, isOnlySingleFile, isForceStackSameSeries, isCrop;
int isVerbose, compressFlag, gzLevel; //support for compressed data 0=none,
char filename[512], outdir[512], indir[512], pigzname[512], optsname[512], indirParent[512], imageComments[24];
long seriesNumber[MAX_NUM_SERIES], numSeries;
#ifdef HAVE_R
bool isScanOnly;
void *imageList;
Expand Down