ITK
5.2.0
Insight Toolkit
|
#include <itkBinaryClosingByReconstructionImageFilter.h>
Public Types | |
using | ConstPointer = SmartPointer< const Self > |
using | InputImagePointer = typename InputImageType::Pointer |
using | InputImageType = TInputImage |
using | InputPixelType = typename TInputImage::PixelType |
using | KernelType = TKernel |
using | OutputImageRegionType = typename OutputImageType::RegionType |
using | OutputImageType = TInputImage |
using | OutputPixelType = typename TInputImage::PixelType |
using | Pointer = SmartPointer< Self > |
using | Self = BinaryClosingByReconstructionImageFilter |
using | Superclass = KernelImageFilter< TInputImage, TInputImage, TKernel > |
Public Types inherited from itk::KernelImageFilter< TInputImage, TInputImage, TKernel > | |
using | ConstPointer = SmartPointer< const Self > |
using | FlatKernelType = FlatStructuringElement<(Self::ImageDimension)> |
using | IndexType = typename TInputImage::IndexType |
using | InputImageType = TInputImage |
using | InputPixelType = typename TInputImage::PixelType |
using | KernelType = TKernel |
using | OffsetType = typename TInputImage::OffsetType |
using | OutputImageType = TInputImage |
using | OutputPixelType = typename TInputImage ::PixelType |
using | Pointer = SmartPointer< Self > |
using | RadiusType = typename TInputImage::SizeType |
using | RegionType = typename TInputImage::RegionType |
using | Self = KernelImageFilter |
using | SizeType = typename TInputImage::SizeType |
using | Superclass = BoxImageFilter< TInputImage, TInputImage > |
Public Types inherited from itk::BoxImageFilter< TInputImage, TOutputImage > | |
using | ConstPointer = SmartPointer< const Self > |
using | IndexType = typename TInputImage::IndexType |
using | InputImageType = TInputImage |
using | InputPixelType = typename TInputImage::PixelType |
using | OffsetType = typename TInputImage::OffsetType |
using | OutputImageType = TOutputImage |
using | OutputPixelType = typename TOutputImage::PixelType |
using | Pointer = SmartPointer< Self > |
using | RadiusType = typename TInputImage::SizeType |
using | RadiusValueType = typename TInputImage::SizeValueType |
using | RegionType = typename TInputImage::RegionType |
using | Self = BoxImageFilter |
using | SizeType = typename TInputImage::SizeType |
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 |
binary closing by reconstruction of an image.
This filter removes small (i.e., smaller than the structuring element) holes in the image. It is defined as: Closing(f) = ReconstructionByErosion(Dilation(f)).
The structuring element is assumed to be composed of binary values (zero or one). Only elements of the structuring element having values > 0 are candidates for affecting the center pixel.
This implementation was taken from the Insight Journal paper: https://www.insight-journal.org/browse/publication/176
Definition at line 49 of file itkBinaryClosingByReconstructionImageFilter.h.
using itk::BinaryClosingByReconstructionImageFilter< TInputImage, TKernel >::ConstPointer = SmartPointer<const Self> |
Definition at line 59 of file itkBinaryClosingByReconstructionImageFilter.h.
using itk::BinaryClosingByReconstructionImageFilter< TInputImage, TKernel >::InputImagePointer = typename InputImageType::Pointer |
Definition at line 69 of file itkBinaryClosingByReconstructionImageFilter.h.
using itk::BinaryClosingByReconstructionImageFilter< TInputImage, TKernel >::InputImageType = TInputImage |
Definition at line 67 of file itkBinaryClosingByReconstructionImageFilter.h.
using itk::BinaryClosingByReconstructionImageFilter< TInputImage, TKernel >::InputPixelType = typename TInputImage::PixelType |
Declaration of pixel type.
Definition at line 73 of file itkBinaryClosingByReconstructionImageFilter.h.
using itk::BinaryClosingByReconstructionImageFilter< TInputImage, TKernel >::KernelType = TKernel |
Kernel type alias.
Definition at line 77 of file itkBinaryClosingByReconstructionImageFilter.h.
using itk::BinaryClosingByReconstructionImageFilter< TInputImage, TKernel >::OutputImageRegionType = typename OutputImageType::RegionType |
Definition at line 70 of file itkBinaryClosingByReconstructionImageFilter.h.
using itk::BinaryClosingByReconstructionImageFilter< TInputImage, TKernel >::OutputImageType = TInputImage |
Definition at line 68 of file itkBinaryClosingByReconstructionImageFilter.h.
using itk::BinaryClosingByReconstructionImageFilter< TInputImage, TKernel >::OutputPixelType = typename TInputImage::PixelType |
Definition at line 74 of file itkBinaryClosingByReconstructionImageFilter.h.
using itk::BinaryClosingByReconstructionImageFilter< TInputImage, TKernel >::Pointer = SmartPointer<Self> |
Definition at line 58 of file itkBinaryClosingByReconstructionImageFilter.h.
using itk::BinaryClosingByReconstructionImageFilter< TInputImage, TKernel >::Self = BinaryClosingByReconstructionImageFilter |
Standard class type aliases.
Definition at line 56 of file itkBinaryClosingByReconstructionImageFilter.h.
using itk::BinaryClosingByReconstructionImageFilter< TInputImage, TKernel >::Superclass = KernelImageFilter<TInputImage, TInputImage, TKernel> |
Definition at line 57 of file itkBinaryClosingByReconstructionImageFilter.h.
|
protected |
Set/Get whether the connected components are defined strictly by face connectivity or by face+edge+vertex connectivity. Default is FullyConnectedOff. For objects that are 1 pixel wide, use FullyConnectedOn.
|
overrideprotecteddefault |
Set/Get whether the connected components are defined strictly by face connectivity or by face+edge+vertex connectivity. Default is FullyConnectedOff. For objects that are 1 pixel wide, use FullyConnectedOn.
|
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::BoxImageFilter< TInputImage, TOutputImage >.
|
virtual |
Set/Get whether the connected components are defined strictly by face connectivity or by face+edge+vertex connectivity. Default is FullyConnectedOff. For objects that are 1 pixel wide, use FullyConnectedOn.
|
virtual |
Set/Get whether the connected components are defined strictly by face connectivity or by face+edge+vertex connectivity. Default is FullyConnectedOff. For objects that are 1 pixel wide, use FullyConnectedOn.
|
overrideprotectedvirtual |
Single-threaded version of GenerateData. This filter delegates to GrayscaleDilateImageFilter GrayscaleErodeImageFilter.
Reimplemented from itk::ImageSource< TOutputImage >.
|
overrideprotectedvirtual |
BinaryClosingByReconstructionImageFilter need to make sure they request enough of an input image to account for the structuring element size. The input requested region is expanded by the radius of the structuring element. If the request extends past the LargestPossibleRegion for the input, the request is cropped by the LargestPossibleRegion.
Reimplemented from itk::BoxImageFilter< TInputImage, TOutputImage >.
|
virtual |
Get the value in the image considered as "foreground". Defaults to maximum value of InputPixelType.
|
virtual |
Set/Get whether the connected components are defined strictly by face connectivity or by face+edge+vertex connectivity. Default is FullyConnectedOff. For objects that are 1 pixel wide, use FullyConnectedOn.
|
virtual |
Runtime information support.
Reimplemented from itk::KernelImageFilter< TInputImage, TInputImage, TKernel >.
|
static |
Standard New method.
|
overrideprotectedvirtual |
Set/Get whether the connected components are defined strictly by face connectivity or by face+edge+vertex connectivity. Default is FullyConnectedOff. For objects that are 1 pixel wide, use FullyConnectedOn.
Reimplemented from itk::BoxImageFilter< TInputImage, TOutputImage >.
|
virtual |
Set the value in the image to consider as "foreground". Defaults to maximum value of InputPixelType.
|
virtual |
Set/Get whether the connected components are defined strictly by face connectivity or by face+edge+vertex connectivity. Default is FullyConnectedOff. For objects that are 1 pixel wide, use FullyConnectedOn.
|
private |
Set/Get whether the connected components are defined strictly by face connectivity or by face+edge+vertex connectivity. Default is FullyConnectedOff. For objects that are 1 pixel wide, use FullyConnectedOn.
Definition at line 118 of file itkBinaryClosingByReconstructionImageFilter.h.
|
private |
Set/Get whether the connected components are defined strictly by face connectivity or by face+edge+vertex connectivity. Default is FullyConnectedOff. For objects that are 1 pixel wide, use FullyConnectedOn.
Definition at line 120 of file itkBinaryClosingByReconstructionImageFilter.h.