ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkLevelSetDomainPartitionImageWithKdTree.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 itkLevelSetDomainPartitionImageWithKdTree_h
19 #define itkLevelSetDomainPartitionImageWithKdTree_h
20 
22 
23 #include "itkListSample.h"
24 #include "itkKdTreeGenerator.h"
25 
26 namespace itk
27 {
33 template< typename TImage >
34 class ITK_TEMPLATE_EXPORT LevelSetDomainPartitionImageWithKdTree:
35  public LevelSetDomainPartitionImage< TImage >
36 {
37 public:
38 
43 
44  itkStaticConstMacro(ImageDimension, unsigned int, Superclass::ImageDimension);
45 
47  itkNewMacro(Self);
48 
50 
51  typedef TImage ImageType;
52  typedef typename Superclass::ListIndexType ListIndexType;
53  typedef typename Superclass::ListRegionType ListRegionType;
54  typedef typename Superclass::ListPointType ListPointType;
55  typedef typename Superclass::ListIteratorType ListIteratorType;
56  typedef typename Superclass::IdentifierListType IdentifierListType;
57 
63  typedef typename TreeType::Pointer KdTreePointer;
64 
66  itkSetObjectMacro( KdTree, TreeType );
67 
69  typedef unsigned int NeighborsIdType;
70 
72  itkSetMacro( NumberOfNeighbors, NeighborsIdType );
73  itkGetMacro( NumberOfNeighbors, NeighborsIdType );
75 
78  void PopulateListDomain() ITK_OVERRIDE;
79 
80 protected:
82  ~LevelSetDomainPartitionImageWithKdTree() ITK_OVERRIDE;
83 
86  void PopulateDomainWithKdTree();
87 
88 private:
89  ITK_DISALLOW_COPY_AND_ASSIGN(LevelSetDomainPartitionImageWithKdTree);
90 
91  KdTreePointer m_KdTree;
92  NeighborsIdType m_NumberOfNeighbors;
93 };
94 
95 } //end namespace itk
96 
97 #ifndef ITK_MANUAL_INSTANTIATION
98 #include "itkLevelSetDomainPartitionImageWithKdTree.hxx"
99 #endif
100 
101 #endif
Light weight base class for most itk classes.
A templated class holding a n-Dimensional vector.
Definition: itkVector.h:62
Helper class used to partition domain and efficiently compute overlap.
This class generates a KdTree object without centroid information.
This class is the native implementation of the a Sample with an STL container.
Definition: itkListSample.h:51
This class provides methods for k-nearest neighbor search and related data structures for a k-d tree...
Definition: itkKdTree.h:483
Helper class used to share data in the ScalarChanAndVeseLevelSetFunction.