/usr/include/InsightToolkit/IO/itkGDCMImageIO.h is in libinsighttoolkit3-dev 3.20.1+git20120521-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 | /*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkGDCMImageIO.h
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
Portions of this code are covered under the VTK copyright.
See VTKCopyright.txt or http://www.kitware.com/VTKCopyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef __itkGDCMImageIO_h
#define __itkGDCMImageIO_h
#include "itkImageIOBase.h"
#include <fstream>
#include <string>
namespace itk
{
/** \class GDCMImageIO
*
* \brief ImageIO class for reading and writing DICOM V3.0 and ACR/NEMA 1&2 uncompressed images
* This class is only an adaptor to the gdcm library (currently gdcm 1.2.x is used by default):
*
* GDCM 1.2 can be found at:
* http://creatis-www.insa-lyon.fr/Public/Gdcm/
*
* CREATIS INSA - Lyon 2003-2008
* http://www.creatis.insa-lyon.fr
*
* Using the CMake variable: ITK_USE_SYSTEM_GDCM it is now possible to use a system installed
* GDCM 2.x release. GDCM 2.x is now being developped on sourceforge.net :
*
* http://gdcm.sourceforge.net
*
* Documentation:
* - http://apps.sourceforge.net/mediawiki/gdcm/index.php?title=ITK_USE_SYSTEM_GDCM
* - http://apps.sourceforge.net/mediawiki/gdcm/index.php?title=GDCM_Release_2.0
*
* \warning There are several restrictions to this current writer:
* - Eventhough during the writing process you pass in a DICOM file as input
* The output file may not contains ALL DICOM field from the input file.
* In particular:
* - The SeQuence DICOM field (SQ).
* - Fields from Private Dictionary
* - Some very long (>0xfff) binary fields are not loaded (typically 0029|0010),
* you need to explicitely set the maximum length of elements to load to be bigger
* (see Get/SetMaxSizeLoadEntry)
* - GDCMImageIO was not handling rescale slope/intercept properly. This is fixed as of 11/12/2007
* - In DICOM some field are stored directly using there binary representation. When loaded into
* the MetaDataDict some fields are converted to ASCII (only VR: OB/OW/OF and UN are encoded as
* mime64).
*
* \ingroup IOFilters
*
*/
class InternalHeader;
class ITK_EXPORT GDCMImageIO : public ImageIOBase
{
public:
/** Standard class typedefs. */
typedef GDCMImageIO Self;
typedef ImageIOBase Superclass;
typedef SmartPointer<Self> Pointer;
/** Method for creation through the object factory. */
itkNewMacro(Self);
/** Run-time type information (and related methods). */
itkTypeMacro(GDCMImageIO, Superclass);
/*-------- This part of the interface deals with reading data. ------ */
/** Determine the file type. Returns true if this ImageIO can read the
* file specified. */
virtual bool CanReadFile(const char*);
/** Set the spacing and dimesion information for the current filename. */
virtual void ReadImageInformation();
/** Reads the data from disk into the memory buffer provided. */
virtual void Read(void* buffer);
/** Get the original component type of the image. This differs from
* ComponentType which may change as a function of rescale slope and
* intercept. */
itkGetEnumMacro(InternalComponentType,IOComponentType);
/*-------- This part of the interfaces deals with writing data. ----- */
/** Determine the file type. Returns true if this ImageIO can write the
* file specified. GDCM triggers on ".dcm" and ".dicom". */
virtual bool CanWriteFile(const char*);
/** Writes the spacing and dimentions of the image.
* Assumes SetFileName has been called with a valid file name. */
virtual void WriteImageInformation();
/** Writes the data to disk from the memory buffer provided. Make sure
* that the IORegion has been set properly. */
virtual void Write(const void* buffer);
/** Macro to access Rescale Slope and Rescale Intercept. Which are
* needed to rescale properly image when needed. User then need to
* Always check those value when access value from the DICOM header */
itkGetConstMacro(RescaleSlope, double);
itkGetConstMacro(RescaleIntercept, double);
/** Macro to access the DICOM UID prefix. By default this is the ITK
* root id. This default can be overriden if the exam is for example
* part of an existing study.
*/
itkGetStringMacro(UIDPrefix);
itkSetStringMacro(UIDPrefix);
/** Access the generated DICOM UID's. */
itkGetStringMacro(StudyInstanceUID);
itkGetStringMacro(SeriesInstanceUID);
itkGetStringMacro(FrameOfReferenceInstanceUID);
/** Preserve the original DICOM UID of the input files
*/
itkSetMacro(KeepOriginalUID,bool);
itkGetConstMacro(KeepOriginalUID,bool);
itkBooleanMacro(KeepOriginalUID);
/** Convenience methods to query patient information and scanner
* information. These methods are here for compatibility with the
* DICOMImageIO2 class and as such should not be used in any new code.
* They rely on properly preallocated buffer, which is not a good practice.
* Instead user are encourage to use directly the GetValueFromTag function
*/
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);
void GetScanOptions(char *options);
/** More general method to retrieve an arbitrary DICOM value based
* on a DICOM Tag (eg "0123|4567").
* WARNING: You need to use the lower case for hex 0x[a-f], for instance:
* "0020|000d" instead of "0020|000D" (the latter won't work)
*/
bool GetValueFromTag(const std::string & tag, std::string & value);
/** Method for consulting the DICOM dictionary and recovering the text
* description of a field using its numeric tag represented as a string. If
* the tagkey is not found in the dictionary then this static method return
* false and the value "Unknown " in the labelId. If the tagkey is found then
* this static method returns true and the actual string descriptor of the
* tagkey is returned in the variable labelId. */
static bool GetLabelFromTag( const std::string & tag,
std::string & labelId );
/** A DICOM file can contains multiple binary stream that can be very long
* For example an Overlay on the image. Most of the time user do not want to load
* this binary structure in memory since it can consume lot of memory. Therefore
* any field that is bigger than the default value 0xfff is discarded and just seek'd
* This method allow advanced user to force the reading of such field
* \warning this is a GDCM 1.x only option, no effect on GDCM 2.x
*/
itkSetMacro(MaxSizeLoadEntry, long);
/** Parse any sequences in the DICOM file. Defaults to the value of
* LoadSequencesDefault. Loading DICOM files is faster when
* sequences are not needed.
* \warning this is a GDCM 1.x only option, no effect on GDCM 2.x
*/
itkSetMacro(LoadSequences, bool);
itkGetConstMacro(LoadSequences, bool);
itkBooleanMacro(LoadSequences);
/** Parse any private tags in the DICOM file. Defaults to the value
* of LoadPrivateTagsDefault. Loading DICOM files is faster when
* private tags are not needed.
* \warning this is a GDCM 1.x only option, no effect on GDCM 2.x
*/
itkSetMacro(LoadPrivateTags, bool);
itkGetConstMacro(LoadPrivateTags, bool);
itkBooleanMacro(LoadPrivateTags);
/** Global method to define the default value for
* LoadSequences. When instances of GDCMImageIO are created, the
* ivar LoadSequences is initialized to the value of
* LoadSequencesDefault. This method is useful when relying on the
* IO factory mechanism to load images rather than specifying a
* particular ImageIO object on the readers. Default is false.
* \warning this is a GDCM 1.x only option, no effect on GDCM 2.x
*/
static void SetLoadSequencesDefault(bool b)
{ m_LoadSequencesDefault = b; }
static void LoadSequencesDefaultOn()
{ m_LoadSequencesDefault = true; }
static void LoadSequencesDefaultOff()
{ m_LoadSequencesDefault = false; }
static bool GetLoadSequencesDefault()
{ return m_LoadSequencesDefault; }
/** Global method to define the default value for
* LoadPrivateTags. When instances of GDCMImageIO are created, the
* ivar LoadPrivateTags is initialized to the value of
* LoadPrivateTagsDefault. This method is useful when relying on the
* IO factory mechanism to load images rather than specifying a
* particular ImageIO object on the readers. Default is false.
* \warning this is a GDCM 1.x only option, no effect on GDCM 2.x
*/
static void SetLoadPrivateTagsDefault(bool b)
{ m_LoadPrivateTagsDefault = b; }
static void LoadPrivateTagsDefaultOn()
{ m_LoadPrivateTagsDefault = true; }
static void LoadPrivateTagsDefaultOff()
{ m_LoadPrivateTagsDefault = false; }
static bool GetLoadPrivateTagsDefault()
{ return m_LoadPrivateTagsDefault; }
/** Set/Get a boolean to use the JPEG2000 compression or not. */
typedef enum { JPEG = 0, JPEG2000 } TCompressionType;
itkSetEnumMacro(CompressionType,TCompressionType);
itkGetEnumMacro(CompressionType,TCompressionType);
protected:
GDCMImageIO();
~GDCMImageIO();
void PrintSelf(std::ostream& os, Indent indent) const;
bool OpenGDCMFileForReading(std::ifstream& os, const char* filename);
bool OpenGDCMFileForWriting(std::ofstream& os, const char* filename);
void InternalReadImageInformation(std::ifstream& file);
double m_RescaleSlope;
double m_RescaleIntercept;
std::string m_UIDPrefix;
std::string m_StudyInstanceUID;
std::string m_SeriesInstanceUID;
std::string m_FrameOfReferenceInstanceUID;
bool m_KeepOriginalUID;
long m_MaxSizeLoadEntry;
private:
GDCMImageIO(const Self&); //purposely not implemented
void operator=(const Self&); //purposely not implemented
std::string m_PatientName;
std::string m_PatientID;
std::string m_PatientDOB;
std::string m_StudyID;
std::string m_StudyDescription;
std::string m_BodyPart;
std::string m_NumberOfSeriesInStudy;
std::string m_NumberOfStudyRelatedSeries;
std::string m_PatientSex;
std::string m_PatientAge;
std::string m_StudyDate;
std::string m_Modality;
std::string m_Manufacturer;
std::string m_Institution;
std::string m_Model;
std::string m_ScanOptions;
bool m_LoadSequences;
bool m_LoadPrivateTags;
static bool m_LoadSequencesDefault;
static bool m_LoadPrivateTagsDefault;
/** defines whether this image is a 2D out of a 2D image
* or a 2D out of a 3D image. */
unsigned int m_GlobalNumberOfDimensions;
TCompressionType m_CompressionType;
ImageIOBase::IOComponentType m_InternalComponentType;
InternalHeader * m_DICOMHeader;
};
} // end namespace itk
#endif // __itkGDCMImageIO_h
|