ITK  4.8.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 >
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;
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();
83 
87 
88 private:
89  LevelSetDomainPartitionImageWithKdTree(const Self &); // purposely not implemented
90  void operator=(const Self &); // purposely not implemented
91 
94 };
95 
96 } //end namespace itk
97 
98 #ifndef ITK_MANUAL_INSTANTIATION
99 #include "itkLevelSetDomainPartitionImageWithKdTree.hxx"
100 #endif
101 
102 #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.
Superclass::IdentifierListType IdentifierListType
This class is the native implementation of the a Sample with an STL container.
Definition: itkListSample.h:51
ImageRegionIteratorWithIndex< ListImageType > ListIteratorType
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.