OTB  9.0.0
Orfeo Toolbox
otbMultiplyVectorImageFilter.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES)
3  *
4  * This file is part of S1Tiling remote module for Orfeo Toolbox
5  *
6  * https://www.orfeo-toolbox.org/
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  */
20 
21 #ifndef otbMultiplyVectorImageFilter_h
22 #define otbMultiplyVectorImageFilter_h
24 #include "itkBinaryFunctorImageFilter.h"
25 
26 namespace otb
27 {
28 
53 template <class TInputImage1, class TInputImage2, class TOutputImage>
54 class ITK_EXPORT MultiplyVectorImageFilter :
55  public itk::BinaryFunctorImageFilter<TInputImage1, TInputImage2, TOutputImage,
56  Functor::MultiplyVectorImageFilterFunctor<typename TInputImage1::PixelType,typename TInputImage2::PixelType,typename TOutputImage::PixelType> >
57 {
58 public:
62  using Superclass = itk::BinaryFunctorImageFilter<
63  TInputImage1, TInputImage1,TOutputImage,
65  >;
66  using Pointer = itk::SmartPointer<Self>;
67  using ConstPointer = itk::SmartPointer<const Self>;
69 
71  itkNewMacro(Self);
72 
74  itkTypeMacro(MultiplyVectorImageFilter, SuperClass);
75 
76 protected:
77  MultiplyVectorImageFilter() = default;
78  ~MultiplyVectorImageFilter() override = default;
79 
80 private:
81  MultiplyVectorImageFilter(const Self &) = delete;
82  Self& operator =(const Self&) = delete;
83 };
84 
85 } // end namespace otb
86 
87 #endif
otb
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.
Definition: otbJoinContainer.h:32
otb::MultiplyVectorImageFilter::Superclass
itk::BinaryFunctorImageFilter< TInputImage1, TInputImage1, TOutputImage, Functor::MultiplyVectorImageFilterFunctor< typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TOutputImage::PixelType > > Superclass
Definition: otbMultiplyVectorImageFilter.h:65
otb::MultiplyVectorImageFilter::Pointer
itk::SmartPointer< Self > Pointer
Definition: otbMultiplyVectorImageFilter.h:66
otb::Functor::MultiplyVectorImageFilterFunctor
Definition: otbMultiplyVectorImageFilterFunctor.h:30
otb::MultiplyVectorImageFilter::ConstPointer
itk::SmartPointer< const Self > ConstPointer
Definition: otbMultiplyVectorImageFilter.h:67
otb::MultiplyVectorImageFilter
Definition: otbMultiplyVectorImageFilter.h:54
otbMultiplyVectorImageFilterFunctor.h