ITK  4.8.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 >
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:
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 
103 
104 private:
105  ShiftScaleLabelMapFilter(const Self &); //purposely not implemented
106  void operator=(const Self &); //purposely not implemented
107 }; // end of class
108 } // end namespace itk
109 
110 #ifndef ITK_MANUAL_INSTANTIATION
111 #include "itkShiftScaleLabelMapFilter.hxx"
112 #endif
113 
114 #endif
SmartPointer< const Self > ConstPointer
Light weight base class for most itk classes.
void PrintSelf(std::ostream &os, Indent indent) const override
static const unsigned int ImageDimension
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