Skip to content

Latest commit

 

History

History
76 lines (59 loc) · 1.88 KB

install_dcmtk.md

File metadata and controls

76 lines (59 loc) · 1.88 KB

How to Process MRI Images:

  1. Beginner's Guide to Command-Line Interface
  2. Installation Instructions
  3. Preprocessing T1 images
  4. Hippocampus Segmentation


Installation instructions can be found here: http://support.dcmtk.org/docs/file_install.html

Linux

  • 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

Mac

Windows