ITK
5.0.0
Insight Segmentation and Registration Toolkit
|
#include <itkReconstructionImageFilter.h>
Performs a grayscale geodesic reconstruction – for performance comparison with GrayscaleGeodesicDilateImageFilter.
This filter uses Luc Vincent's algorithm, which employs raster and antiraster propagation steps followed by a FIFO based propagation step. "Morphological grayscale reconstruction in image analysis - applications and efficient algorithms" – IEEE Transactions on Image processing, Vol 2, No 2, pp 176-201, April 1993
Definition at line 55 of file itkReconstructionImageFilter.h.
Public Types | |
using | ConstPointer = SmartPointer< const Self > |
using | InputImageIndexType = typename InputImageType::IndexType |
using | InputImagePixelType = typename InputImageType::PixelType |
using | InputImageType = TInputImage |
using | ISizeType = typename InputImageType::SizeType |
using | MarkerImageConstPointer = typename MarkerImageType::ConstPointer |
using | MarkerImagePixelType = typename MarkerImageType::PixelType |
using | MarkerImagePointer = typename MarkerImageType::Pointer |
using | MarkerImageRegionType = typename MarkerImageType::RegionType |
using | MarkerImageType = TInputImage |
using | MaskImageConstPointer = typename MaskImageType::ConstPointer |
using | MaskImagePixelType = typename MaskImageType::PixelType |
using | MaskImagePointer = typename MaskImageType::Pointer |
using | MaskImageRegionType = typename MaskImageType::RegionType |
using | MaskImageType = TInputImage |
using | OutputImageConstPointer = typename OutputImageType::ConstPointer |
using | OutputImageIndexType = typename OutputImageType::IndexType |
using | OutputImagePixelType = typename OutputImageType::PixelType |
using | OutputImagePointer = typename OutputImageType::Pointer |
using | OutputImageRegionType = typename OutputImageType::RegionType |
using | OutputImageType = TOutputImage |
using | Pointer = SmartPointer< Self > |
using | Self = ReconstructionImageFilter |
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 | MarkerImageDimension = TInputImage::ImageDimension |
static constexpr unsigned int | MaskImageDimension = TInputImage::ImageDimension |
static constexpr unsigned int | OutputImageDimension = 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 |
Protected Attributes | |
TInputImage::PixelType | m_MarkerValue |
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 |
Private Types | |
using | CNInputIterator = ConstShapedNeighborhoodIterator< InputImageType > |
using | FaceCalculatorType = typename itk::NeighborhoodAlgorithm::ImageBoundaryFacesCalculator< OutputImageType > |
using | FaceListType = typename FaceCalculatorType::FaceListType |
using | FaceListTypeIt = typename FaceCalculatorType::FaceListType::iterator |
using | InIndexType = typename InputImageType::IndexType |
using | InputIteratorType = ImageRegionConstIterator< InputImageType > |
using | NOutputIterator = ShapedNeighborhoodIterator< OutputImageType > |
using | OutIndexType = typename OutputImageType::IndexType |
using | OutputIteratorType = ImageRegionIterator< OutputImageType > |
Private Attributes | |
bool | m_FullyConnected |
bool | m_UseInternalCopy |
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) |
|
private |
Definition at line 175 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::ConstPointer = SmartPointer< const Self > |
Definition at line 66 of file itkReconstructionImageFilter.h.
|
private |
Definition at line 165 of file itkReconstructionImageFilter.h.
|
private |
Definition at line 167 of file itkReconstructionImageFilter.h.
|
private |
Definition at line 168 of file itkReconstructionImageFilter.h.
|
private |
Definition at line 174 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::InputImageIndexType = typename InputImageType::IndexType |
Definition at line 77 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::InputImagePixelType = typename InputImageType::PixelType |
Definition at line 76 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::InputImageType = TInputImage |
Some convenient type alias.
Definition at line 69 of file itkReconstructionImageFilter.h.
|
private |
Definition at line 170 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::ISizeType = typename InputImageType::SizeType |
Definition at line 70 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::MarkerImageConstPointer = typename MarkerImageType::ConstPointer |
Definition at line 73 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::MarkerImagePixelType = typename MarkerImageType::PixelType |
Definition at line 75 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::MarkerImagePointer = typename MarkerImageType::Pointer |
Definition at line 72 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::MarkerImageRegionType = typename MarkerImageType::RegionType |
Definition at line 74 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::MarkerImageType = TInputImage |
Definition at line 71 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::MaskImageConstPointer = typename MaskImageType::ConstPointer |
Definition at line 80 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::MaskImagePixelType = typename MaskImageType::PixelType |
Definition at line 82 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::MaskImagePointer = typename MaskImageType::Pointer |
Definition at line 79 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::MaskImageRegionType = typename MaskImageType::RegionType |
Definition at line 81 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::MaskImageType = TInputImage |
Definition at line 78 of file itkReconstructionImageFilter.h.
|
private |
Definition at line 176 of file itkReconstructionImageFilter.h.
|
private |
Definition at line 173 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::OutputImageConstPointer = typename OutputImageType::ConstPointer |
Definition at line 85 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::OutputImageIndexType = typename OutputImageType::IndexType |
Definition at line 88 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::OutputImagePixelType = typename OutputImageType::PixelType |
Definition at line 87 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::OutputImagePointer = typename OutputImageType::Pointer |
Definition at line 84 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::OutputImageRegionType = typename OutputImageType::RegionType |
Definition at line 86 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::OutputImageType = TOutputImage |
Definition at line 83 of file itkReconstructionImageFilter.h.
|
private |
Definition at line 171 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::Pointer = SmartPointer< Self > |
Definition at line 65 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::Self = ReconstructionImageFilter |
Standard class type aliases.
Definition at line 62 of file itkReconstructionImageFilter.h.
using itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::Superclass = ImageToImageFilter< TInputImage, TOutputImage > |
Definition at line 63 of file itkReconstructionImageFilter.h.
|
protected |
|
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 |
ValuedRegionalExtremaImageFilter will produce the entire output.
Reimplemented from itk::ProcessObject.
|
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 |
A version of GenerateData() specific for image processing filters. This implementation will split the processing across multiple threads. The buffer is allocated by this method. Then the BeforeThreadedGenerateData() method is called (if provided). Then, a series of threads are spawned each calling DynamicThreadedGenerateData(). After all the threads have completed processing, the AfterThreadedGenerateData() method is called (if provided). If an image processing filter cannot be threaded, the filter should provide an implementation of GenerateData(). That implementation is responsible for allocating the output buffer. If a filter can be threaded, it should NOT provide a GenerateData() method but should provide a DynamicThreadedGenerateData() instead.
Reimplemented from itk::ImageSource< TOutputImage >.
|
overrideprotectedvirtual |
ValuedRegionalExtremaImageFilter needs the entire input be available. Thus, it needs to provide an implementation of GenerateInputRequestedRegion().
Reimplemented from itk::ImageToImageFilter< 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.
const MarkerImageType* itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::GetMarkerImage | ( | ) |
const MaskImageType* itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::GetMaskImage | ( | ) |
|
virtual |
Runtime information support.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::ReconstructionByDilationImageFilter< TInputImage, TOutputImage >, and itk::ReconstructionByErosionImageFilter< TInputImage, TOutputImage >.
|
virtual |
Perform a padding of the image internally to increase the performance of the filter. UseInternalCopy can be set to false to reduce the memory usage.
|
static |
Standard New method.
|
overrideprotectedvirtual |
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 >.
|
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.
void itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::SetMarkerImage | ( | const MarkerImageType * | ) |
Set/Get the marker image. Traditionally, the marker image must be pixelwise less than or equal to the mask image (for dilation), however this filter implicitly applies a mask to force the constraint to hold. The marker image the image that is dilated by this filter.
void itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >::SetMaskImage | ( | const MaskImageType * | ) |
Set/Get the mask image. The mask image is used to "mask" the dilated marker image. The mask operation is a pixelwise minimum.
|
virtual |
Perform a padding of the image internally to increase the performance of the filter. UseInternalCopy can be set to false to reduce the memory usage.
|
virtual |
Perform a padding of the image internally to increase the performance of the filter. UseInternalCopy can be set to false to reduce the memory usage.
|
virtual |
Perform a padding of the image internally to increase the performance of the filter. UseInternalCopy can be set to false to reduce the memory usage.
|
private |
Definition at line 162 of file itkReconstructionImageFilter.h.
|
protected |
the value of the border - used in boundary condition.
Definition at line 159 of file itkReconstructionImageFilter.h.
|
private |
Definition at line 163 of file itkReconstructionImageFilter.h.
|
static |
ImageDimension constants ImageDimension constants
Definition at line 93 of file itkReconstructionImageFilter.h.
|
static |
Definition at line 94 of file itkReconstructionImageFilter.h.
|
static |
Definition at line 95 of file itkReconstructionImageFilter.h.