ITK  5.0.0
Insight Segmentation and Registration Toolkit
itkShiftScaleLabelMapFilter.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 itkShiftScaleLabelMapFilter_h
19 #define itkShiftScaleLabelMapFilter_h
20 
22 
23 namespace itk
24 {
42 template< typename TImage >
43 class ITK_TEMPLATE_EXPORT ShiftScaleLabelMapFilter:
44  public InPlaceLabelMapFilter< TImage >
45 {
46 public:
47  ITK_DISALLOW_COPY_AND_ASSIGN(ShiftScaleLabelMapFilter);
48 
54 
56  using ImageType = TImage;
57  using ImagePointer = typename ImageType::Pointer;
58  using ImageConstPointer = typename ImageType::ConstPointer;
59  using PixelType = typename ImageType::PixelType;
60  using IndexType = typename ImageType::IndexType;
61  using LabelObjectType = typename ImageType::LabelObjectType;
62 
64  static constexpr unsigned int ImageDimension = TImage::ImageDimension;
65 
67  itkNewMacro(Self);
68 
71 
72 #ifdef ITK_USE_CONCEPT_CHECKING
73  // Begin concept checking
74 /* itkConceptMacro(InputEqualityComparableCheck,
75  (Concept::EqualityComparable<InputImagePixelType>));
76  itkConceptMacro(IntConvertibleToInputCheck,
77  (Concept::Convertible<int, InputImagePixelType>));
78  itkConceptMacro(InputOStreamWritableCheck,
79  (Concept::OStreamWritable<InputImagePixelType>));*/
80 // End concept checking
81 #endif
82 
83  itkSetMacro(Shift, double);
84  itkGetConstReferenceMacro(Shift, double);
85 
86  itkSetMacro(Scale, double);
87  itkGetConstReferenceMacro(Scale, double);
88 
89  itkSetMacro(ChangeBackgroundValue, bool);
90  itkGetConstMacro(ChangeBackgroundValue, bool);
91  itkBooleanMacro(ChangeBackgroundValue);
92 
93 protected:
95  ~ShiftScaleLabelMapFilter() override = default;
96 
97  void GenerateData() override;
98 
99  void PrintSelf(std::ostream & os, Indent indent) const override;
100 
101  double m_Shift;
102  double m_Scale;
103 
105 }; // end of class
106 } // end namespace itk
107 
108 #ifndef ITK_MANUAL_INSTANTIATION
109 #include "itkShiftScaleLabelMapFilter.hxx"
110 #endif
111 
112 #endif
Light weight base class for most itk classes.
typename ImageType::PixelType PixelType
Base class for filters that takes an image as input and overwrites that image as the output...
typename ImageType::ConstPointer ImageConstPointer
typename ImageType::IndexType IndexType
Control indentation during Print() invocation.
Definition: itkIndent.h:49
typename ImageType::Pointer ImagePointer
Shifts and scales a label map filter, giving the option to change the background value.
typename ImageType::LabelObjectType LabelObjectType