#include <mitkDICOMInfoReader.h>
Inherits mitkInfoReader.
Inheritance diagram for mitkDICOMInfoReader:
Public Member Functions | |
virtual void | PrintSelf (ostream &os) |
bool | GetDataElement (unsigned long tag, DICOMELEMENT &element) |
Static Public Member Functions | |
static const char * | GetDescription (unsigned long tag) |
mitkDICOMInfoReader is a concrete reader for reading element information in DICOM files To use this reader, the code snippet is:
mitkDICOMInfoReader *aReader = new mitkDICOMInfoReader; aReader->AddFileName(filename); //Only one file will be processed at a time if (aReader->Run()) { DICOMELEMENT aElement; if (aReader->GetDataElement(somedicomtag, aElement) { Using aElement } }
|
Get data element in the DICOM file.
|
|
Get the description of the tag.
|
|
Print the necessary information about this object for the debugging purpose.
Reimplemented from mitkInfoReader. |