ITK  4.4.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< class TImage >
43 class ITK_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 
72 /* itkConceptMacro(InputEqualityComparableCheck,
73  (Concept::EqualityComparable<InputImagePixelType>));
74  itkConceptMacro(IntConvertibleToInputCheck,
75  (Concept::Convertible<int, InputImagePixelType>));
76  itkConceptMacro(InputOStreamWritableCheck,
77  (Concept::OStreamWritable<InputImagePixelType>));*/
78 
80 #endif
81 
82  itkSetMacro(Shift, double);
83  itkGetConstReferenceMacro(Shift, double);
84 
85  itkSetMacro(Scale, double);
86  itkGetConstReferenceMacro(Scale, double);
87 
88  itkSetMacro(ChangeBackgroundValue, bool);
89  itkGetConstMacro(ChangeBackgroundValue, bool);
90  itkBooleanMacro(ChangeBackgroundValue);
91 
92 protected:
95 
96  void GenerateData();
97 
98  void PrintSelf(std::ostream & os, Indent indent) const;
99 
100  double m_Shift;
101  double m_Scale;
102 
104 
105 private:
106  ShiftScaleLabelMapFilter(const Self &); //purposely not implemented
107  void operator=(const Self &); //purposely not implemented
108 }; // end of class
109 } // end namespace itk
110 
111 #ifndef ITK_MANUAL_INSTANTIATION
112 #include "itkShiftScaleLabelMapFilter.hxx"
113 #endif
114 
115 #endif
116