/usr/include/vtkDICOMCTGenerator.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 | /*=========================================================================
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 vtkDICOMCTGenerator_h
#define vtkDICOMCTGenerator_h
#include "vtkDICOMModule.h" // For export macro
#include "vtkDICOMGenerator.h"
//! Generate DICOM data objects for CT images.
/*!
* Generate a DICOM data set belonging to one of the CT SOP classes.
* The assumption is that images have been read into VTK as CT, and
* are being written out as derived images after being processed.
* The specific IOD classes supported are as follows:
* - CT Image, 1.2.840.10008.5.1.4.1.1.2
*/
class VTKDICOM_EXPORT vtkDICOMCTGenerator : public vtkDICOMGenerator
{
public:
//! Static method for construction.
static vtkDICOMCTGenerator *New();
vtkTypeMacro(vtkDICOMCTGenerator, vtkDICOMGenerator);
//! 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 *info);
protected:
vtkDICOMCTGenerator();
~vtkDICOMCTGenerator();
//! Generate the Series Module.
virtual bool GenerateCTSeriesModule(vtkDICOMMetaData *source);
//! Generate the Image Module.
virtual bool GenerateCTImageModule(vtkDICOMMetaData *source);
//! Instantiate a DICOM Secondary Capture Image object.
virtual bool GenerateCTInstance(vtkInformation *info);
private:
vtkDICOMCTGenerator(const vtkDICOMCTGenerator&) VTK_DELETE_FUNCTION;
void operator=(const vtkDICOMCTGenerator&) VTK_DELETE_FUNCTION;
};
#endif // vtkDICOMCTGenerator_h
|