ITK  4.13.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:
52 
54  typedef TImage ImageType;
55  typedef typename ImageType::Pointer ImagePointer;
56  typedef typename ImageType::ConstPointer ImageConstPointer;
57  typedef typename ImageType::PixelType PixelType;
58  typedef typename ImageType::IndexType IndexType;
59  typedef typename ImageType::LabelObjectType LabelObjectType;
60 
62  itkStaticConstMacro(ImageDimension, unsigned int, TImage::ImageDimension);
63 
65  itkNewMacro(Self);
66 
69 
70 #ifdef ITK_USE_CONCEPT_CHECKING
71  // Begin concept checking
72 /* itkConceptMacro(InputEqualityComparableCheck,
73  (Concept::EqualityComparable<InputImagePixelType>));
74  itkConceptMacro(IntConvertibleToInputCheck,
75  (Concept::Convertible<int, InputImagePixelType>));
76  itkConceptMacro(InputOStreamWritableCheck,
77  (Concept::OStreamWritable<InputImagePixelType>));*/
78 // End concept checking
79 #endif
80 
81  itkSetMacro(Shift, double);
82  itkGetConstReferenceMacro(Shift, double);
83 
84  itkSetMacro(Scale, double);
85  itkGetConstReferenceMacro(Scale, double);
86 
87  itkSetMacro(ChangeBackgroundValue, bool);
88  itkGetConstMacro(ChangeBackgroundValue, bool);
89  itkBooleanMacro(ChangeBackgroundValue);
90 
91 protected:
93  ~ShiftScaleLabelMapFilter() ITK_OVERRIDE {}
94 
95  void GenerateData() ITK_OVERRIDE;
96 
97  void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
98 
99  double m_Shift;
100  double m_Scale;
101 
102  bool m_ChangeBackgroundValue;
103 
104 private:
105  ITK_DISALLOW_COPY_AND_ASSIGN(ShiftScaleLabelMapFilter);
106 }; // end of class
107 } // end namespace itk
108 
109 #ifndef ITK_MANUAL_INSTANTIATION
110 #include "itkShiftScaleLabelMapFilter.hxx"
111 #endif
112 
113 #endif
SmartPointer< const Self > ConstPointer
Light weight base class for most itk classes.
Base class for filters that takes an image as input and overwrites that image as the output...
Control indentation during Print() invocation.
Definition: itkIndent.h:49
Shifts and scales a label map filter, giving the option to change the background value.
InPlaceLabelMapFilter< TImage > Superclass
ImageType::LabelObjectType LabelObjectType