RTK  2.5.0
Reconstruction Toolkit
rtkImageToVectorImageFilter.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 rtkImageToVectorImageFilter_h
19 #define rtkImageToVectorImageFilter_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 ImageToVectorImageFilter : public itk::ImageToImageFilter<InputImageType, OutputImageType>
48 {
49 public:
50  ITK_DISALLOW_COPY_AND_MOVE(ImageToVectorImageFilter);
51 
56 
57  using OutputImageRegionType = typename OutputImageType::RegionType;
58 
60  itkNewMacro(Self);
61 
63 #ifdef itkOverrideGetNameOfClassMacro
64  itkOverrideGetNameOfClassMacro(ImageToVectorImageFilter);
65 #else
67 #endif
68 
69 
73  itkSetMacro(NumberOfChannels, unsigned int);
74  itkGetMacro(NumberOfChannels, unsigned int);
76 
77 protected:
79  ~ImageToVectorImageFilter() override = default;
80 
81  void
82  GenerateOutputInformation() override;
83  void
84  GenerateInputRequestedRegion() override;
85 
87  void
88  ThreadedGenerateData(const OutputImageRegionType & outputRegionForThread,
89  itk::ThreadIdType itkNotUsed(threadId)) override;
90 
93  GetImageRegionSplitter() const override;
95 
96  unsigned int m_NumberOfChannels;
97 };
98 } // namespace rtk
99 
100 
101 #ifndef ITK_MANUAL_INSTANTIATION
102 # include "rtkImageToVectorImageFilter.hxx"
103 #endif
104 
105 #endif
itk::ImageRegionSplitterDirection::Pointer m_Splitter
#define itkSetMacro(name, type)
typename OutputImageType::RegionType OutputImageRegionType
unsigned int ThreadIdType
Re-writes an image as a vector image.