ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkComposeImageFilter.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
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 itkComposeImageFilter_h
19#define itkComposeImageFilter_h
20
22#include "itkVectorImage.h"
24#include <vector>
25
26namespace itk
27{
58template <typename TInputImage,
60class ITK_TEMPLATE_EXPORT ComposeImageFilter : public ImageToImageFilter<TInputImage, TOutputImage>
61{
62public:
63 ITK_DISALLOW_COPY_AND_MOVE(ComposeImageFilter);
64
69 itkNewMacro(Self);
70 itkOverrideGetNameOfClassMacro(ComposeImageFilter);
71
72 static constexpr unsigned int Dimension = TInputImage::ImageDimension;
73
74 using InputImageType = TInputImage;
75 using OutputImageType = TOutputImage;
76 using InputPixelType = typename InputImageType::PixelType;
77 using OutputPixelType = typename OutputImageType::PixelType;
78 using RegionType = typename InputImageType::RegionType;
79
80 void
81 SetInput1(const InputImageType * image1);
82 void
83 SetInput2(const InputImageType * image2);
84 void
85 SetInput3(const InputImageType * image3);
86
87 itkConceptMacro(InputCovertibleToOutputCheck,
89
90protected:
92
93 void
95
96 void
98
99 void
100 DynamicThreadedGenerateData(const RegionType & outputRegionForThread) override;
101
102
103private:
104 // we have to specialize the code for complex, because it provides no operator[]
105 // method
107 using InputIteratorContainerType = std::vector<InputIteratorType>;
108};
109} // namespace itk
110
111#ifndef ITK_MANUAL_INSTANTIATION
112# include "itkComposeImageFilter.hxx"
113#endif
114
115#endif
void DynamicThreadedGenerateData(const RegionType &outputRegionForThread) override
void SetInput3(const InputImageType *image3)
void GenerateOutputInformation() override
typename InputImageType::RegionType RegionType
SmartPointer< const Self > ConstPointer
ImageScanlineConstIterator< InputImageType > InputIteratorType
ImageToImageFilter< TInputImage, TOutputImage > Superclass
static constexpr unsigned int Dimension
SmartPointer< Self > Pointer
void SetInput1(const InputImageType *image1)
std::vector< InputIteratorType > InputIteratorContainerType
void SetInput2(const InputImageType *image2)
typename InputImageType::PixelType InputPixelType
typename OutputImageType::PixelType OutputPixelType
void BeforeThreadedGenerateData() override
A multi-dimensional iterator templated over image type that walks a region of pixels,...
Implements transparent reference counting.
Templated n-dimensional vector image class.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....