ITK  5.0.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< typename TImage >
65  using RegionType = typename TImage::RegionType;
66  using IndexType = typename TImage::IndexType;
67  using SizeType = typename TImage::SizeType;
68  using FaceListType = std::list< RegionType >;
69  static constexpr unsigned int ImageDimension = TImage::ImageDimension;
70 
71  FaceListType operator()(const TImage *, RegionType, RadiusType);
72 };
73 
83 template< typename 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
FaceListType operator()(const TImage *, RegionType, RadiusType)
Splits an image into a main region and several &quot;face&quot; regions which are used to handle computations o...
Represent a n-dimensional offset between two n-dimensional indexes of n-dimensional image...
Definition: itkOffset.h:67
typename Superclass::RadiusType RadiusType
typename NeighborhoodIterator< TImage >::RadiusType RadiusType