ITK  4.6.0
Insight Segmentation and Registration Toolkit
itkStatisticsRelabelImageFilter.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 __itkStatisticsRelabelImageFilter_h
19 #define __itkStatisticsRelabelImageFilter_h
20 
25 
26 namespace itk
27 {
44 template< typename TInputImage, typename TFeatureImage >
46  public ImageToImageFilter< TInputImage, TInputImage >
47 {
48 public:
54 
56  typedef TInputImage InputImageType;
57  typedef TInputImage OutputImageType;
58  typedef typename InputImageType::Pointer InputImagePointer;
59  typedef typename InputImageType::ConstPointer InputImageConstPointer;
60  typedef typename InputImageType::RegionType InputImageRegionType;
61  typedef typename InputImageType::PixelType InputImagePixelType;
62  typedef typename OutputImageType::Pointer OutputImagePointer;
63  typedef typename OutputImageType::ConstPointer OutputImageConstPointer;
64  typedef typename OutputImageType::RegionType OutputImageRegionType;
65  typedef typename OutputImageType::PixelType OutputImagePixelType;
66 
67  typedef TFeatureImage FeatureImageType;
68  typedef typename FeatureImageType::Pointer FeatureImagePointer;
69  typedef typename FeatureImageType::ConstPointer FeatureImageConstPointer;
70  typedef typename FeatureImageType::PixelType FeatureImagePixelType;
71 
73  itkStaticConstMacro(InputImageDimension, unsigned int,
74  TInputImage::ImageDimension);
75  itkStaticConstMacro(OutputImageDimension, unsigned int,
76  TInputImage::ImageDimension);
77  itkStaticConstMacro(ImageDimension, unsigned int,
78  TInputImage::ImageDimension);
80 
88 
90  itkNewMacro(Self);
91 
93  itkTypeMacro(StatisticsRelabelImageFilter,
95 
96 #ifdef ITK_USE_CONCEPT_CHECKING
97  // Begin concept checking
98  itkConceptMacro( InputEqualityComparableCheck,
100  itkConceptMacro( IntConvertibleToInputCheck,
102  itkConceptMacro( InputOStreamWritableCheck,
104  // End concept checking
105 #endif
106 
111  itkSetMacro(BackgroundValue, OutputImagePixelType);
112  itkGetConstMacro(BackgroundValue, OutputImagePixelType);
114 
120  itkGetConstMacro(ReverseOrdering, bool);
121  itkSetMacro(ReverseOrdering, bool);
122  itkBooleanMacro(ReverseOrdering);
124 
128  itkGetConstMacro(Attribute, AttributeType);
129  itkSetMacro(Attribute, AttributeType);
130  void SetAttribute(const std::string & s)
131  {
133  }
135 
137  void SetFeatureImage(TFeatureImage *input)
138  {
139  // Process object is not const-correct so the const casting is required.
140  this->SetNthInput( 1, const_cast< TFeatureImage * >( input ) );
141  }
142 
145  {
146  return static_cast< FeatureImageType * >( const_cast< DataObject * >( this->ProcessObject::GetInput(1) ) );
147  }
148 
151  {
152  this->SetInput(input);
153  }
154 
157  {
158  this->SetFeatureImage(input);
159  }
160 
161 protected:
164  void PrintSelf(std::ostream & os, Indent indent) const;
165 
170 
172  void EnlargeOutputRequestedRegion( DataObject *itkNotUsed(output) );
173 
176  void GenerateData();
177 
178 private:
179  StatisticsRelabelImageFilter(const Self &); //purposely not implemented
180  void operator=(const Self &); //purposely not implemented
181 
185 }; // end of class
186 } // end namespace itk
187 
188 #ifndef ITK_MANUAL_INSTANTIATION
189 #include "itkStatisticsRelabelImageFilter.hxx"
190 #endif
191 
192 #endif
void PrintSelf(std::ostream &os, Indent indent) const
convert a labeled image to a label collection image
Light weight base class for most itk classes.
OutputImageType::ConstPointer OutputImageConstPointer
Superclass::AttributeType AttributeType
relabel objects according to their shape attributes
StatisticsLabelMapFilter< LabelMapType, TFeatureImage > LabelObjectValuatorType
FeatureImageType::ConstPointer FeatureImageConstPointer
StatisticsLabelObject< InputImagePixelType, itkGetStaticConstMacro(ImageDimension) > LabelObjectType
ImageToImageFilter< TInputImage, TInputImage > Superclass
static AttributeType GetAttributeFromName(const std::string &s)
relabel objects according to their shape attributes
A Label object to store the common attributes related to the statistics of the object.
virtual void SetInput(const InputImageType *image)
LabelMapToLabelImageFilter< LabelMapType, OutputImageType > BinarizerType
LabelObjectType::AttributeType AttributeType
LabelImageToLabelMapFilter< InputImageType, LabelMapType > LabelizerType
void EnlargeOutputRequestedRegion(DataObject *)
DataObject * GetInput(const DataObjectIdentifierType &key)
virtual void SetAttribute(AttributeType _arg)
Base class for filters that take an image as input and produce an image as output.
Control indentation during Print() invocation.
Definition: itkIndent.h:49
Templated n-dimensional image to store labeled objects.
Definition: itkLabelMap.h:70
InputImageType::ConstPointer InputImageConstPointer
virtual void SetNthInput(DataObjectPointerArraySizeType num, DataObject *input)
The valuator class for the ShapeLabelObject.
#define itkConceptMacro(name, concept)
Base class for all data objects in ITK.
StatisticsRelabelLabelMapFilter< LabelMapType > RelabelType
Converts a LabelMap to a labeled image.