/usr/include/ITK-4.5/itkGDCMImageIO.h is in libinsighttoolkit4-dev 4.5.0-3.
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 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 | /*=========================================================================
*
* Copyright Insight Software Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
/*=========================================================================
*
* Portions of this file are subject to the VTK Toolkit Version 3 copyright.
*
* Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
*
* For complete copyright, license and disclaimer of warranty information
* please refer to the NOTICE file at the top of the ITK source tree.
*
*=========================================================================*/
#ifndef __itkGDCMImageIO_h
#define __itkGDCMImageIO_h
#define ITKIO_DEPRECATED_GDCM1_API
#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://www.creatis.insa-lyon.fr/software/public/Gdcm/
*
* CREATIS INSA - Lyon 2003-2008
* http://www.creatis.insa-lyon.fr/site/en
*
* 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 developed on sourceforge.net :
*
* http://gdcm.sourceforge.net
*
* Documentation:
* -
*
* http://sourceforge.net/apps/mediawiki/gdcm/index.php?title=ITK_USE_SYSTEM_GDCM
* -
*
* http://sourceforge.net/apps/mediawiki/gdcm/index.php?title=GDCM_Release_2.0
*
* \warning There are several restrictions to this current writer:
* - Even though 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
*
* \ingroup ITKIOGDCM
*
* \wiki
* \wikiexample{DICOM/ResampleDICOM,Resample a DICOM series}
* \endwiki
*/
class InternalHeader;
class 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 dimensions 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);
/** Parse and load any private tags in the DICOM file. Loading DICOM
* files is faster when private tags are not needed. Default is false.
*/
itkSetMacro(LoadPrivateTags, bool);
itkGetConstMacro(LoadPrivateTags, bool);
itkBooleanMacro(LoadPrivateTags);
#if defined( ITKIO_DEPRECATED_GDCM1_API )
/** 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);
#endif
/** More general method to retrieve an arbitrary DICOM value based
* on a DICOM Tag (eg "0123|45ef").
*/
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);
#if defined( ITKIO_DEPRECATED_GDCM1_API )
/** 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
*/
virtual void SetMaxSizeLoadEntry( const 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
*/
virtual void SetLoadSequences( const bool ) {}
virtual bool GetLoadSequences () const { return true; }
virtual void LoadSequencesOn () {}
virtual void LoadSequencesOff () {}
/** 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) {}
static void LoadSequencesDefaultOn() {}
static void LoadSequencesDefaultOff() {}
static bool GetLoadSequencesDefault() { return true; }
/** 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) {}
static void LoadPrivateTagsDefaultOn() {}
static void LoadPrivateTagsDefaultOff() {}
static bool GetLoadPrivateTagsDefault() { return true; }
#endif
/** Set/Get a compression type to use. */
typedef enum { JPEG = 0, JPEG2000, JPEGLS, RLE } 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;
bool m_LoadPrivateTags;
private:
GDCMImageIO(const Self &); //purposely not implemented
void operator=(const Self &); //purposely not implemented
#if defined( ITKIO_DEPRECATED_GDCM1_API )
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;
#endif
/** 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
|