RTK  2.5.0
Reconstruction Toolkit
rtkElektaSynergyRawLookupTableImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright RTK 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  * 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 
19 #ifndef rtkElektaSynergyRawLookupTableImageFilter_h
20 #define rtkElektaSynergyRawLookupTableImageFilter_h
21 
23 #include <itkNumericTraits.h>
24 
25 namespace rtk
26 {
27 
41 template <class TInputImage = itk::Image<unsigned short, 2>, class TOutputImage = itk::Image<unsigned short, 2>>
42 class ITK_TEMPLATE_EXPORT ElektaSynergyRawLookupTableImageFilter
43  : public LookupTableImageFilter<TInputImage, TOutputImage>
44 {
45 
46 public:
47  ITK_DISALLOW_COPY_AND_MOVE(ElektaSynergyRawLookupTableImageFilter);
48 
54 
55  using InputImagePixelType = typename TInputImage::PixelType;
56  using OutputImagePixelType = typename TOutputImage::PixelType;
57  using LookupTableType = typename Superclass::FunctorType::LookupTableType;
58 
60  itkNewMacro(Self);
61 
63 #ifdef itkOverrideGetNameOfClassMacro
64  itkOverrideGetNameOfClassMacro(ElektaSynergyRawLookupTableImageFilter);
65 #else
67 #endif
68 
69 
70 #ifdef ITK_USE_CONCEPT_CHECKING
71  // Begin concept checking
73 #endif
74 
75 protected:
77  ~ElektaSynergyRawLookupTableImageFilter() override = default;
78 };
79 
80 } // end namespace rtk
81 
82 #ifndef ITK_MANUAL_INSTANTIATION
83 # include "rtkElektaSynergyRawLookupTableImageFilter.hxx"
84 #endif
85 
86 #endif
First part of ElektaSynergyLookupTableImageFilter.
Function to do the lookup operation.
typename OutputImageType::PixelType OutputImagePixelType
typename InputImageType::PixelType InputImagePixelType
typename Superclass::FunctorType::LookupTableType LookupTableType
#define itkConceptMacro(name, concept)