How to Process MRI Images:
- Beginner's Guide to Command-Line Interface
- Installation Instructions
- Preprocessing T1 images
- Hippocampus Segmentation
- Firefox
- DICOM Toolkit
- dcm2nii DICOM to NIfTI conversion
- Multi-image Analysis GUI (MANGO)
- MATLAB R2014a
- ACPC Detect
- Git
- CMake
- C++ Compiler
- Advanced Normalization Tools
- ITK
- Convert3D
Installation instructions can be found here: http://support.dcmtk.org/docs/file_install.html
- Download the latest version of dcmtk:
#!console
# cd /usr/local/
# wget ftp://dicom.offis.de/pub/dicom/offis/software/dcmtk/dcmtk360/dcmtk-3.6.0.tar.gz
- Extract Archive
#!console
# tar xvzf dcmtk-3.6.0.tar.gz
- Configure:
#!console
# cd dcmtk-3.6.0
# ./configure
- Build the libraries and executables:
#!console
# make all
- Install the executables and some support files (data dictionary):
#!console
# make install