Skip to content

Instantly share code, notes, and snippets.

View dancebean's full-sized avatar

dancebean

View GitHub Profile
@dancebean
dancebean / nii_to_tif.py
Created July 18, 2019 05:24 — forked from jcreinhold/nii_to_tif.py
Convert NIfTI images into multiple TIF images
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
nii_to_tif
command line executable to convert 3d nifti images to
individual tiff images along a user-specified axis
call as: python nii_to_tif.py /path/to/nifti /path/to/tif
(append optional arguments to the call as desired)
@dancebean
dancebean / tif_to_nii.py
Created April 30, 2020 17:30 — forked from jcreinhold/tif_to_nii.py
Convert TIFF image directory (of one image) to NIfTI
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
tif_to_nii
command line executable to convert a directory of tif images
(from one image) to a nifti image stacked along a user-specified axis
call as: python tif_to_nii.py /path/to/tif/ /path/to/nifti
(append optional arguments to the call as desired)