Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
mitkRTDoseReader.h
Go to the documentation of this file.
1 /*===================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center,
6 Division of Medical and Biological Informatics.
7 All rights reserved.
8 
9 This software is distributed WITHOUT ANY WARRANTY; without
10 even the implied warranty of MERCHANTABILITY or FITNESS FOR
11 A PARTICULAR PURPOSE.
12 
13 See LICENSE.txt or http://www.mitk.org for details.
14 
15 ===================================================================*/
16 
17 
18 #ifndef mitkDicomRTReader_h
19 #define mitkDicomRTReader_h
20 
21 #include <mitkAbstractFileReader.h>
22 
23 #include <mitkImage.h>
25 #include <MitkDicomRTExports.h>
26 
27 namespace mitk
28 {
33  {
34 
35  public:
36 
37  RTDoseReader(const RTDoseReader& other);
38  RTDoseReader();
39 
52  //mitk::DataNode::Pointer LoadRTDose(const char* filename);
53 
54  virtual ~RTDoseReader();
55 
57  virtual std::vector<itk::SmartPointer<BaseData> > Read() override;
58 
59  private:
60  RTDoseReader* Clone() const override;
66  template<typename TPixel, unsigned int VImageDimension>
67  void MultiplyGridScaling(itk::Image< TPixel, VImageDimension>* image, float gridscale);
68 
69  mitk::IDICOMTagsOfInterest* GetDicomTagsOfInterestService();
70 
71  mitk::Image::Pointer scaledDoseImage;
73  };
74 
75 }
76 
77 #endif
Pointer Clone() const
RTDoseReader reads DICOM files of modality RTDOSE.
DataCollection - Class to facilitate loading/accessing structured data.
virtual std::vector< itk::SmartPointer< BaseData > > Read() override=0
Reads a path or stream and creates a list of BaseData objects.
Interface of DICOM tags of interest service.
#define MITKDICOMRT_EXPORT
Base class for creating mitk::BaseData objects from files or streams.