ITK  5.0.0
Insight Segmentation and Registration Toolkit
itkTernaryOperatorImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software 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  * http://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 itkTernaryOperatorImageFilter_h
19 #define itkTernaryOperatorImageFilter_h
20 
22 #include "itkLogicOpsFunctors.h"
23 
24 namespace itk
25 {
26 
65 template< typename TMask, typename TImage >
67  public
68  TernaryFunctorImageFilter< TMask, TImage, TImage, TImage,
69  Functor::TernaryOperator< typename TMask::PixelType,
70  typename TImage::PixelType,
71  typename TImage::PixelType,
72  typename TImage::PixelType > >
73 {
74 public:
75  ITK_DISALLOW_COPY_AND_ASSIGN(TernaryOperatorImageFilter);
76 
80  TMask, TImage, TImage, TImage,
81  Functor::TernaryOperator< typename TMask::PixelType,
82  typename TImage::PixelType,
83  typename TImage::PixelType,
84  typename TImage::PixelType > >;
85 
88 
90  itkNewMacro(Self);
91 
93  itkTypeMacro(TernaryOperatorImageFilter,
95 
96 protected:
97  TernaryOperatorImageFilter() = default;
98  ~TernaryOperatorImageFilter() override = default;
99 };
100 } // end namespace itk
101 
102 #endif
Light weight base class for most itk classes.
Implements pixel-wise generic operation of three images.
Return argument 2 if argument 1 is false, and argument 3 otherwise.
Return the value of input 2 if input 1 is false, and that of input 3 otherwise.
~TernaryOperatorImageFilter() override=default