-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathvtkDICOMSCGenerator.h
79 lines (63 loc) · 2.88 KB
/
vtkDICOMSCGenerator.h
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
/*=========================================================================
Program: DICOM for VTK
Copyright (c) 2012-2024 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 vtkDICOMSCGenerator_h
#define vtkDICOMSCGenerator_h
#include "vtkDICOMModule.h" // For export macro
#include "vtkDICOMGenerator.h"
//! Generate DICOM data objects for Secondary Capture images.
/*!
* Generate a DICOM data set belonging to one of the Secondary Capture
* classes. This is for images that were not directly captured by
* medical imaging equipment. For example, a screen capture or a
* digital film scan should be considered to be a secondary capture.
* The specific IOD classes supported are as follows:
* - Secondary Capture, 1.2.840.10008.5.1.4.1.1.7
* - Multi-frame Grayscale Byte SC, 1.2.840.10008.5.1.4.1.1.7.2
* - Multi-frame Grayscale Word SC, 1.2.840.10008.5.1.4.1.1.7.3
* - Multi-frame True Color SC, 1.2.840.10008.5.1.4.1.1.7.4
*/
class VTKDICOM_EXPORT vtkDICOMSCGenerator : public vtkDICOMGenerator
{
public:
//! Static method for construction.
static vtkDICOMSCGenerator *New();
vtkTypeMacro(vtkDICOMSCGenerator, vtkDICOMGenerator);
//! Print information about this object.
void PrintSelf(ostream& os, vtkIndent indent) VTK_DICOM_OVERRIDE;
//! 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.
*/
bool GenerateInstance(vtkInformation *info) VTK_DICOM_OVERRIDE;
protected:
vtkDICOMSCGenerator();
~vtkDICOMSCGenerator() VTK_DICOM_OVERRIDE;
//! Generate the SC Equipment Module.
virtual bool GenerateSCEquipmentModule(vtkDICOMMetaData *source);
//! Generate the SC Image Module.
virtual bool GenerateSCImageModule(vtkDICOMMetaData *source);
//! Generate the SC Multi-Frame Image Module.
virtual bool GenerateSCMultiFrameImageModule(vtkDICOMMetaData *source);
//! Instantiate a DICOM Secondary Capture Image object.
virtual bool GenerateSCInstance(vtkInformation *info);
//! Instantiate a DICOM Secondary Capture Image object.
virtual bool GenerateSCMultiFrameInstance(vtkInformation *info);
private:
#ifdef VTK_DICOM_DELETE
vtkDICOMSCGenerator(const vtkDICOMSCGenerator&) VTK_DICOM_DELETE;
void operator=(const vtkDICOMSCGenerator&) VTK_DICOM_DELETE;
#else
vtkDICOMSCGenerator(const vtkDICOMSCGenerator&) = delete;
void operator=(const vtkDICOMSCGenerator&) = delete;
#endif
};
#endif // vtkDICOMSCGenerator_h