Medical Imaging Interaction Toolkit  2018.4.99-389bf124
Medical Imaging Interaction Toolkit
mitkPASlicedVolumeGenerator.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 (DKFZ)
6 All rights reserved.
7 
8 Use of this source code is governed by a 3-clause BSD license that can be
9 found in the LICENSE file.
10 
11 ============================================================================*/
12 
13 #ifndef MITKPHOTOACOUSTICSLICEDVOLUMEGENERATOR_H
14 #define MITKPHOTOACOUSTICSLICEDVOLUMEGENERATOR_H
15 
17 
18 #include <mitkPAComposedVolume.h>
19 #include <mitkPAVolume.h>
20 #include <mitkImage.h>
21 
22 //Includes for smart pointer usage
23 #include "mitkCommon.h"
24 #include "itkLightObject.h"
25 
26 namespace mitk {
27  namespace pa {
28  class MITKPHOTOACOUSTICSLIB_EXPORT SlicedVolumeGenerator : public itk::LightObject
29  {
30  public:
32  mitkNewMacro4Param(Self, int, bool,
33  mitk::pa::Volume::Pointer, bool);
34 
35  mitk::pa::Volume::Pointer GetSlicedFluenceImageFromComposedVolume(
36  mitk::pa::ComposedVolume::Pointer composedVolume);
37 
38  mitk::pa::Volume::Pointer GetSlicedSignalImageFromComposedVolume(
39  mitk::pa::ComposedVolume::Pointer composedVolume);
40 
41  mitk::pa::Volume::Pointer GetSlicedGroundTruthImageFromComposedVolume(
42  mitk::pa::ComposedVolume::Pointer composedVolume);
43 
44  protected:
45  SlicedVolumeGenerator(int centralYSlice, bool precorrect,
46  mitk::pa::Volume::Pointer precorrectionVolume, bool inverse);
47  ~SlicedVolumeGenerator() override;
48 
51  bool m_Inverse;
52  mitk::pa::Volume::Pointer m_PrecorrectionVolume;
53  };
54  }
55 }
56 #endif // MITKPHOTOACOUSTICSLICEDVOLUMEGENERATOR_H
DataCollection - Class to facilitate loading/accessing structured data.
#define mitkNewMacro4Param(classname, typea, typeb, typec, typed)
Definition: mitkCommon.h:111
#define mitkClassMacroItkParent(className, SuperClassName)
Definition: mitkCommon.h:49
mitk::pa::Volume::Pointer m_PrecorrectionVolume
#define MITKPHOTOACOUSTICSLIB_EXPORT