ITK  4.4.0
Insight Segmentation and Registration Toolkit
itkNeighborhoodAlgorithm.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 __itkNeighborhoodAlgorithm_h
19 #define __itkNeighborhoodAlgorithm_h
20 
21 #include <list>
22 #include "itkImage.h"
25 
26 namespace itk
27 {
28 namespace NeighborhoodAlgorithm
29 {
62 template< class TImage >
63 struct ITK_EXPORT ImageBoundaryFacesCalculator {
65  typedef typename TImage::RegionType RegionType;
66  typedef typename TImage::IndexType IndexType;
67  typedef typename TImage::SizeType SizeType;
68  typedef std::list< RegionType > FaceListType;
69  itkStaticConstMacro(ImageDimension, unsigned int, TImage::ImageDimension);
70 
71  FaceListType operator()(const TImage *, RegionType, RadiusType);
72 };
73 
83 template< class TImage >
86  OffsetType operator()(TImage *, TImage *) const;
87 };
88 } // end namespace NeighborhoodAlgorithm
89 } // end namespace itk
90 
91 #ifndef ITK_MANUAL_INSTANTIATION
92 #include "itkNeighborhoodAlgorithm.hxx"
93 #endif
94 
95 #endif
96