ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkImageBoundaryCondition.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 itkImageBoundaryCondition_h
19#define itkImageBoundaryCondition_h
20
21#include "itkIndex.h"
22#include "itkNeighborhood.h"
23#include "itkImageRegion.h"
24
25namespace itk
26{
51template <typename TInputImage, typename TOutputImage = TInputImage>
52class ITK_TEMPLATE_EXPORT ImageBoundaryCondition
54public:
56 static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
57
60
62 using InputImageType = TInputImage;
63 using OutputImageType = TOutputImage;
64 using PixelType = typename TInputImage::PixelType;
65 using PixelPointerType = typename TInputImage::InternalPixelType *;
66 using OutputPixelType = typename TOutputImage::PixelType;
76 using NeighborhoodAccessorFunctorType = typename TInputImage::NeighborhoodAccessorFunctorType;
77
82 itkVirtualGetNameOfClassMacro(ImageBoundaryCondition);
85 virtual void
86 Print(std::ostream & os, Indent i = 0) const
87 {
88 os << i << this->GetNameOfClass() << " (" << this << ')' << std::endl;
89 }
90
95 virtual OutputPixelType
96 operator()(const OffsetType & point_index,
97 const OffsetType & boundary_offset,
98 const NeighborhoodType * data) const = 0;
99
102 virtual OutputPixelType
103 operator()(const OffsetType & point_index,
104 const OffsetType & boundary_offset,
105 const NeighborhoodType * data,
106 const NeighborhoodAccessorFunctorType & neighborhoodAccessorFunctor) const = 0;
107
108 virtual ~ImageBoundaryCondition() = default;
109
116 virtual bool
118 {
119 return true;
120 }
121
131 virtual RegionType
132 GetInputRequestedRegion(const RegionType & inputLargestPossibleRegion,
133 [[maybe_unused]] const RegionType & itkNotUsed(outputRequestedRegion)) const
134 {
135 return inputLargestPossibleRegion;
136 }
137
146 virtual OutputPixelType
147 GetPixel(const IndexType & index, const TInputImage * image) const = 0;
148};
149} // end namespace itk
150
151#endif
void Print(std::ostream &os, Indent i=0) const override
const char * GetNameOfClass() const override
typename TInputImage::NeighborhoodAccessorFunctorType NeighborhoodAccessorFunctorType
Neighborhood< PixelPointerType, ImageDimension > NeighborhoodType
virtual OutputPixelType GetPixel(const IndexType &index, const TInputImage *image) const =0
virtual OutputPixelType operator()(const OffsetType &point_index, const OffsetType &boundary_offset, const NeighborhoodType *data) const =0
virtual OutputPixelType operator()(const OffsetType &point_index, const OffsetType &boundary_offset, const NeighborhoodType *data, const NeighborhoodAccessorFunctorType &neighborhoodAccessorFunctor) const =0
virtual RegionType GetInputRequestedRegion(const RegionType &inputLargestPossibleRegion, const RegionType &outputRequestedRegion) const
virtual ~ImageBoundaryCondition()=default
An image region represents a structured region of data.
Control indentation during Print() invocation.
Definition itkIndent.h:50
A light-weight container object for storing an N-dimensional neighborhood of values.
Neighborhood< PixelPointerType, ImageDimension > NeighborhoodType
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Represent a n-dimensional index in a n-dimensional image.
Definition itkIndex.h:69
Represent a n-dimensional offset between two n-dimensional indexes of n-dimensional image.
Definition itkOffset.h:67
Represent a n-dimensional size (bounds) of a n-dimensional image.
Definition itkSize.h:70