|
ITK
6.0.0
Insight Toolkit
|
Go to the documentation of this file.
18 #ifndef itkValuedRegionalExtremaImageFilter_h
19 #define itkValuedRegionalExtremaImageFilter_h
76 template <
typename TInputImage,
typename TOutputImage,
typename TFunction1,
typename TFunction2>
102 static constexpr
unsigned int InputImageDimension = TInputImage::ImageDimension;
103 static constexpr
unsigned int OutputImageDimension = TOutputImage::ImageDimension;
117 itkSetMacro(FullyConnected,
bool);
118 itkGetConstReferenceMacro(FullyConnected,
bool);
119 itkBooleanMacro(FullyConnected);
125 itkSetMacro(MarkerValue,
typename TInputImage::PixelType);
126 itkGetConstReferenceMacro(MarkerValue,
typename TInputImage::PixelType);
132 itkGetConstMacro(Flat,
bool);
134 #ifdef ITK_USE_CONCEPT_CHECKING
145 PrintSelf(std::ostream & os,
Indent indent)
const override;
151 GenerateInputRequestedRegion()
override;
155 EnlargeOutputRequestedRegion(
DataObject * itkNotUsed(output))
override;
158 GenerateData()
override;
161 typename TInputImage::PixelType m_MarkerValue{};
163 bool m_FullyConnected{
false };
164 bool m_Flat{
false };
174 #ifndef ITK_MANUAL_INSTANTIATION
175 # include "itkValuedRegionalExtremaImageFilter.hxx"
SmartPointer< Self > Pointer
typename InputImageType::SizeType ISizeType
SmartPointer< const Self > ConstPointer
typename OutputImageType::Pointer OutputImagePointer
ImageBaseType::SizeType SizeType
Control indentation during Print() invocation.
A neighborhood iterator which can take on an arbitrary shape.
std::stack< OutIndexType > IndexStack
typename InputImageType::PixelType InputImagePixelType
ImageBaseType::IndexType IndexType
Base class for filters that take an image as input and produce an image as output.
Base class for all process objects that output image data.
typename InputImageType::Pointer InputImagePointer
ImageBaseType::RegionType RegionType
Uses a flooding algorithm to set all voxels that are not a regional extrema to the max or min of the ...
Const version of ShapedNeighborhoodIterator, defining iteration of a local N-dimensional neighborhood...
TInputImage InputImageType
typename OutputImageType::RegionType OutputImageRegionType
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
typename InputImageType::IndexType InIndexType
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
typename OutputImageType::PixelType OutputImagePixelType
typename OutputImageType::IndexType OutIndexType
typename InputImageType::RegionType InputImageRegionType
typename InputImageType::ConstPointer InputImageConstPointer
typename OutputImageType::ConstPointer OutputImageConstPointer
TOutputImage OutputImageType
Base class for all data objects in ITK.