ITK
6.0.0
Insight Toolkit
|
#include <itkImageToMeshFilter.h>
ImageToMeshFilter is the base class for all process objects that output Mesh data and require image data as input. Specifically, this class defines the SetInput() method for defining the input to a filter.
Definition at line 36 of file itkImageToMeshFilter.h.
Additional Inherited Members | |
Static Public Member Functions inherited from itk::MeshSource< TOutputMesh > | |
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 val) |
Static Public Member Functions inherited from itk::LightObject | |
static void | BreakOnError () |
static Pointer | New () |
Static Protected Member Functions inherited from itk::ProcessObject | |
template<typename TSourceObject > | |
static void | MakeRequiredOutputs (TSourceObject &sourceObject, const DataObjectPointerArraySizeType numberOfRequiredOutputs) |
static constexpr float | progressFixedToFloat (uint32_t fixed) |
static uint32_t | progressFloatToFixed (float f) |
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::ImageToMeshFilter< TInputImage, TOutputMesh >::ConstPointer = SmartPointer<const Self> |
Definition at line 45 of file itkImageToMeshFilter.h.
using itk::ImageToMeshFilter< TInputImage, TOutputMesh >::DataObjectPointerArraySizeType = ProcessObject::DataObjectPointerArraySizeType |
Create a valid output.
Definition at line 51 of file itkImageToMeshFilter.h.
using itk::ImageToMeshFilter< TInputImage, TOutputMesh >::InputImageConstPointer = typename InputImageType::ConstPointer |
Definition at line 59 of file itkImageToMeshFilter.h.
using itk::ImageToMeshFilter< TInputImage, TOutputMesh >::InputImagePixelType = typename InputImageType::PixelType |
Definition at line 61 of file itkImageToMeshFilter.h.
using itk::ImageToMeshFilter< TInputImage, TOutputMesh >::InputImagePointer = typename InputImageType::Pointer |
Definition at line 58 of file itkImageToMeshFilter.h.
using itk::ImageToMeshFilter< TInputImage, TOutputMesh >::InputImageRegionType = typename InputImageType::RegionType |
Definition at line 60 of file itkImageToMeshFilter.h.
using itk::ImageToMeshFilter< TInputImage, TOutputMesh >::InputImageType = TInputImage |
Some Image related type alias.
Definition at line 57 of file itkImageToMeshFilter.h.
using itk::ImageToMeshFilter< TInputImage, TOutputMesh >::OutputMeshPointer = typename OutputMeshType::Pointer |
Definition at line 65 of file itkImageToMeshFilter.h.
using itk::ImageToMeshFilter< TInputImage, TOutputMesh >::OutputMeshType = TOutputMesh |
Some Mesh related type alias.
Definition at line 64 of file itkImageToMeshFilter.h.
using itk::ImageToMeshFilter< TInputImage, TOutputMesh >::Pointer = SmartPointer<Self> |
Definition at line 44 of file itkImageToMeshFilter.h.
using itk::ImageToMeshFilter< TInputImage, TOutputMesh >::Self = ImageToMeshFilter |
Standard class type aliases.
Definition at line 42 of file itkImageToMeshFilter.h.
using itk::ImageToMeshFilter< TInputImage, TOutputMesh >::Superclass = MeshSource<TOutputMesh> |
Definition at line 43 of file itkImageToMeshFilter.h.
|
protected |
|
overrideprotecteddefault |
|
overridevirtual |
Prepare the output
Reimplemented from itk::ProcessObject.
Reimplemented in itk::ImageToParametricSpaceFilter< TInputImage, TOutputMesh >, and itk::BinaryMaskToNarrowBandPointSetFilter< TInputImage, TOutputMesh >.
|
inline |
Get the input image of this process object.
Definition at line 82 of file itkImageToMeshFilter.h.
const InputImageType * itk::ImageToMeshFilter< TInputImage, TOutputMesh >::GetInput | ( | unsigned int | idx | ) |
Get the input image of this process object.
|
overridevirtual |
Reimplemented from itk::ProcessObject.
Reimplemented in itk::ImageToParametricSpaceFilter< TInputImage, TOutputMesh >, and itk::BinaryMaskToNarrowBandPointSetFilter< TInputImage, TOutputMesh >.
OutputMeshType * itk::ImageToMeshFilter< TInputImage, TOutputMesh >::GetOutput | ( | ) |
Get the output Mesh of this process object.
|
overridevirtual |
Make a DataObject of the correct type to used as the specified output.
Every ProcessObject subclass must be able to create a DataObject that can be used as a specified output. This method is automatically called when DataObject::DisconnectPipeline() is called. DataObject::DisconnectPipeline, disconnects a data object from being an output of its current source. When the data object is disconnected, the ProcessObject needs to construct a replacement output data object so that the ProcessObject is in a valid state. So DataObject::DisconnectPipeline eventually calls ProcessObject::MakeOutput. Note that MakeOutput always returns a itkSmartPointer to a DataObject. ImageSource and MeshSource override this method to create the correct type of image and mesh respectively. If a filter has multiple outputs of different types, then that filter must provide an implementation of MakeOutput().
Reimplemented from itk::ProcessObject.
|
inline |
Definition at line 72 of file itkImageToMeshFilter.h.
void itk::ImageToMeshFilter< TInputImage, TOutputMesh >::SetInput | ( | unsigned int | idx, |
const InputImageType * | input | ||
) |