SimpleITK  1.2.4
sitkRelabelComponentImageFilter.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 sitkRelabelComponentImageFilter_h
19 #define sitkRelabelComponentImageFilter_h
20 
21 /*
22  * WARNING: DO NOT EDIT THIS FILE!
23  * THIS FILE IS AUTOMATICALLY GENERATED BY THE SIMPLEITK BUILD PROCESS.
24  * Please look at sitkImageFilterTemplate.h.in to make changes.
25  */
26 
27 #include <memory>
28 
29 #include "sitkBasicFilters.h"
30 #include "sitkImageFilter.h"
31 
32 namespace itk {
33  namespace simple {
34 
55  public:
57 
59  virtual ~RelabelComponentImageFilter();
60 
64 
67 
68 
69 
73  SITK_RETURN_SELF_TYPE_HEADER SetMinimumObjectSize ( uint64_t MinimumObjectSize ) { this->m_MinimumObjectSize = MinimumObjectSize; return *this; }
74 
78  uint64_t GetMinimumObjectSize() const { return this->m_MinimumObjectSize; }
79 
83  SITK_RETURN_SELF_TYPE_HEADER SetSortByObjectSize ( bool SortByObjectSize ) { this->m_SortByObjectSize = SortByObjectSize; return *this; }
84 
86  SITK_RETURN_SELF_TYPE_HEADER SortByObjectSizeOn() { return this->SetSortByObjectSize(true); }
87  SITK_RETURN_SELF_TYPE_HEADER SortByObjectSizeOff() { return this->SetSortByObjectSize(false); }
88 
92  bool GetSortByObjectSize() const { return this->m_SortByObjectSize; }
99  uint32_t GetNumberOfObjects() const { return this->m_NumberOfObjects; };
100 
107  uint32_t GetOriginalNumberOfObjects() const { return this->m_OriginalNumberOfObjects; };
108 
115  std::vector<float> GetSizeOfObjectsInPhysicalUnits() const { return this->m_SizeOfObjectsInPhysicalUnits; };
116 
123  std::vector<uint64_t> GetSizeOfObjectsInPixels() const { return this->m_SizeOfObjectsInPixels; };
124 
126  std::string GetName() const { return std::string ("RelabelComponentImageFilter"); }
127 
129  std::string ToString() const;
130 
131 
133  Image Execute ( const Image& image1 );
134 
135 
137  Image Execute ( const Image& image1, uint64_t minimumObjectSize, bool sortByObjectSize );
138 
139  private:
140 
143  typedef Image (Self::*MemberFunctionType)( const Image& image1 );
144  template <class TImageType> Image ExecuteInternal ( const Image& image1 );
145 
146 
147  friend struct detail::MemberFunctionAddressor<MemberFunctionType>;
148 
149  nsstd::auto_ptr<detail::MemberFunctionFactory<MemberFunctionType> > m_MemberFactory;
150 
151 
154  /* */
156  /* */
158  /* */
159  std::vector<float> m_SizeOfObjectsInPhysicalUnits;
160  /* */
161  std::vector<uint64_t> m_SizeOfObjectsInPixels;
162 
163  };
164 
165 
174  SITKBasicFilters_EXPORT Image RelabelComponent ( const Image& image1, uint64_t minimumObjectSize = 0u, bool sortByObjectSize = true );
175 
176  }
177 }
178 #endif
typelist::MakeTypeList< BasicPixelID< int8_t >, BasicPixelID< uint8_t >, BasicPixelID< int16_t >, BasicPixelID< uint16_t >, BasicPixelID< int32_t >, BasicPixelID< uint32_t > >::Type IntegerPixelIDTypeList
#define SITKBasicFilters_EXPORT
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
::uint32_t uint32_t
The Image class for SimpleITK.
Definition: sitkImage.h:78
Self & SetMinimumObjectSize(uint64_t MinimumObjectSize)
std::vector< uint64_t > GetSizeOfObjectsInPixels() const
Image RelabelComponent(const Image &image1, uint64_t minimumObjectSize=0u, bool sortByObjectSize=true)
Relabel the components in an image such that consecutive labels are used.
::uint64_t uint64_t
The base interface for SimpleITK filters that take one input image.
Relabel the components in an image such that consecutive labels are used.