1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
#ifndef NIFTIOUT_H_INCLUDED
#define NIFTIOUT_H_INCLUDED
// $Id: niftiout.h,v 1.3 2006/08/15 20:02:29 valerio Exp $
//============================================================================
// CTN software is curtesy of
//
// Mallinckrodt Institute of Radiology
// Washington University in St. Louis MO
// http://wuerlim.wustl.edu/
//
//============================================================================
//****************************************************************************
//
// Modification History (most recent first)
// mm/dd/yy Who What
//
// 08/15/06 VPL GPL'ed it
// 03/22/05 VPL Allow processing of multiple series
// Add NYU License agreement
// 02/01/05 VPL
//
//****************************************************************************
#include <iostream>
#include <stdlib.h>
#include <stdio.h>
#include <string>
#include <list>
using namespace std;
using std::cin;
using std::cout;
using std::cerr;
using std::endl;
using std::ios;
using std::string;
typedef string::size_type size_type;
#include "dinifti.h"
#include "dicomInfo.h"
#include "nifti1_io.h"
class DICOMImage;
bool NIfTICreateHeader(nifti_image &hdr, IMAGEMAP &imageMap);
bool NIfTIWriteData(znzFile fp, nifti_image &hdr, IMAGEMAP &imageMap);
#endif
|