|
Medical Imaging Interaction Toolkit
2025.08.00
Medical Imaging Interaction Toolkit
|
Calculates a LiveWire contour between two points in an image. More...
#include <mitkImageLiveWireContourModelFilter.h>


Public Types | |
| typedef ContourModel | OutputType |
| typedef OutputType::Pointer | OutputTypePointer |
| typedef mitk::Image | InputType |
| typedef itk::Image< float, 2 > | InternalImageType |
| typedef itk::ShortestPathImageFilter< InternalImageType, InternalImageType > | ShortestPathImageFilterType |
| typedef itk::ShortestPathCostFunctionLiveWire< InternalImageType > | CostFunctionType |
| typedef std::vector< itk::Index< 2 > > | ShortestPathType |
Public Types inherited from mitk::ContourModelSource | |
| typedef ContourModel | OutputType |
| typedef OutputType::Pointer | OutputTypePointer |
Public Types inherited from mitk::BaseDataSource | |
| typedef BaseDataSource | Self |
| typedef itk::ProcessObject | Superclass |
| typedef itk::SmartPointer< Self > | Pointer |
| typedef itk::SmartPointer< const Self > | ConstPointer |
| typedef BaseData | OutputType |
| typedef itk::DataObject::DataObjectIdentifierType | DataObjectIdentifierType |
Public Member Functions | |
| mitkClassMacro (ImageLiveWireContourModelFilter, ContourModelSource) | |
| Pointer | Clone () const |
| virtual void | SetStartPoint (mitk::Point3D _arg) |
| start point in world coordinates More... | |
| virtual mitk::Point3D | GetStartPoint () |
| virtual void | SetEndPoint (mitk::Point3D _arg) |
| end point in woorld coordinates More... | |
| virtual mitk::Point3D | GetEndPoint () |
| virtual void | SetUseDynamicCostMap (bool _arg) |
| Create dynamic cost transfer map - use on the fly training. More... | |
| virtual bool | GetUseDynamicCostMap () |
| void | ClearRepulsivePoints () |
| Clear all repulsive points used in the cost function. More... | |
| void | SetRepulsivePoints (const ShortestPathType &points) |
| Set a vector with repulsive points to use in the cost function. More... | |
| void | AddRepulsivePoint (const itk::Index< 2 > &idx) |
| Add a single repulsive point to the cost function. More... | |
| void | RemoveRepulsivePoint (const itk::Index< 2 > &idx) |
| Remove a single repulsive point from the cost function. More... | |
| virtual void | SetInput (const InputType *input) |
| virtual void | SetInput (unsigned int idx, const InputType *input) |
| const InputType * | GetInput (void) |
| const InputType * | GetInput (unsigned int idx) |
| virtual OutputType * | GetOutput () |
| virtual void | DumpMaskImage () |
| bool | CreateDynamicCostMap (mitk::ContourModel *path=nullptr) |
| Create dynamic cost transfer map - on the fly training. More... | |
| void | SetUseCostFunction (bool doUseCostFunction) |
Public Member Functions inherited from mitk::ContourModelSource | |
| mitkClassMacro (ContourModelSource, BaseDataSource) | |
| Pointer | Clone () const |
| mitkBaseDataSourceGetOutputDeclarations itk::DataObject::Pointer | MakeOutput (DataObjectPointerArraySizeType idx) override |
| itk::DataObject::Pointer | MakeOutput (const DataObjectIdentifierType &name) override |
Public Member Functions inherited from mitk::BaseDataSource | |
| virtual std::vector< std::string > | GetClassHierarchy () const |
| virtual const char * | GetClassName () const |
| OutputType * | GetOutput () |
| const OutputType * | GetOutput () const |
| OutputType * | GetOutput (DataObjectPointerArraySizeType idx) |
| const OutputType * | GetOutput (DataObjectPointerArraySizeType idx) const |
| virtual void | GraftOutput (OutputType *output) |
| Graft the specified BaseData onto this BaseDataSource's output. More... | |
| virtual void | GraftOutput (const DataObjectIdentifierType &key, OutputType *output) |
| virtual void | GraftNthOutput (unsigned int idx, OutputType *output) |
| Graft the specified base data object onto this BaseDataSource's idx'th output. More... | |
| bool | Updating () const |
| Access itk::ProcessObject::m_Updating. More... | |
Static Public Member Functions | |
| static Pointer | New () |
Static Public Member Functions inherited from mitk::ContourModelSource | |
| static Pointer | New () |
Static Public Member Functions inherited from mitk::BaseDataSource | |
| static const char * | GetStaticNameOfClass () |
Protected Member Functions | |
| ImageLiveWireContourModelFilter () | |
| ~ImageLiveWireContourModelFilter () override | |
| void | GenerateOutputInformation () override |
| void | GenerateData () override |
| void | UpdateLiveWire () |
| template<typename TPixel , unsigned int VImageDimension> | |
| void | ItkPreProcessImage (const itk::Image< TPixel, VImageDimension > *inputImage) |
| template<typename TPixel , unsigned int VImageDimension> | |
| void | CreateDynamicCostMapByITK (const itk::Image< TPixel, VImageDimension > *inputImage, mitk::ContourModel *path=nullptr) |
Protected Member Functions inherited from mitk::ContourModelSource | |
| ContourModelSource () | |
| ~ContourModelSource () override | |
Protected Member Functions inherited from mitk::BaseDataSource | |
| BaseDataSource () | |
| ~BaseDataSource () override | |
Protected Attributes | |
| mitk::Point3D | m_StartPoint |
| start point in worldcoordinates More... | |
| mitk::Point3D | m_EndPoint |
| end point in woorldcoordinates More... | |
| mitk::Point3D | m_StartPointInIndex |
| Start point in index. More... | |
| mitk::Point3D | m_EndPointInIndex |
| End point in index. More... | |
| CostFunctionType::Pointer | m_CostFunction |
| The cost function to compute costs between two pixels. More... | |
| ShortestPathImageFilterType::Pointer | m_ShortestPathFilter |
| Shortest path filter according to cost function m_CostFunction. More... | |
| bool | m_UseDynamicCostMap |
| Flag to use a dynamic cost map or not. More... | |
| unsigned int | m_TimeStep |
| InternalImageType::Pointer | m_InternalImage |
Additional Inherited Members | |
Static Protected Member Functions inherited from mitk::BaseDataSource | |
| static Pointer | New () |
Calculates a LiveWire contour between two points in an image.
For defining costs between two pixels specific features are extracted from the image and transformed into a single cost value.
The filter is able to create dynamic cost transfer map and thus use on the fly training.
Caution: time support currently not available. Filter will always work on the first timestep in its current implementation.
Definition at line 48 of file mitkImageLiveWireContourModelFilter.h.
| typedef itk::ShortestPathCostFunctionLiveWire<InternalImageType> mitk::ImageLiveWireContourModelFilter::CostFunctionType |
Definition at line 61 of file mitkImageLiveWireContourModelFilter.h.
Definition at line 57 of file mitkImageLiveWireContourModelFilter.h.
| typedef itk::Image<float, 2> mitk::ImageLiveWireContourModelFilter::InternalImageType |
Definition at line 59 of file mitkImageLiveWireContourModelFilter.h.
Definition at line 53 of file mitkImageLiveWireContourModelFilter.h.
Definition at line 56 of file mitkImageLiveWireContourModelFilter.h.
| typedef itk::ShortestPathImageFilter<InternalImageType, InternalImageType> mitk::ImageLiveWireContourModelFilter::ShortestPathImageFilterType |
Definition at line 60 of file mitkImageLiveWireContourModelFilter.h.
| typedef std::vector<itk::Index<2> > mitk::ImageLiveWireContourModelFilter::ShortestPathType |
Definition at line 62 of file mitkImageLiveWireContourModelFilter.h.
|
protected |
|
overrideprotected |
| void mitk::ImageLiveWireContourModelFilter::AddRepulsivePoint | ( | const itk::Index< 2 > & | idx | ) |
Add a single repulsive point to the cost function.
| void mitk::ImageLiveWireContourModelFilter::ClearRepulsivePoints | ( | ) |
Clear all repulsive points used in the cost function.
| Pointer mitk::ImageLiveWireContourModelFilter::Clone | ( | ) | const |
| bool mitk::ImageLiveWireContourModelFilter::CreateDynamicCostMap | ( | mitk::ContourModel * | path = nullptr | ) |
Create dynamic cost transfer map - on the fly training.
|
protected |
|
virtual |
|
overrideprotected |
|
inlineoverrideprotected |
Definition at line 118 of file mitkImageLiveWireContourModelFilter.h.
|
virtual |
| const InputType* mitk::ImageLiveWireContourModelFilter::GetInput | ( | unsigned int | idx | ) |
| const InputType* mitk::ImageLiveWireContourModelFilter::GetInput | ( | void | ) |
|
virtual |
|
virtual |
|
virtual |
|
protected |
| mitk::ImageLiveWireContourModelFilter::mitkClassMacro | ( | ImageLiveWireContourModelFilter | , |
| ContourModelSource | |||
| ) |
|
static |
| void mitk::ImageLiveWireContourModelFilter::RemoveRepulsivePoint | ( | const itk::Index< 2 > & | idx | ) |
Remove a single repulsive point from the cost function.
|
virtual |
end point in woorld coordinates
|
virtual |
|
virtual |
| void mitk::ImageLiveWireContourModelFilter::SetRepulsivePoints | ( | const ShortestPathType & | points | ) |
Set a vector with repulsive points to use in the cost function.
|
virtual |
start point in world coordinates
|
inline |
Definition at line 111 of file mitkImageLiveWireContourModelFilter.h.
|
virtual |
Create dynamic cost transfer map - use on the fly training.
|
protected |
|
protected |
The cost function to compute costs between two pixels.
Definition at line 137 of file mitkImageLiveWireContourModelFilter.h.
|
protected |
end point in woorldcoordinates
Definition at line 128 of file mitkImageLiveWireContourModelFilter.h.
|
protected |
End point in index.
Definition at line 134 of file mitkImageLiveWireContourModelFilter.h.
|
protected |
Definition at line 154 of file mitkImageLiveWireContourModelFilter.h.
|
protected |
Shortest path filter according to cost function m_CostFunction.
Definition at line 140 of file mitkImageLiveWireContourModelFilter.h.
|
protected |
start point in worldcoordinates
Definition at line 125 of file mitkImageLiveWireContourModelFilter.h.
|
protected |
Start point in index.
Definition at line 131 of file mitkImageLiveWireContourModelFilter.h.
|
protected |
Definition at line 145 of file mitkImageLiveWireContourModelFilter.h.
|
protected |
Flag to use a dynamic cost map or not.
Definition at line 143 of file mitkImageLiveWireContourModelFilter.h.