ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkJoinImageFilter.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 itkJoinImageFilter_h
19#define itkJoinImageFilter_h
20
22#include "itkPixelTraits.h"
23
24namespace itk
25{
26namespace Functor
27{
47template <typename TPixel1, typename TPixel2>
49{
50public:
53
58
60 static constexpr unsigned int Dimension1 = PixelTraits<TPixel1>::Dimension;
61 static constexpr unsigned int Dimension2 = PixelTraits<TPixel2>::Dimension;
62 static constexpr unsigned int JoinDimension = Dimension1 + Dimension2;
63
66
67 bool
68 operator==(const JoinFunctor &) const
69 {
70 return true;
71 }
72
74
76 inline JoinType
77 operator()(const TPixel1 & A, const TPixel2 & B) const
78 {
79 JoinType out;
80
81 // Copy A into the output, casting as necessary
82 this->FirstCopier(out, 0, A);
83
84 // Copy B into the output, starting where A left off,casting as necessary
85 this->SecondCopier(out, Dimension1, B);
86
87 return out;
88 }
89
90private:
98 {};
99 template <unsigned int VDimension>
101 {};
102
113 void
114 FirstCopier(JoinType & out, unsigned int idx, const TPixel1 & A) const
115 {
116 FirstCopier(CopierDispatch<Dimension1>(), out, idx, A);
117 }
118
120 void
121 FirstCopier(CopierDispatchBase, JoinType & out, unsigned int idx, const TPixel1 & A) const
122 {
123 for (unsigned int i = 0; i < Dimension1; i++, idx++)
124 {
125 out[idx] = static_cast<JoinValueType>(A[i]);
126 }
127 }
128
130 void
131 FirstCopier(CopierDispatch<1>, JoinType & out, unsigned int idx, const TPixel1 & A) const
132 {
133 out[idx] = static_cast<JoinValueType>(A);
134 }
135
141 void
142 SecondCopier(JoinType & out, unsigned int idx, const TPixel2 & B) const
143 {
144 SecondCopier(CopierDispatch<Dimension2>(), out, idx, B);
145 }
146
148 void
149 SecondCopier(CopierDispatchBase, JoinType & out, unsigned int idx, const TPixel2 & B) const
150 {
151 for (unsigned int i = 0; i < Dimension2; i++, idx++)
152 {
153 out[idx] = static_cast<JoinValueType>(B[i]);
154 }
155 }
156
158 void
159 SecondCopier(CopierDispatch<1>, JoinType & out, unsigned int idx, const TPixel2 & B) const
160 {
161 out[idx] = static_cast<JoinValueType>(B);
162 }
163
164}; // class JoinFunction
165
166template <typename TImage1, typename TImage2>
172} // namespace Functor
173
204template <typename TInputImage1, typename TInputImage2>
206 : public BinaryGeneratorImageFilter<TInputImage1,
207 TInputImage2,
208 typename Functor::MakeJoin<TInputImage1, TInputImage2>::ImageType>
209{
210public:
211 ITK_DISALLOW_COPY_AND_MOVE(JoinImageFilter);
212
214 static constexpr unsigned int OutputImageDimension = TInputImage1::ImageDimension;
215
218
222 using OutputImagePixelType = typename FunctorType::JoinType;
223
226
229
231 itkNewMacro(Self);
232
234 itkOverrideGetNameOfClassMacro(JoinImageFilter);
235
238 itkConceptMacro(Input1Input2HasJoinTraitsCheck,
241
242protected:
244 ~JoinImageFilter() override = default;
245};
246} // end namespace itk
247
248#endif
Join the components of two pixel types into a single pixel type.
typename PixelTraits< TPixel2 >::ValueType ValueType2
void FirstCopier(CopierDispatch< 1 >, JoinType &out, unsigned int idx, const TPixel1 &A) const
Vector< JoinValueType, Self::JoinDimension > JoinType
void SecondCopier(CopierDispatch< 1 >, JoinType &out, unsigned int idx, const TPixel2 &B) const
JoinType operator()(const TPixel1 &A, const TPixel2 &B) const
void FirstCopier(JoinType &out, unsigned int idx, const TPixel1 &A) const
bool operator==(const JoinFunctor &) const
void SecondCopier(JoinType &out, unsigned int idx, const TPixel2 &B) const
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(JoinFunctor)
void SecondCopier(CopierDispatchBase, JoinType &out, unsigned int idx, const TPixel2 &B) const
typename JoinTraits< ValueType1, ValueType2 >::ValueType JoinValueType
typename PixelTraits< TPixel1 >::ValueType ValueType1
void FirstCopier(CopierDispatchBase, JoinType &out, unsigned int idx, const TPixel1 &A) const
Templated n-dimensional image class.
Definition itkImage.h:89
static constexpr unsigned int OutputImageDimension
typename Functor::MakeJoin< TInputImage1, TInputImage2 >::FunctorType FunctorType
BinaryGeneratorImageFilter< TInputImage1, TInputImage2, OutputImageType > Superclass
~JoinImageFilter() override=default
SmartPointer< Self > Pointer
typename Functor::MakeJoin< TInputImage1, TInputImage2 >::ImageType OutputImageType
SmartPointer< const Self > ConstPointer
typename FunctorType::JoinType OutputImagePixelType
typename TPixelType::ValueType ValueType
static constexpr unsigned int Dimension
Implements transparent reference counting.
A templated class holding a n-Dimensional vector.
Definition itkVector.h:63
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Image< typename FunctorType::JoinType, TImage1::ImageDimension > ImageType
JoinFunctor< typename TImage1::PixelType, typename TImage2::PixelType > FunctorType