SimpleITK  
sitkVectorIndexSelectionCastImageFilter.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 * 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 sitkVectorIndexSelectionCastImageFilter_h
19 #define sitkVectorIndexSelectionCastImageFilter_h
20 
21 /*
22  * WARNING: DO NOT EDIT THIS FILE!
23  * THIS FILE IS AUTOMATICALLY GENERATED BY THE SIMPLEITK BUILD PROCESS.
24  * Please look at sitkDualImageFilterTemplate.h.in to make changes.
25  */
26 
27 #include <memory>
28 
29 #include "sitkImageFilter.h"
31 #include "sitkBasicFilters.h"
32 
33 namespace itk::simple {
34 
47  public:
49 
52 
56 
59 
60 \
61 
65  SITK_RETURN_SELF_TYPE_HEADER SetIndex ( unsigned int Index ) { this->m_Index = Index; return *this; }
66 
70  unsigned int GetIndex() const { return this->m_Index; }\
71 
75  SITK_RETURN_SELF_TYPE_HEADER SetOutputPixelType ( PixelIDValueEnum OutputPixelType ) { this->m_OutputPixelType = OutputPixelType; return *this; }
76 
80  PixelIDValueEnum GetOutputPixelType() const { return this->m_OutputPixelType; }
81 
83  std::string GetName() const { return std::string ("VectorIndexSelectionCastImageFilter"); }
84 
86  std::string ToString() const;
87 
88 
90 #ifndef SWIG
91  Image Execute ( Image&& image1 );
92 #endif
93  Image Execute ( const Image& image1 );
94 
95 
96  private:
98  using MemberFunctionType = Image (Self::*)( const Image& image1 );
99 
101  template <class TImageType1, class TImageType2> Image DualExecuteInternal ( const Image& image1 );
102 
103 
104  std::unique_ptr<detail::DualMemberFunctionFactory<MemberFunctionType> > m_DualMemberFactory;
105 
106 
107 
108  /* */
109  unsigned int m_Index{0u};
110 
112 
113 
114  bool m_InPlace{false};
115  };
116 
126 #ifndef SWIG
127  SITKBasicFilters_EXPORT Image VectorIndexSelectionCast ( Image&& image1, unsigned int index = 0u, PixelIDValueEnum outputPixelType = itk::simple::sitkUnknown );
128 #endif
129  SITKBasicFilters_EXPORT Image VectorIndexSelectionCast ( const Image& image1, unsigned int index = 0u, PixelIDValueEnum outputPixelType = itk::simple::sitkUnknown );
130 
132 }
133 #endif
itk::simple::Image
The Image class for SimpleITK.
Definition: sitkImage.h:76
sitkBasicFilters.h
itk::simple::VectorIndexSelectionCastImageFilter::SetIndex
Self & SetIndex(unsigned int Index)
Definition: sitkVectorIndexSelectionCastImageFilter.h:65
itk::Index
itk::simple::VectorPixelIDTypeList
typelist2::typelist< VectorPixelID< int8_t >, VectorPixelID< uint8_t >, VectorPixelID< int16_t >, VectorPixelID< uint16_t >, VectorPixelID< int32_t >, VectorPixelID< uint32_t >, VectorPixelID< float >, VectorPixelID< double > > VectorPixelIDTypeList
Definition: sitkPixelIDTypeLists.h:136
itk::simple::VectorIndexSelectionCastImageFilter::SetOutputPixelType
Self & SetOutputPixelType(PixelIDValueEnum OutputPixelType)
Set the output pixel type of the scalar component to extract.
Definition: sitkVectorIndexSelectionCastImageFilter.h:75
itk::simple::VectorIndexSelectionCastImageFilter::GetName
std::string GetName() const
Definition: sitkVectorIndexSelectionCastImageFilter.h:83
itk::simple::PixelIDValueEnum
PixelIDValueEnum
Enumerated values of pixelIDs.
Definition: sitkPixelIDValues.h:91
sitkImageFilter.h
itk::simple::VectorIndexSelectionCastImageFilter::m_DualMemberFactory
std::unique_ptr< detail::DualMemberFunctionFactory< MemberFunctionType > > m_DualMemberFactory
Definition: sitkVectorIndexSelectionCastImageFilter.h:104
sitkDualMemberFunctionFactory.h
itk::simple::VectorIndexSelectionCast
Image VectorIndexSelectionCast(Image &&image1, unsigned int index=0u, PixelIDValueEnum outputPixelType=itk::simple::sitkUnknown)
Extracts the selected index of the vector that is the input pixel type.
SITKBasicFilters_EXPORT
#define SITKBasicFilters_EXPORT
Definition: sitkBasicFilters.h:52
itk::simple::detail::DualExecuteInternalAddressor
Definition: sitkDetail.h:40
itk::simple::VectorIndexSelectionCastImageFilter
Extracts the selected index of the vector that is the input pixel type.
Definition: sitkVectorIndexSelectionCastImageFilter.h:46
itk::simple::VectorIndexSelectionCastImageFilter::PixelIDTypeList
VectorPixelIDTypeList PixelIDTypeList
Definition: sitkVectorIndexSelectionCastImageFilter.h:58
itk::simple::ImageFilter
The base interface for SimpleITK filters that take one input image.
Definition: sitkImageFilter.h:34
itk::simple::VectorIndexSelectionCastImageFilter::MemberFunctionType
Image(Self::*)(const Image &image1) MemberFunctionType
Definition: sitkVectorIndexSelectionCastImageFilter.h:98
itk::Image
Definition: sitkPixelIDTypes.h:26
itk::simple
Definition: sitkAdditionalProcedures.h:28
itk::simple::sitkUnknown
@ sitkUnknown
Definition: sitkPixelIDValues.h:92
itk::simple::VectorIndexSelectionCastImageFilter::GetIndex
unsigned int GetIndex() const
Definition: sitkVectorIndexSelectionCastImageFilter.h:70
itk::simple::VectorIndexSelectionCastImageFilter::GetOutputPixelType
PixelIDValueEnum GetOutputPixelType() const
Get the ouput pixel type.
Definition: sitkVectorIndexSelectionCastImageFilter.h:80