Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itk::DICOMImageIO2 Class Reference

Read DICOMImage file format. More...

#include <itkDICOMImageIO2.h>

Inheritance diagram for itk::DICOMImageIO2:

Inheritance graph
[legend]
Collaboration diagram for itk::DICOMImageIO2:

Collaboration graph
[legend]
List of all members.

Public Types

typedef DICOMImageIO2 Self
typedef ImageIOBase Superclass
typedef SmartPointer< SelfPointer

Public Member Functions

virtual const char * GetNameOfClass () const
virtual bool CanReadFile (const char *)
virtual void ReadImageInformation ()
virtual void Read (void *buffer)
virtual bool CanWriteFile (const char *)
virtual void WriteImageInformation ()
virtual void Write (const void *)
void GetPatientName (char *name)
void GetPatientID (char *id)
void GetPatientSex (char *sex)
void GetPatientAge (char *age)
void GetStudyID (char *id)
void GetPatientDOB (char *dob)
void GetStudyDescription (char *desc)
void GetBodyPart (char *part)
void GetNumberOfSeriesInStudy (char *series)
void GetNumberOfStudyRelatedSeries (char *series)
void GetStudyDate (char *date)
void GetModality (char *modality)
void GetManufacturer (char *manu)
void GetInstitution (char *ins)
void GetModel (char *model)

Static Public Member Functions

Pointer New ()

Protected Member Functions

 DICOMImageIO2 ()
virtual ~DICOMImageIO2 ()
void PrintSelf (std::ostream &os, Indent indent) const
void ReadDataCallback (doublebyte group, doublebyte element, itkdicomparser::DICOMParser::VRTypes type, unsigned char *val, quadbyte len)

Protected Attributes

itkdicomparser::DICOMParser * m_Parser
itkdicomparser::DICOMAppHelper * m_AppHelper
unsigned char * m_ImageDataBuffer

Detailed Description

Read DICOMImage file format.

Definition at line 30 of file itkDICOMImageIO2.h.


Member Typedef Documentation

typedef SmartPointer<Self> itk::DICOMImageIO2::Pointer
 

Reimplemented from itk::ImageIOBase.

Definition at line 36 of file itkDICOMImageIO2.h.

typedef DICOMImageIO2 itk::DICOMImageIO2::Self
 

Standard class typedefs.

Reimplemented from itk::ImageIOBase.

Definition at line 34 of file itkDICOMImageIO2.h.

typedef ImageIOBase itk::DICOMImageIO2::Superclass
 

Reimplemented from itk::ImageIOBase.

Definition at line 35 of file itkDICOMImageIO2.h.


Constructor & Destructor Documentation

itk::DICOMImageIO2::DICOMImageIO2  )  [protected]
 

virtual itk::DICOMImageIO2::~DICOMImageIO2  )  [protected, virtual]
 


Member Function Documentation

virtual bool itk::DICOMImageIO2::CanReadFile const char *   )  [virtual]
 

Determine the file type. Returns true if this ImageIO can read the file specified.

Implements itk::ImageIOBase.

virtual bool itk::DICOMImageIO2::CanWriteFile const char *   )  [inline, virtual]
 

Determine the file type. Returns true if this ImageIO can write the file specified.

Implements itk::ImageIOBase.

Definition at line 69 of file itkDICOMImageIO2.h.

void itk::DICOMImageIO2::GetBodyPart char *  part  ) 
 

Get methods to query patient information and scanner information

void itk::DICOMImageIO2::GetInstitution char *  ins  ) 
 

Get methods to query patient information and scanner information

void itk::DICOMImageIO2::GetManufacturer char *  manu  ) 
 

Get methods to query patient information and scanner information

void itk::DICOMImageIO2::GetModality char *  modality  ) 
 

Get methods to query patient information and scanner information

void itk::DICOMImageIO2::GetModel char *  model  ) 
 

Get methods to query patient information and scanner information

virtual const char* itk::DICOMImageIO2::GetNameOfClass  )  const [virtual]
 

Run-time type information (and related methods).

Reimplemented from itk::ImageIOBase.

void itk::DICOMImageIO2::GetNumberOfSeriesInStudy char *  series  ) 
 

Get methods to query patient information and scanner information

void itk::DICOMImageIO2::GetNumberOfStudyRelatedSeries char *  series  ) 
 

Get methods to query patient information and scanner information

void itk::DICOMImageIO2::GetPatientAge char *  age  ) 
 

Get methods to query patient information and scanner information

void itk::DICOMImageIO2::GetPatientDOB char *  dob  ) 
 

Get methods to query patient information and scanner information

void itk::DICOMImageIO2::GetPatientID char *  id  ) 
 

Get methods to query patient information and scanner information

void itk::DICOMImageIO2::GetPatientName char *  name  ) 
 

Get methods to query patient information and scanner information

void itk::DICOMImageIO2::GetPatientSex char *  sex  ) 
 

Get methods to query patient information and scanner information

void itk::DICOMImageIO2::GetStudyDate char *  date  ) 
 

Get methods to query patient information and scanner information

void itk::DICOMImageIO2::GetStudyDescription char *  desc  ) 
 

Get methods to query patient information and scanner information

void itk::DICOMImageIO2::GetStudyID char *  id  ) 
 

Get methods to query patient information and scanner information

Pointer itk::DICOMImageIO2::New  )  [static]
 

Method for creation through the object factory.

Reimplemented from itk::LightProcessObject.

void itk::DICOMImageIO2::PrintSelf std::ostream &  os,
Indent  indent
const [protected, virtual]
 

Methods invoked by Print() to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.

Reimplemented from itk::ImageIOBase.

virtual void itk::DICOMImageIO2::Read void *  buffer  )  [virtual]
 

Reads the data from disk into the memory buffer provided.

Implements itk::ImageIOBase.

void itk::DICOMImageIO2::ReadDataCallback doublebyte  group,
doublebyte  element,
itkdicomparser::DICOMParser::VRTypes  type,
unsigned char *  val,
quadbyte  len
[protected]
 

virtual void itk::DICOMImageIO2::ReadImageInformation  )  [virtual]
 

Set the spacing and dimension information for the set filename.

Implements itk::ImageIOBase.

virtual void itk::DICOMImageIO2::Write const void *   )  [inline, virtual]
 

Writes the data to disk from the memory buffer provided. Make sure that the IORegions has been set properly.

Implements itk::ImageIOBase.

Definition at line 76 of file itkDICOMImageIO2.h.

virtual void itk::DICOMImageIO2::WriteImageInformation void   )  [inline, virtual]
 

Set the spacing and dimension information for the set filename.

Implements itk::ImageIOBase.

Definition at line 72 of file itkDICOMImageIO2.h.


Member Data Documentation

itkdicomparser::DICOMAppHelper* itk::DICOMImageIO2::m_AppHelper [protected]
 

Definition at line 103 of file itkDICOMImageIO2.h.

unsigned char* itk::DICOMImageIO2::m_ImageDataBuffer [protected]
 

Definition at line 111 of file itkDICOMImageIO2.h.

itkdicomparser::DICOMParser* itk::DICOMImageIO2::m_Parser [protected]
 

Definition at line 102 of file itkDICOMImageIO2.h.


The documentation for this class was generated from the following file:
Generated at Thu May 25 00:48:08 2006 for ITK by doxygen 1.3.5 written by Dimitri van Heesch, © 1997-2000