ITK
5.2.0
Insight Toolkit
|
#include <itkParametricSpaceToImageSpaceMeshFilter.h>
Static Public Member Functions | |
static Pointer | New () |
Static Public Member Functions inherited from itk::MeshToMeshFilter< TInputMesh, TOutputMesh > | |
static Pointer | New () |
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 () |
Additional Inherited Members | |
Static Protected Member Functions inherited from itk::ProcessObject | |
static constexpr float | progressFixedToFloat (uint32_t fixed) |
static uint32_t | progressFloatToFixed (float f) |
Protected Attributes inherited from itk::ProcessObject | |
bool | m_Updating |
TimeStamp | m_OutputInformationMTime |
Protected Attributes inherited from itk::LightObject | |
std::atomic< int > | m_ReferenceCount |
ParametricSpaceToImageSpaceMeshFilter takes an itk::Mesh on which the point Data is expected to contain itk::Index of itk::Image pixels associated with each point of the Mesh, and construct with them a new mesh whose points are in the coordinates of those pixels.
The input mesh is assumed to represent pixels in some parametric space. The output mesh is suitable to be superimposed as an overlay to the associated image specified by the user.
The additional content of the mesh is passed untouched, including the connectivity and the additional information contained on cells and points.
Definition at line 47 of file itkParametricSpaceToImageSpaceMeshFilter.h.
using itk::ParametricSpaceToImageSpaceMeshFilter< TInputMesh, TOutputMesh >::ConstPointer = SmartPointer<const Self> |
Definition at line 56 of file itkParametricSpaceToImageSpaceMeshFilter.h.
using itk::ParametricSpaceToImageSpaceMeshFilter< TInputMesh, TOutputMesh >::CoordRepType = typename TInputMesh::CoordRepType |
Type for representing coordinates.
Definition at line 59 of file itkParametricSpaceToImageSpaceMeshFilter.h.
using itk::ParametricSpaceToImageSpaceMeshFilter< TInputMesh, TOutputMesh >::InputMeshPointer = typename InputMeshType::Pointer |
Definition at line 63 of file itkParametricSpaceToImageSpaceMeshFilter.h.
using itk::ParametricSpaceToImageSpaceMeshFilter< TInputMesh, TOutputMesh >::InputMeshType = TInputMesh |
Definition at line 61 of file itkParametricSpaceToImageSpaceMeshFilter.h.
using itk::ParametricSpaceToImageSpaceMeshFilter< TInputMesh, TOutputMesh >::OutputMeshPointer = typename OutputMeshType::Pointer |
Definition at line 64 of file itkParametricSpaceToImageSpaceMeshFilter.h.
using itk::ParametricSpaceToImageSpaceMeshFilter< TInputMesh, TOutputMesh >::OutputMeshType = TOutputMesh |
Definition at line 62 of file itkParametricSpaceToImageSpaceMeshFilter.h.
using itk::ParametricSpaceToImageSpaceMeshFilter< TInputMesh, TOutputMesh >::Pointer = SmartPointer<Self> |
Definition at line 55 of file itkParametricSpaceToImageSpaceMeshFilter.h.
using itk::ParametricSpaceToImageSpaceMeshFilter< TInputMesh, TOutputMesh >::Self = ParametricSpaceToImageSpaceMeshFilter |
Standard class type aliases.
Definition at line 53 of file itkParametricSpaceToImageSpaceMeshFilter.h.
using itk::ParametricSpaceToImageSpaceMeshFilter< TInputMesh, TOutputMesh >::Superclass = MeshToMeshFilter<TInputMesh, TOutputMesh> |
Definition at line 54 of file itkParametricSpaceToImageSpaceMeshFilter.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::MeshToMeshFilter< TInputMesh, TOutputMesh >.
|
overrideprotectedvirtual |
Generate requested data.
Reimplemented from itk::ProcessObject.
|
overrideprotectedvirtual |
Generate additional information in the output
Reimplemented from itk::ProcessObject.
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::MeshToMeshFilter< TInputMesh, TOutputMesh >.
|
static |
Method for creation through the object factory.
|
overrideprotectedvirtual |
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 SmartPointer to a DataObject. If a subclass of MeshSource has multiple outputs of different types, then that class must provide an implementation of MakeOutput().
Reimplemented from itk::MeshSource< TOutputMesh >.