ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkImageKmeansModelEstimator.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
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 * https://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 itkImageKmeansModelEstimator_h
19#define itkImageKmeansModelEstimator_h
20
21#include <ctime>
22#include <cmath>
23#include <cfloat>
24
25#include "vnl/vnl_vector.h"
26#include "vnl/vnl_matrix.h"
27#include "itkMath.h"
28#include "vnl/algo/vnl_matrix_inverse.h"
29
31#include "itkMacro.h"
32
34
35#define ONEBAND 1
36#define GLA_CONVERGED 1
37#define GLA_NOT_CONVERGED 2
38#define LBG_COMPLETED 3
39
40namespace itk
41{
128template <typename TInputImage, typename TMembershipFunction>
129class ITK_TEMPLATE_EXPORT ImageKmeansModelEstimator : public ImageModelEstimatorBase<TInputImage, TMembershipFunction>
130{
131public:
132 ITK_DISALLOW_COPY_AND_MOVE(ImageKmeansModelEstimator);
133
137
140
142 itkNewMacro(Self);
143
145 itkOverrideGetNameOfClassMacro(ImageKmeansModelEstimator);
146
148 using InputImageType = TInputImage;
149 using InputImagePointer = typename TInputImage::Pointer;
150 using InputImageConstPointer = typename TInputImage::ConstPointer;
151
154 using InputImageVectorType = typename TInputImage::PixelType::VectorType;
155
157 using InputImagePixelType = typename TInputImage::PixelType;
158
161
163
165 using MembershipFunctionPointer = typename TMembershipFunction::Pointer;
166
168 using CodebookMatrixOfDoubleType = vnl_matrix<double>;
169
171 using CodebookMatrixOfIntegerType = vnl_matrix<int>;
172
174 void
176
178 itkGetConstMacro(Codebook, CodebookMatrixOfDoubleType);
179
183 {
184 return m_Codebook;
185 }
186
189 itkSetMacro(Threshold, double);
190 itkGetConstMacro(Threshold, double);
194 itkSetMacro(OffsetAdd, double);
195 itkGetConstMacro(OffsetAdd, double);
199 itkSetMacro(OffsetMultiply, double);
200 itkGetConstMacro(OffsetMultiply, double);
204 itkSetMacro(MaxSplitAttempts, int);
205 itkGetConstMacro(MaxSplitAttempts, int);
210 {
211 return m_Centroid;
212 }
213
214protected:
216 ~ImageKmeansModelEstimator() override = default;
217 void
218 PrintSelf(std::ostream & os, Indent indent) const override;
219
221 void
222 GenerateData() override;
223
225 void
227
229 void
231
232private:
241 void
242 EstimateModels() override;
243
245 void
247
248 using ImageSizeType = typename TInputImage::SizeType;
249
251 using InputPixelVectorType = typename TInputImage::PixelType::VectorType;
252
254 void
255 Reallocate(int oldSize, int newSize);
256
257 int
259
260 int
262
263 void
264 NearestNeighborSearchBasic(double * distortion);
265
266 void
267 SplitCodewords(int currentSize, int numDesired, int scale);
268
269 void
270 Perturb(double * oldCodeword, int scale, double * newCodeword);
271
273
274 // Buffer for K-means calculations
276
277 double m_Threshold{};
278 double m_OffsetAdd{};
281
286
290
293}; // class ImageKmeansModelEstimator
294
295} // end namespace itk
296
297#ifndef ITK_MANUAL_INSTANTIATION
298# include "itkImageKmeansModelEstimator.hxx"
299#endif
300
301#endif
void Reallocate(int oldSize, int newSize)
ImageRegionConstIterator< TInputImage > InputImageConstIterator
typename TInputImage::Pointer InputImagePointer
typename TInputImage::PixelType::VectorType InputPixelVectorType
typename TMembershipFunction::Pointer MembershipFunctionPointer
~ImageKmeansModelEstimator() override=default
typename TInputImage::ConstPointer InputImageConstPointer
void NearestNeighborSearchBasic(double *distortion)
void PrintSelf(std::ostream &os, Indent indent) const override
CodebookMatrixOfIntegerType m_CodewordHistogram
void SplitCodewords(int currentSize, int numDesired, int scale)
CodebookMatrixOfDoubleType m_CodewordDistortion
typename TInputImage::PixelType InputImagePixelType
void SetCodebook(CodebookMatrixOfDoubleType inCodebook)
ImageRegionIterator< TInputImage > InputImageIterator
CodebookMatrixOfDoubleType GetKmeansResults()
void Perturb(double *oldCodeword, int scale, double *newCodeword)
typename TInputImage::PixelType::VectorType InputImageVectorType
ImageModelEstimatorBase< TInputImage, TMembershipFunction > Superclass
typename TInputImage::SizeType ImageSizeType
CodebookMatrixOfDoubleType GetOutCodebook()
A multi-dimensional iterator templated over image type that walks a region of pixels.
A multi-dimensional iterator templated over image type that walks a region of pixels.
Control indentation during Print() invocation.
Definition itkIndent.h:50
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned long SizeValueType
Definition itkIntTypes.h:86