/usr/include/vtkDICOMGenerator.h is in libvtk-dicom-dev 0.7.10-1+b2.
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 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 | /*=========================================================================
Program: DICOM for VTK
Copyright (c) 2012-2015 David Gobbi
All rights reserved.
See Copyright.txt or http://dgobbi.github.io/bsd3.txt 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 notice for more information.
=========================================================================*/
#ifndef vtkDICOMGenerator_h
#define vtkDICOMGenerator_h
#include <vtkObject.h>
#include <vtkStdString.h> // For std::string
#include "vtkDICOMModule.h" // For export macro
#include "vtkDICOMTag.h" // For method parameter
class vtkIntArray;
class vtkMatrix4x4;
class vtkInformation;
class vtkStringArray;
class vtkDICOMMetaData;
class vtkDICOMItem;
class vtkDICOMUIDGenerator;
//! Generate DICOM data series for specific IOD classes.
/*!
* Every DICOM data set must conform to a specific class, where the
* properties of all the classes are defined in the DICOM standard.
* There are specific IOD classes for MR, CT, ultrasound X-ray, etc., in
* fact there are several dozen classes in total. IOD is the acronym
* for Information Object Description, and refers to the attributes that
* a data set belonging to a particular IOD class can or must have. The
* vtkDICOMGenerator is an abstract base class that provides support
* for most of the common modules in the DICOM standard (i.e. modules
* that are shared between modalities). Subclasses of vtkDICOMGenerator
* are concrete classes that provide generation of data sets belonging
* to specific modalities.
*/
class VTKDICOM_EXPORT vtkDICOMGenerator : public vtkObject
{
public:
//! Static method for construction.
vtkTypeMacro(vtkDICOMGenerator, vtkObject);
//! Print information about this object.
virtual void PrintSelf(ostream& os, vtkIndent indent);
//@{
//! Generate an instance of one of the supported classes.
/*!
* This is the primary interface method of this class. Given the
* information for a vtkImageData object, it will populate the
* attributes of the supplied vtkDICOMMetaData object.
*/
virtual bool GenerateInstance(vtkInformation *) = 0;
//@}
//@{
//! Get the generated meta data.
/*!
* Every time GenerateInstance() is called, it will generate a
* new meta data object that can be retrieved with this method.
*/
vtkDICOMMetaData *GetMetaData();
//@}
//@{
//! Create a multi-frame object (default: Off).
/*!
* If this is on, the one multi-frame data set will be created. If
* this is off, then each slice will be put into a different data set.
* The latter is more likely to be compatible with older software.
*/
vtkSetMacro(MultiFrame, int);
vtkBooleanMacro(MultiFrame, int);
vtkGetMacro(MultiFrame, int);
//@}
//@{
//! Write scalar components as the time dimension (default: Off).
/*!
* If this is on, then each time slot is stored in a different scalar
* component of the image data. If it is off, then each block of N
* adjacent slices correspond to the N time slots of the time dimension.
*/
vtkSetMacro(TimeAsVector, int);
vtkBooleanMacro(TimeAsVector, int);
vtkGetMacro(TimeAsVector, int);
//@}
//@{
//! Set the time dimension to use in the DICOM file (or zero if none).
/*!
* The number of components of the input data must be divisible by the
* time dimension if the time dimension is not set to zero. The vector
* dimension will be set to the number of components divided by the time
* dimension. This will be ignored if the SOP Class IOD does not permit
* a time dimension.
*/
vtkSetMacro(TimeDimension, int);
vtkGetMacro(TimeDimension, int);
vtkSetMacro(TimeSpacing, double);
vtkGetMacro(TimeSpacing, double);
//@}
//@{
//! Set the rescaling parameters, for example for CT.
/*!
* CT, PET, and some other modalities require rescaling parameters
* so that the integer pixel values can be converted into physical
* units.
*/
vtkSetMacro(RescaleIntercept, double);
vtkGetMacro(RescaleIntercept, double);
vtkSetMacro(RescaleSlope, double);
vtkGetMacro(RescaleSlope, double);
//@}
//@{
//! Set the matrix that places the image in DICOM patient coords.
/*!
* The 3x3 portion of the matrix must be orthonormal, and the
* last column of the matrix is understood to be in millimetres.
*/
void SetPatientMatrix(vtkMatrix4x4 *);
vtkMatrix4x4 *GetPatientMatrix() { return this->PatientMatrix; }
//@}
//@{
//! Let the generator know how the image is arranged in memory.
/*!
* The generator needs to know how to interpret the geometry of
* the image that is described in the vtkInformation object that
* accompanies the image. For example, VTK display coordinates
* place the Origin at the lower left corner of the screen, while
* DICOM assumes that images will be displayed with the "origin"
* at the top left corner. By default, OriginAtBottom is On.
*/
vtkSetMacro(OriginAtBottom, int);
vtkGetMacro(OriginAtBottom, int);
//@}
//@{
//! Let the generator know how to order the slices.
/*!
* By default, the generator will try to keep the same slice order
* as the meta data set by SetSourceMetaData(), but if no ordering can be
* discerned from the meta data, then the slices will be ordered
* according to this flag.
*/
vtkSetMacro(ReverseSliceOrder, int);
vtkGetMacro(ReverseSliceOrder, int);
//@}
//@{
//! Set some meta data for the constructor to use as a source.
/*!
* The supplied meta data can provide some general properties
* of the data set, such as the patient information and study
* information. Only portions of the meta data that are permitted
* by the generated IOD will be included.
*/
void SetSourceMetaData(vtkDICOMMetaData *);
vtkDICOMMetaData *GetSourceMetaData();
//@}
//@{
//! Set the UID generator, for generating unique IDs.
/*!
* If no UID generator is supplied, then the default UID generator
* will be used.
*/
void SetUIDGenerator(vtkDICOMUIDGenerator *);
vtkDICOMUIDGenerator *GetUIDGenerator();
//@}
//@{
//! Get an array that maps file and frame to slice.
/*!
* Once the generator has created the metadata, this array lets the
* writer know which slice to write out as which frame in which file.
* This will be a 2D array, with the file as the first index and the
* frame as the second index.
*/
vtkIntArray *GetSliceIndexArray() { return this->SliceIndexArray; }
//! Get an array that maps file and frame to component.
/*!
* Once the generator has created the metadata, this array lets the
* writer know which component to write out as which frame in which file.
* This will be a 2D array, with the file as the first index and the
* frame as the second index.
*/
vtkIntArray *GetComponentIndexArray() { return this->ComponentIndexArray; }
//@}
protected:
//! Enumerated values for restricting pixel values.
enum {
RepresentationUnsigned = 1u,
RepresentationSigned = 2u,
BitsStored1 = 1u,
BitsStored6 = (1u << 5),
BitsStored8 = (1u << 7),
BitsStored10 = (1u << 9),
BitsStored12 = (1u << 11),
BitsStored16 = (1u << 15),
BitsStored32 = (1u << 31)
};
//@{
//! Protected constructor method.
vtkDICOMGenerator();
~vtkDICOMGenerator();
//@}
//@{
//! Generate a UID for the provided tag.
/*
* The generator uses the tag as a hint when generating the UIDs,
* for example the SOPInstanceUID might have a different format from
* the FrameOfReferenceUID.
*/
std::string GenerateUID(vtkDICOMTag tag);
//! Generate a series of UIDs, sorted from low to high.
/*!
* Before passing the string array, call SetNumberOfValues() on
* the array to specify the number of UIDs that you want to be
* stored in it. The stored UIDs will be sorted, low to high.
* Generating a batch of UIDs is more efficient than calling
* GenerateUID() repeatedly.
*/
void GenerateUIDs(vtkDICOMTag tag, vtkStringArray *uids);
//@}
//@{
//! Used by subclasses to place restrictions on the pixel type.
void SetPixelRestrictions(
unsigned int pixelRepresentation, unsigned int bitsStored,
int colorComponents);
//@}
//@{
//! Generate the DICOM SOP Common Module.
virtual bool GenerateSOPCommonModule(
vtkDICOMMetaData *meta, const char *SOPClass);
//! Generate the DICOM Patient Module.
virtual bool GeneratePatientModule(vtkDICOMMetaData *source);
//! Generate the DICOM Clinical Trial Subject Module.
virtual bool GenerateClinicalTrialSubjectModule(vtkDICOMMetaData *source);
//! Generate the DICOM General Study Module.
virtual bool GenerateGeneralStudyModule(vtkDICOMMetaData *source);
//! Generate the DICOM Patient Study Module.
virtual bool GeneratePatientStudyModule(vtkDICOMMetaData *source);
//! Generate the DICOM Clinical Trial Study Module.
virtual bool GenerateClinicalTrialStudyModule(vtkDICOMMetaData *source);
//! Generate the DICOM Series Module.
virtual bool GenerateGeneralSeriesModule(vtkDICOMMetaData *source);
//! Generate the DICOM Clinical Trial Series Module.
virtual bool GenerateClinicalTrialSeriesModule(vtkDICOMMetaData *source);
//! Generate the DICOM Frame of Reference Module.
virtual bool GenerateFrameOfReferenceModule(vtkDICOMMetaData *source);
//! Generate the DICOM Equipment Module.
virtual bool GenerateGeneralEquipmentModule(vtkDICOMMetaData *source);
//! Generate the DICOM Image Module.
virtual bool GenerateGeneralImageModule(vtkDICOMMetaData *source);
//! Generate the DICOM Plane Module.
virtual bool GenerateImagePlaneModule(vtkDICOMMetaData *source);
//! Generate the DICOM Pixel Module.
virtual bool GenerateImagePixelModule(vtkDICOMMetaData *source);
//! Generate The DICOM Contrast/Bolus Module.
virtual bool GenerateContrastBolusModule(vtkDICOMMetaData *source);
//! Generate The DICOM Multi-frame Module.
virtual bool GenerateMultiFrameModule(vtkDICOMMetaData *source);
//! Generate The DICOM Device Module.
virtual bool GenerateDeviceModule(vtkDICOMMetaData *source);
//! Generate The DICOM Specimen Module.
virtual bool GenerateSpecimenModule(vtkDICOMMetaData *source);
//! Generate the DICOM Overlay Plane Module.
virtual bool GenerateOverlayPlaneModule(vtkDICOMMetaData *source);
//! Generate the DICOM VOI LUT Module.
virtual bool GenerateVOILUTModule(vtkDICOMMetaData *source);
//@}
//@{
//! Copy required attributes into the meta data.
/*!
* Required attributes must be set, so if no value is available,
* then an empty zero-length attribute will be created for them.
* The list of tags must be terminated with DC::ItemDelimitationItem.
*/
virtual bool CopyRequiredAttributes(
const DC::EnumType *tags, vtkDICOMMetaData *source);
//! Copy optional attributes into the meta data.
/*!
* The list of tags must be terminated with DC::ItemDelimitationItem.
*/
virtual bool CopyOptionalAttributes(
const DC::EnumType *tags, vtkDICOMMetaData *source);
//@}
//! Compute aspect ratio from spacing.
static void ComputeAspectRatio(const double spacing[2], int aspect[2]);
//@{
//! Compute the matrix, needed for Position and Orientation.
void ComputeAdjustedMatrix(
double matrix[16], double origin[3], double spacing[3]);
//@}
//! Compute the position and orientation for a slice.
/*!
* Given the origin of a slice (the position of the corner of the slice
* in VTK data coordinates), and a 4x4 matrix (which may be NULL), compute
* the ImagePositionPatient and the ImageOrientationPatient.
*/
static void ComputePositionAndOrientation(
const double origin[3], const double matrix[16],
double position[3], double orientation[6]);
//@{
//! Compute the dimensions.
/*!
* This will compute the dimensions of the data, given the information
* supplied by the reader.
*/
virtual void ComputeDimensions(
vtkInformation *info, int *nframes, int dims[5],
double spacing[5], double origin[5]);
//! Compute the range of the data.
/*!
* If the image data is present, compute the range of all frames as
* well as a suitable window/level for each frame.
*/
virtual void ComputePixelValueRange(
vtkInformation *info, int seriesRange[2]);
//@}
//@{
//! Attempt to match each slice to a source meta data slice.
virtual void MatchInstances(vtkDICOMMetaData *source);
//@}
//@{
//! Initialize the meta data and compute the slice index array.
/*!
* This must be done before any of the meta data has been generated.
* It creates a mapping between the files and frames that will be written,
* and the slices that make up the image data.
*/
virtual void InitializeMetaData(vtkInformation *info);
//@}
//! The generated meta data
vtkDICOMMetaData *MetaData;
//! The source meta data.
vtkDICOMMetaData *SourceMetaData;
//! The UID generator.
vtkDICOMUIDGenerator *UIDGenerator;
//! Whether to prefer multi-frame files over single-frame.
int MultiFrame;
//! Whether VTK image data is not top-to-bottom yet.
int OriginAtBottom;
//! Whether to reverse the slices as compared to input data.
int ReverseSliceOrder;
//! Whether time is stored in slices or in scalar components.
int TimeAsVector;
//! Time dimension suggested by the writer.
int TimeDimension;
double TimeSpacing;
//! Data rescaling parameters.
double RescaleIntercept;
double RescaleSlope;
//! The VTK scalar type of the data, set by InitializeMetaData().
int ScalarType;
//! The number of color components, for color scalars.
/*!
* Scalars of type "unsigned char" are interpreted as colors by VTK
* unless there is some indication that they should be interpreted
* otherwise. VTK color scalars come in these flavors: grayscale,
* greyscale+alpha, RGB, and RGBA. DICOM supports grayscale and
* RGB, so alpha will be discarded when VTK images are written as
* DICOM. So if NumberOfColorComponents is 2, then only the first
* component will be written to the file, and if NumberOfColorComponents
* is 4, then only the first three components will be written.
*/
int NumberOfColorComponents;
//! The permitted pixel representation and bits stored, as bitfields.
unsigned int AllowedPixelRepresentation;
unsigned int AllowedBitsStored;
//! The number of frames.
/*!
* If this is nonzero, then the DICOM file will be a multi-frame
* file, overriding the MultiFrame variable. Some SOP classes are
* exclusively multi-frame while others are not. The value of this
* variable is computed InitializeMetaData().
*/
int NumberOfFrames;
//! The actual dimensions to write to the file.
/*!
* The ordering of the dimensions is x,y,z,t followed by a vector
* dimension that encompasses everything else. These are set by
* the InitializeMetaData() method. The dimension is set to zero
* for any dimensions that are not used.
*/
int Dimensions[5];
double Spacing[5];
double Origin[5];
//! The smallest and largest pixel values in the image data.
/*!
* This is computed in the InitializeMetaData method.
*/
int PixelValueRange[2];
//! The orientation matrix for the DICOM file.
vtkMatrix4x4 *PatientMatrix;
//! The file-and-frame to slice-and-component maps.
vtkIntArray *SliceIndexArray;
vtkIntArray *ComponentIndexArray;
//! Map from output files to input files.
vtkIntArray *SourceInstanceArray;
//! Map from frame to image min/max.
vtkIntArray *RangeArray;
private:
vtkDICOMGenerator(const vtkDICOMGenerator&) VTK_DELETE_FUNCTION;
void operator=(const vtkDICOMGenerator&) VTK_DELETE_FUNCTION;
};
#endif // vtkDICOMGenerator_h
|