Medical Imaging Interaction Toolkit  2025.12.02
Medical Imaging Interaction Toolkit
mitkTemporalJoinImagesFilter.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 mitkTemporalJoinImagesFilter_h
14 #define mitkTemporalJoinImagesFilter_h
15 
16 
17 #include "mitkImageToImageFilter.h"
18 #include "mitkCommon.h"
19 
20 #include "MitkCoreExports.h"
21 
22 namespace mitk
23 {
30  {
31  public:
33  itkFactorylessNewMacro(TemporalJoinImagesFilter);
34 
35  typedef std::vector<mitk::TimePointType> TimeBoundsVectorType;
36 
37  itkGetConstMacro(FirstMinTimeBound, mitk::TimePointType);
39  itkSetMacro(FirstMinTimeBound, mitk::TimePointType);
40 
41  itkGetConstMacro(MaxTimeBounds, TimeBoundsVectorType);
44 
45  protected:
48 
50 
51  void GenerateOutputInformation() override;
52 
53  void GenerateData() override;
54 
55  private:
56  TimeBoundsVectorType m_MaxTimeBounds;
57  mitk::TimePointType m_FirstMinTimeBound = 0.0;
58  };
59 }
60 
61 
62 #endif
#define MITKCORE_EXPORT
Superclass of all classes having one or more Images as input and generating Images as output.
void GenerateInputRequestedRegion() override
std::vector< mitk::TimePointType > TimeBoundsVectorType
void GenerateOutputInformation() override
void SetMaxTimeBounds(const TimeBoundsVectorType &bounds)
#define mitkClassMacro(className, SuperClassName)
Definition: mitkCommon.h:36
Find image slices visible on a given plane.
mitk::ScalarType TimePointType