Medical Imaging Interaction Toolkit
2023.04.00
Medical Imaging Interaction Toolkit
|
Template class for undirected graphs.Paramters should be the vertex and edge classes, which contains the information. More...
#include <mitkUndirectedGraph.h>
Public Types | |
typedef TVertex | VertexType |
typedef TEdge | EdgeType |
typedef boost::adjacency_list< boost::listS, boost::vecS, boost::undirectedS, boost::property< vertex_properties_t, VertexType >, boost::property< edge_properties_t, EdgeType > > | GraphType |
typedef boost::graph_traits< GraphType >::vertex_descriptor | VertexDescriptorType |
typedef boost::graph_traits< GraphType >::edge_descriptor | EdgeDescriptorType |
typedef boost::graph_traits< GraphType >::vertex_iterator | VertexIteratorType |
typedef boost::graph_traits< GraphType >::edge_iterator | EdgeIteratorType |
typedef boost::graph_traits< GraphType >::adjacency_iterator | AdjacenyIteratorType |
typedef boost::graph_traits< GraphType >::out_edge_iterator | OutEdgeIteratorType |
typedef boost::graph_traits< GraphType >::in_edge_iterator | InEdgeIteratorType |
Public Types inherited from mitk::BaseData | |
typedef BaseData | Self |
typedef itk::DataObject | Superclass |
typedef itk::SmartPointer< Self > | Pointer |
typedef itk::SmartPointer< const Self > | ConstPointer |
Public Types inherited from mitk::Identifiable | |
using | UIDType = std::string |
Public Member Functions | |
mitkClassMacro (UndirectedGraph, BaseData) | |
void | UpdateOutputInformation () override |
void | SetRequestedRegionToLargestPossibleRegion () override |
Set the RequestedRegion to the LargestPossibleRegion. More... | |
bool | RequestedRegionIsOutsideOfTheBufferedRegion () override |
Determine whether the RequestedRegion is outside of the BufferedRegion. More... | |
bool | VerifyRequestedRegion () override |
Verify that the RequestedRegion is within the LargestPossibleRegion. More... | |
void | SetRequestedRegion (const itk::DataObject *) override |
Set the requested region from this data object to match the requested region of the data object passed in as a parameter. More... | |
VertexDescriptorType | AddVertex (const VertexType &vertexData) |
void | RemoveVertex (const VertexDescriptorType &vertex) |
VertexType | GetVertex (const VertexDescriptorType &vertex) |
void | SetVertex (const VertexDescriptorType &vertex, const VertexType &vertexData) |
VertexDescriptorType | GetVertexDescriptor (const VertexType &vertexData) const |
EdgeDescriptorType | AddEdge (const VertexDescriptorType &vertexA, const VertexDescriptorType &vertexB, const EdgeType &edgeData) |
void | RemoveEdge (const EdgeDescriptorType &edge) |
EdgeType | GetEdge (const EdgeDescriptorType &edge) |
void | SetEdge (const EdgeDescriptorType &edge, const EdgeType &edgeData) |
EdgeDescriptorType | GetEdgeDescriptor (const EdgeType &edgeData) const |
std::pair< VertexType, VertexType > | GetVerticesOfAnEdge (const EdgeDescriptorType &edge) const |
EdgeDescriptorType | GetEdgeDescriptorByVerices (const VertexDescriptorType &vertexA, const VertexDescriptorType &vertexB) const |
std::vector< EdgeType > | GetAllEdgesOfAVertex (const VertexDescriptorType &vertex) const |
int | GetNumberOfVertices () const |
int | GetNumberOfEdges () const |
std::vector< VertexType > | GetVectorOfAllVertices () const |
std::vector< EdgeType > | GetVectorOfAllEdges () const |
void | Clear () override |
const GraphType & | GetGraph () const |
UndirectedGraph< VertexType, EdgeType > & | operator= (const UndirectedGraph< VertexType, EdgeType > &rhs) |
Public Member Functions inherited from mitk::BaseData | |
virtual std::vector< std::string > | GetClassHierarchy () const |
virtual const char * | GetClassName () const |
BaseProperty::ConstPointer | GetConstProperty (const std::string &propertyKey, const std::string &contextName="", bool fallBackOnDefaultContext=true) const override |
Get property by its key. More... | |
std::vector< std::string > | GetPropertyKeys (const std::string &contextName="", bool includeDefaultContext=false) const override |
Query keys of existing properties. More... | |
std::vector< std::string > | GetPropertyContextNames () const override |
Query names of existing contexts. More... | |
BaseProperty * | GetNonConstProperty (const std::string &propertyKey, const std::string &contextName="", bool fallBackOnDefaultContext=true) override |
Get property by its key. More... | |
void | SetProperty (const std::string &propertyKey, BaseProperty *property, const std::string &contextName="", bool fallBackOnDefaultContext=false) override |
Add new or change existent property. More... | |
void | RemoveProperty (const std::string &propertyKey, const std::string &contextName="", bool fallBackOnDefaultContext=false) override |
Removes a property. If the property does not exist, nothing will be done. More... | |
const mitk::TimeGeometry * | GetTimeGeometry () const |
Return the TimeGeometry of the data as const pointer. More... | |
mitk::TimeGeometry * | GetTimeGeometry () |
Return the TimeGeometry of the data as pointer. More... | |
const mitk::TimeGeometry * | GetUpdatedTimeGeometry () |
Return the TimeGeometry of the data. More... | |
virtual void | Expand (unsigned int timeSteps) |
Expands the TimeGeometry to a number of TimeSteps. More... | |
const mitk::BaseGeometry * | GetUpdatedGeometry (int t=0) |
Return the BaseGeometry of the data at time t. More... | |
mitk::BaseGeometry * | GetGeometry (int t=0) const |
Return the geometry, which is a TimeGeometry, of the data as non-const pointer. More... | |
void | UpdateOutputInformation () override |
Update the information for this BaseData (the geometry in particular) so that it can be used as an output of a BaseProcess. More... | |
void | CopyInformation (const itk::DataObject *data) override |
Copy information from the specified data set. More... | |
virtual bool | IsInitialized () const |
Check whether the data has been initialized, i.e., at least the Geometry and other header data has been set. More... | |
virtual bool | IsEmptyTimeStep (unsigned int t) const |
Check whether object contains data (at a specified time), e.g., a set of points may be empty. More... | |
virtual bool | IsEmpty () const |
Check whether object contains data (at least at one point in time), e.g., a set of points may be empty. More... | |
void | ExecuteOperation (Operation *operation) override |
overwrite if the Data can be called by an Interactor (StateMachine). More... | |
virtual void | SetGeometry (BaseGeometry *aGeometry3D) |
Set the BaseGeometry of the data, which will be referenced (not copied!). Assumes the data object has only 1 time step ( is a 3D object ) and creates a new TimeGeometry which saves the given BaseGeometry. If an TimeGeometry has already been set for the object, it will be replaced after calling this function. More... | |
virtual void | SetTimeGeometry (TimeGeometry *geometry) |
Set the TimeGeometry of the data, which will be referenced (not copied!). More... | |
virtual void | SetClonedGeometry (const BaseGeometry *aGeometry3D) |
Set a clone of the provided Geometry as Geometry of the data. Assumes the data object has only 1 time step ( is a 3D object ) and creates a new TimeGeometry. If an TimeGeometry has already been set for the object, it will be replaced after calling this function. More... | |
virtual void | SetClonedTimeGeometry (const TimeGeometry *geometry) |
Set a clone of the provided TimeGeometry as TimeGeometry of the data. More... | |
virtual void | SetClonedGeometry (const BaseGeometry *aGeometry3D, unsigned int time) |
Set a clone of the provided geometry as BaseGeometry of a given time step. More... | |
mitk::PropertyList::Pointer | GetPropertyList () const |
Get the data's property list. More... | |
void | SetPropertyList (PropertyList *propertyList) |
Set the data's property list. More... | |
mitk::BaseProperty::Pointer | GetProperty (const char *propertyKey) const |
Get the property (instance of BaseProperty) with key propertyKey from the PropertyList, and set it to this, respectively;. More... | |
void | SetProperty (const char *propertyKey, BaseProperty *property) |
virtual void | SetOrigin (const Point3D &origin) |
Convenience method for setting the origin of the BaseGeometry instances of all time steps. More... | |
itk::SmartPointer< mitk::BaseDataSource > | GetSource () const |
Get the process object that generated this data object. More... | |
unsigned int | GetTimeSteps () const |
Get the number of time steps from the TimeGeometry As the base data has not a data vector given by itself, the number of time steps is defined over the time sliced geometry. In sub classes, a better implementation could be over the length of the data vector. More... | |
itk::ModifiedTimeType | GetMTime () const override |
Get the modified time of the last change of the contents this data object or its geometry. More... | |
void | Graft (const DataObject *) override |
Public Member Functions inherited from mitk::OperationActor | |
itkTypeMacroNoParent (OperationActor) virtual ~OperationActor() | |
Public Member Functions inherited from mitk::Identifiable | |
Identifiable () | |
Identifiable (const UIDType &uid) | |
Identifiable (const Identifiable &)=delete | |
Identifiable (Identifiable &&) noexcept | |
virtual | ~Identifiable () |
Identifiable & | operator= (const Identifiable &)=delete |
Identifiable & | operator= (Identifiable &&other) noexcept |
virtual UIDType | GetUID () const |
Get unique ID of an object. More... | |
Public Member Functions inherited from mitk::IPropertyOwner | |
~IPropertyOwner () override | |
Public Member Functions inherited from mitk::IPropertyProvider | |
virtual | ~IPropertyProvider () |
Static Public Member Functions | |
static Pointer | New () |
Static Public Member Functions inherited from mitk::BaseData | |
static const char * | GetStaticNameOfClass () |
Protected Member Functions | |
UndirectedGraph () | |
~UndirectedGraph () override | |
Protected Member Functions inherited from mitk::BaseData | |
BaseData () | |
BaseData (const BaseData &other) | |
~BaseData () override | |
virtual void | InitializeTimeGeometry (unsigned int timeSteps=1) |
Initialize the TimeGeometry for a number of time steps. The TimeGeometry is initialized empty and evenly timed. In many cases it will be necessary to overwrite this in sub-classes. More... | |
virtual void | ClearData () |
reset to non-initialized state, release memory More... | |
virtual void | InitializeEmpty () |
Pure virtual; Must be used in subclasses to get a data object to a valid state. Should at least create one empty object and call Superclass::InitializeTimeGeometry() to ensure an existing valid geometry. More... | |
void | PrintSelf (std::ostream &os, itk::Indent indent) const override |
Protected Member Functions inherited from mitk::Identifiable | |
virtual void | SetUID (const UIDType &uid) |
Protected Attributes | |
GraphType | m_Graph |
Protected Attributes inherited from mitk::BaseData | |
bool | m_LastRequestedRegionWasOutsideOfTheBufferedRegion |
unsigned int | m_SourceOutputIndexDuplicate |
bool | m_Initialized |
Template class for undirected graphs.Paramters should be the vertex and edge classes, which contains the information.
Definition at line 45 of file mitkUndirectedGraph.h.
typedef boost::graph_traits<GraphType>::adjacency_iterator mitk::UndirectedGraph< TVertex, TEdge >::AdjacenyIteratorType |
Definition at line 73 of file mitkUndirectedGraph.h.
typedef boost::graph_traits<GraphType>::edge_descriptor mitk::UndirectedGraph< TVertex, TEdge >::EdgeDescriptorType |
Definition at line 69 of file mitkUndirectedGraph.h.
typedef boost::graph_traits<GraphType>::edge_iterator mitk::UndirectedGraph< TVertex, TEdge >::EdgeIteratorType |
Definition at line 72 of file mitkUndirectedGraph.h.
typedef TEdge mitk::UndirectedGraph< TVertex, TEdge >::EdgeType |
Definition at line 51 of file mitkUndirectedGraph.h.
typedef boost::adjacency_list<boost::listS, boost::vecS, boost::undirectedS, boost::property<vertex_properties_t, VertexType>, boost::property<edge_properties_t, EdgeType> > mitk::UndirectedGraph< TVertex, TEdge >::GraphType |
Creating the graph type listS: Represents the OutEdgeList as a std::list vecS: Represents the VertexList as a std::vector undirectedS: Representation for an undirected graph VertexProperty: Defines that all vertex are represented by VertexType EdgeProperty: Defines that all edges are represented by EdgeType
Definition at line 65 of file mitkUndirectedGraph.h.
typedef boost::graph_traits<GraphType>::in_edge_iterator mitk::UndirectedGraph< TVertex, TEdge >::InEdgeIteratorType |
Definition at line 75 of file mitkUndirectedGraph.h.
typedef boost::graph_traits<GraphType>::out_edge_iterator mitk::UndirectedGraph< TVertex, TEdge >::OutEdgeIteratorType |
Definition at line 74 of file mitkUndirectedGraph.h.
typedef boost::graph_traits<GraphType>::vertex_descriptor mitk::UndirectedGraph< TVertex, TEdge >::VertexDescriptorType |
Definition at line 68 of file mitkUndirectedGraph.h.
typedef boost::graph_traits<GraphType>::vertex_iterator mitk::UndirectedGraph< TVertex, TEdge >::VertexIteratorType |
Definition at line 71 of file mitkUndirectedGraph.h.
typedef TVertex mitk::UndirectedGraph< TVertex, TEdge >::VertexType |
Definition at line 50 of file mitkUndirectedGraph.h.
|
protected |
|
overrideprotected |
EdgeDescriptorType mitk::UndirectedGraph< TVertex, TEdge >::AddEdge | ( | const VertexDescriptorType & | vertexA, |
const VertexDescriptorType & | vertexB, | ||
const EdgeType & | edgeData | ||
) |
Add a new edge between the given vertices to the graph
VertexDescriptorType mitk::UndirectedGraph< TVertex, TEdge >::AddVertex | ( | const VertexType & | vertexData | ) |
Add a new vertex to the graph
|
overridevirtual |
clear the graph
Reimplemented from mitk::BaseData.
std::vector<EdgeType> mitk::UndirectedGraph< TVertex, TEdge >::GetAllEdgesOfAVertex | ( | const VertexDescriptorType & | vertex | ) | const |
Get all edges of the given vertex
EdgeType mitk::UndirectedGraph< TVertex, TEdge >::GetEdge | ( | const EdgeDescriptorType & | edge | ) |
Get the edge data of the given edge descriptor
EdgeDescriptorType mitk::UndirectedGraph< TVertex, TEdge >::GetEdgeDescriptor | ( | const EdgeType & | edgeData | ) | const |
Returns the descriptor if the edge exist in the graph, otherwise undefined
EdgeDescriptorType mitk::UndirectedGraph< TVertex, TEdge >::GetEdgeDescriptorByVerices | ( | const VertexDescriptorType & | vertexA, |
const VertexDescriptorType & | vertexB | ||
) | const |
Returns the edge descriptor from the edge which has the given vertices as source and target
const GraphType& mitk::UndirectedGraph< TVertex, TEdge >::GetGraph | ( | ) | const |
get the graph
int mitk::UndirectedGraph< TVertex, TEdge >::GetNumberOfEdges | ( | ) | const |
get overall number of edges in the graph
int mitk::UndirectedGraph< TVertex, TEdge >::GetNumberOfVertices | ( | ) | const |
Get overall number of vertices in the graph
std::vector<EdgeType> mitk::UndirectedGraph< TVertex, TEdge >::GetVectorOfAllEdges | ( | ) | const |
get vector containing all the edges of the network
std::vector<VertexType> mitk::UndirectedGraph< TVertex, TEdge >::GetVectorOfAllVertices | ( | ) | const |
get vector containing all the vertices of the graph
VertexType mitk::UndirectedGraph< TVertex, TEdge >::GetVertex | ( | const VertexDescriptorType & | vertex | ) |
Get the vertex data of the given vertex descriptor
VertexDescriptorType mitk::UndirectedGraph< TVertex, TEdge >::GetVertexDescriptor | ( | const VertexType & | vertexData | ) | const |
Returns the descriptor if the vertex exist in the graph, otherwise undefined
std::pair<VertexType, VertexType> mitk::UndirectedGraph< TVertex, TEdge >::GetVerticesOfAnEdge | ( | const EdgeDescriptorType & | edge | ) | const |
Get parent and target vertex of the given edge
mitk::UndirectedGraph< TVertex, TEdge >::mitkClassMacro | ( | UndirectedGraph< TVertex, TEdge > | , |
BaseData | |||
) |
|
static |
UndirectedGraph<VertexType, EdgeType>& mitk::UndirectedGraph< TVertex, TEdge >::operator= | ( | const UndirectedGraph< VertexType, EdgeType > & | rhs | ) |
void mitk::UndirectedGraph< TVertex, TEdge >::RemoveEdge | ( | const EdgeDescriptorType & | edge | ) |
Remove the edge from the graph
void mitk::UndirectedGraph< TVertex, TEdge >::RemoveVertex | ( | const VertexDescriptorType & | vertex | ) |
Remove the vertex from the graph
|
inlineoverridevirtual |
Determine whether the RequestedRegion is outside of the BufferedRegion.
This method returns true if the RequestedRegion is outside the BufferedRegion (true if at least one pixel is outside). This is used by the pipeline mechanism to determine whether a filter needs to re-execute in order to satisfy the current request. If the current RequestedRegion is already inside the BufferedRegion from the previous execution (and the current filter is up to date), then a given filter does not need to re-execute
Implements mitk::BaseData.
Definition at line 88 of file mitkUndirectedGraph.h.
void mitk::UndirectedGraph< TVertex, TEdge >::SetEdge | ( | const EdgeDescriptorType & | edge, |
const EdgeType & | edgeData | ||
) |
Set the edge data of the given edge descriptor
|
inlineoverridevirtual |
Set the requested region from this data object to match the requested region of the data object passed in as a parameter.
This method is implemented in the concrete subclasses of BaseData.
Implements mitk::BaseData.
Definition at line 90 of file mitkUndirectedGraph.h.
|
inlineoverridevirtual |
Set the RequestedRegion to the LargestPossibleRegion.
This forces a filter to produce all of the output in one execution (i.e. not streaming) on the next call to Update().
Implements mitk::BaseData.
Definition at line 87 of file mitkUndirectedGraph.h.
void mitk::UndirectedGraph< TVertex, TEdge >::SetVertex | ( | const VertexDescriptorType & | vertex, |
const VertexType & | vertexData | ||
) |
Set the vertex data of the given vertex descriptor
|
inlineoverride |
Definition at line 82 of file mitkUndirectedGraph.h.
|
inlineoverridevirtual |
Verify that the RequestedRegion is within the LargestPossibleRegion.
If the RequestedRegion is not within the LargestPossibleRegion, then the filter cannot possibly satisfy the request. This method returns true if the request can be satisfied (even if it will be necessary to process the entire LargestPossibleRegion) and returns false otherwise. This method is used by PropagateRequestedRegion(). PropagateRequestedRegion() throws a InvalidRequestedRegionError exception if the requested region is not within the LargestPossibleRegion.
Implements mitk::BaseData.
Definition at line 89 of file mitkUndirectedGraph.h.
|
protected |
Definition at line 157 of file mitkUndirectedGraph.h.