RTK  2.5.0
Reconstruction Toolkit
rtkVectorImageToImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright RTK Consortium
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * https://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  *=========================================================================*/
18 #ifndef rtkVectorImageToImageFilter_h
19 #define rtkVectorImageToImageFilter_h
20 
21 #include "rtkMacro.h"
22 
23 #include <itkImageToImageFilter.h>
25 
26 namespace rtk
27 {
46 template <typename InputImageType, typename OutputImageType>
47 class ITK_TEMPLATE_EXPORT VectorImageToImageFilter : public itk::ImageToImageFilter<InputImageType, OutputImageType>
48 {
49 public:
50  ITK_DISALLOW_COPY_AND_MOVE(VectorImageToImageFilter);
51 
56 
57  using OutputImageRegionType = typename OutputImageType::RegionType;
58 
60  itkNewMacro(Self);
61 
63 #ifdef itkOverrideGetNameOfClassMacro
64  itkOverrideGetNameOfClassMacro(VectorImageToImageFilter);
65 #else
67 #endif
68 
69 
70 protected:
72  ~VectorImageToImageFilter() override = default;
73 
74  void
75  GenerateOutputInformation() override;
76  void
77  GenerateInputRequestedRegion() override;
78 
80  void
81  ThreadedGenerateData(const OutputImageRegionType & outputRegionForThread,
82  itk::ThreadIdType itkNotUsed(threadId)) override;
83 
86  GetImageRegionSplitter() const override;
88 };
89 } // namespace rtk
90 
91 
92 #ifndef ITK_MANUAL_INSTANTIATION
93 # include "rtkVectorImageToImageFilter.hxx"
94 #endif
95 
96 #endif
itk::ImageRegionSplitterDirection::Pointer m_Splitter
typename OutputImageType::RegionType OutputImageRegionType
Re-writes a vector image as an image.
unsigned int ThreadIdType