ITK
5.0.0
Insight Segmentation and Registration Toolkit
|
#include <itkVectorNeighborhoodOperatorImageFilter.h>
Applies a single scalar NeighborhoodOperator to an itk::Vector image region.
This filter calculates successive inner products between a single NeighborhoodOperator and a NeighborhoodIterator, which is swept across every pixel in an image region. For operators that are symmetric across their axes, the result is a fast convolution with the image region. Apply the mirror()'d operator for non-symmetric NeighborhoodOperators.
This filter assumes that the input and output images have pixels which are itk::Vectors of the same vector dimension. The input NeighbourhoodOperator must have a scalar type that matches the ValueType of vector pixels.
To apply a scalar NeighborhoodOperator to a scalar image use NeighborhoodOperatorImageFilter instead.
Definition at line 58 of file itkVectorNeighborhoodOperatorImageFilter.h.
Public Types | |
using | ConstPointer = SmartPointer< const Self > |
using | ImageBoundaryConditionPointerType = ImageBoundaryCondition< OutputImageType > * |
using | InputImagePointer = typename TInputImage::Pointer |
using | InputImageType = TInputImage |
using | InputInternalPixelType = typename TInputImage::InternalPixelType |
using | InputPixelType = typename TInputImage::PixelType |
using | OutputImagePointer = typename TOutputImage::Pointer |
using | OutputImageRegionType = typename Superclass::OutputImageRegionType |
using | OutputImageType = TOutputImage |
using | OutputInternalPixelType = typename TOutputImage::InternalPixelType |
using | OutputPixelType = typename TOutputImage::PixelType |
using | Pointer = SmartPointer< Self > |
using | ScalarValueType = typename OutputPixelType::ValueType |
using | Self = VectorNeighborhoodOperatorImageFilter |
using | Superclass = ImageToImageFilter< TInputImage, TOutputImage > |
Public Types inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
using | ConstPointer = SmartPointer< const Self > |
using | InputImageConstPointer = typename InputImageType::ConstPointer |
using | InputImagePixelType = typename InputImageType::PixelType |
using | InputImagePointer = typename InputImageType::Pointer |
using | InputImageRegionType = typename InputImageType::RegionType |
using | InputImageType = TInputImage |
using | OutputImagePixelType = typename Superclass::OutputImagePixelType |
using | OutputImageRegionType = typename Superclass::OutputImageRegionType |
using | Pointer = SmartPointer< Self > |
using | Self = ImageToImageFilter |
using | Superclass = ImageSource< TOutputImage > |
Public Types inherited from itk::ImageSource< TOutputImage > | |
using | ConstPointer = SmartPointer< const Self > |
using | DataObjectIdentifierType = Superclass::DataObjectIdentifierType |
using | DataObjectPointer = DataObject::Pointer |
using | DataObjectPointerArraySizeType = Superclass::DataObjectPointerArraySizeType |
using | OutputImagePixelType = typename OutputImageType::PixelType |
using | OutputImagePointer = typename OutputImageType::Pointer |
using | OutputImageRegionType = typename OutputImageType::RegionType |
using | OutputImageType = TOutputImage |
using | Pointer = SmartPointer< Self > |
using | Self = ImageSource |
using | Superclass = ProcessObject |
Public Types inherited from itk::ProcessObject | |
using | ConstPointer = SmartPointer< const Self > |
using | DataObjectIdentifierType = DataObject::DataObjectIdentifierType |
using | DataObjectPointer = DataObject::Pointer |
using | DataObjectPointerArray = std::vector< DataObjectPointer > |
using | DataObjectPointerArraySizeType = DataObjectPointerArray::size_type |
using | MultiThreaderType = MultiThreaderBase |
using | NameArray = std::vector< DataObjectIdentifierType > |
using | Pointer = SmartPointer< Self > |
using | Self = ProcessObject |
using | Superclass = Object |
Public Types inherited from itk::Object | |
using | ConstPointer = SmartPointer< const Self > |
using | Pointer = SmartPointer< Self > |
using | Self = Object |
using | Superclass = LightObject |
Public Types inherited from itk::LightObject | |
using | ConstPointer = SmartPointer< const Self > |
using | Pointer = SmartPointer< Self > |
using | Self = LightObject |
Static Public Member Functions | |
static Pointer | New () |
Static Public Member Functions inherited from itk::Object | |
static bool | GetGlobalWarningDisplay () |
static void | GlobalWarningDisplayOff () |
static void | GlobalWarningDisplayOn () |
static Pointer | New () |
static void | SetGlobalWarningDisplay (bool flag) |
Static Public Member Functions inherited from itk::LightObject | |
static void | BreakOnError () |
static Pointer | New () |
Static Public Attributes | |
static constexpr unsigned int | ImageDimension = TOutputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
static constexpr unsigned int | InputImageDimension = TInputImage::ImageDimension |
static constexpr unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageSource< TOutputImage > | |
static constexpr unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Private Attributes | |
ImageBoundaryConditionPointerType | m_BoundsCondition |
Neighborhood< ScalarValueType, Self::ImageDimension > | m_Operator |
Additional Inherited Members | |
Protected Types inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
using | InputToOutputRegionCopierType = ImageToImageFilterDetail::ImageRegionCopier< Self::OutputImageDimension, Self::InputImageDimension > |
using | OutputToInputRegionCopierType = ImageToImageFilterDetail::ImageRegionCopier< Self::InputImageDimension, Self::OutputImageDimension > |
Static Protected Member Functions inherited from itk::ImageSource< TOutputImage > | |
static const ImageRegionSplitterBase * | GetGlobalDefaultSplitter () |
static ITK_THREAD_RETURN_FUNCTION_CALL_CONVENTION | ThreaderCallback (void *arg) |
Protected Attributes inherited from itk::ImageSource< TOutputImage > | |
bool | m_DynamicMultiThreading |
Protected Attributes inherited from itk::ProcessObject | |
TimeStamp | m_OutputInformationMTime |
bool | m_Updating |
Protected Attributes inherited from itk::LightObject | |
std::atomic< int > | m_ReferenceCount |
using itk::VectorNeighborhoodOperatorImageFilter< TInputImage, TOutputImage >::ConstPointer = SmartPointer< const Self > |
Definition at line 68 of file itkVectorNeighborhoodOperatorImageFilter.h.
using itk::VectorNeighborhoodOperatorImageFilter< TInputImage, TOutputImage >::ImageBoundaryConditionPointerType = ImageBoundaryCondition<OutputImageType> * |
Typedef for generic boundary condition pointer
Definition at line 94 of file itkVectorNeighborhoodOperatorImageFilter.h.
using itk::VectorNeighborhoodOperatorImageFilter< TInputImage, TOutputImage >::InputImagePointer = typename TInputImage::Pointer |
Extract some information from the image types. Dimensionality of the two images is assumed to be the same.
Definition at line 78 of file itkVectorNeighborhoodOperatorImageFilter.h.
using itk::VectorNeighborhoodOperatorImageFilter< TInputImage, TOutputImage >::InputImageType = TInputImage |
Image type alias support
Definition at line 90 of file itkVectorNeighborhoodOperatorImageFilter.h.
using itk::VectorNeighborhoodOperatorImageFilter< TInputImage, TOutputImage >::InputInternalPixelType = typename TInputImage::InternalPixelType |
Definition at line 83 of file itkVectorNeighborhoodOperatorImageFilter.h.
using itk::VectorNeighborhoodOperatorImageFilter< TInputImage, TOutputImage >::InputPixelType = typename TInputImage::PixelType |
Definition at line 82 of file itkVectorNeighborhoodOperatorImageFilter.h.
using itk::VectorNeighborhoodOperatorImageFilter< TInputImage, TOutputImage >::OutputImagePointer = typename TOutputImage::Pointer |
Definition at line 79 of file itkVectorNeighborhoodOperatorImageFilter.h.
using itk::VectorNeighborhoodOperatorImageFilter< TInputImage, TOutputImage >::OutputImageRegionType = typename Superclass::OutputImageRegionType |
Superclass type alias.
Definition at line 97 of file itkVectorNeighborhoodOperatorImageFilter.h.
using itk::VectorNeighborhoodOperatorImageFilter< TInputImage, TOutputImage >::OutputImageType = TOutputImage |
Definition at line 91 of file itkVectorNeighborhoodOperatorImageFilter.h.
using itk::VectorNeighborhoodOperatorImageFilter< TInputImage, TOutputImage >::OutputInternalPixelType = typename TOutputImage::InternalPixelType |
Definition at line 81 of file itkVectorNeighborhoodOperatorImageFilter.h.
using itk::VectorNeighborhoodOperatorImageFilter< TInputImage, TOutputImage >::OutputPixelType = typename TOutputImage::PixelType |
Definition at line 80 of file itkVectorNeighborhoodOperatorImageFilter.h.
using itk::VectorNeighborhoodOperatorImageFilter< TInputImage, TOutputImage >::Pointer = SmartPointer< Self > |
Definition at line 67 of file itkVectorNeighborhoodOperatorImageFilter.h.
using itk::VectorNeighborhoodOperatorImageFilter< TInputImage, TOutputImage >::ScalarValueType = typename OutputPixelType::ValueType |
Definition at line 84 of file itkVectorNeighborhoodOperatorImageFilter.h.
using itk::VectorNeighborhoodOperatorImageFilter< TInputImage, TOutputImage >::Self = VectorNeighborhoodOperatorImageFilter |
Standard class type aliases.
Definition at line 65 of file itkVectorNeighborhoodOperatorImageFilter.h.
using itk::VectorNeighborhoodOperatorImageFilter< TInputImage, TOutputImage >::Superclass = ImageToImageFilter< TInputImage, TOutputImage > |
Definition at line 66 of file itkVectorNeighborhoodOperatorImageFilter.h.
|
inlineprotected |
Definition at line 137 of file itkVectorNeighborhoodOperatorImageFilter.h.
|
overrideprotecteddefault |
|
virtual |
Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.
Reimplemented from itk::Object.
|
overrideprotectedvirtual |
VectorNeighborhoodOperatorImageFilter can be implemented as a multithreaded filter. Therefore, this implementation provides a DynamicThreadedGenerateData() routine which is called for each processing thread. The output image data is allocated automatically by the superclass prior to calling DynamicThreadedGenerateData(). DynamicThreadedGenerateData can only write to the portion of the output image specified by the parameter "outputRegionForThread"
Reimplemented from itk::ImageSource< TOutputImage >.
|
overridevirtual |
VectorNeighborhoodOperatorImageFilter needs a larger input requested region than the output requested region. As such, VectorNeighborhoodOperatorImageFilter needs to provide an implementation for GenerateInputRequestedRegion() in order to inform the pipeline execution model.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
virtual |
Run-time type information (and related methods)
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
static |
Method for creation through the object factory.
|
inline |
Allows a user to override the internal boundary condition. Care should be be taken to ensure that the overriding boundary condition is a persistent object during the time it is referenced. The overriding condition can be of a different type than the default type as long as it is a subclass of ImageBoundaryCondition.
Definition at line 115 of file itkVectorNeighborhoodOperatorImageFilter.h.
|
inlineoverrideprotectedvirtual |
Methods invoked by Print() to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 158 of file itkVectorNeighborhoodOperatorImageFilter.h.
|
inline |
Sets the operator that is used to filter the image. Note that the operator is stored as an internal COPY (it is not part of the pipeline).
Definition at line 102 of file itkVectorNeighborhoodOperatorImageFilter.h.
|
static |
Determine image dimension.
Definition at line 87 of file itkVectorNeighborhoodOperatorImageFilter.h.
|
private |
Pointer to a persistent boundary condition object used for the image iterator.
Definition at line 167 of file itkVectorNeighborhoodOperatorImageFilter.h.
|
private |
Pointer to the internal operator used to filter the image.
Definition at line 163 of file itkVectorNeighborhoodOperatorImageFilter.h.