MeVisLab Scripting Reference
|
Inherits QObject.
Public Slots | |
size_t | numNodes () |
size_t | numEdges () |
size_t | numRoots () |
MLVesselNodeWrapper * | getIdNode (qint64 id) |
MLVesselEdgeWrapper * | getIdEdge (qint64 id) |
MLVesselNodeWrapper * | getNode (QVariantList pos) |
MLVesselEdgeWrapper * | getEdge (QVariantList pos) |
QVariantList | getEdges () |
QVariantList | getNodes () |
QVariantList | getRoots () |
void | addGraph (MLGraphWrapper *graph) |
MLVesselNodeWrapper * | createNode (QList< double > pos, qint64 useId=-1) |
MLVesselEdgeWrapper * | createEdge (qint64 predNodeId, qint64 succNodeId, qint64 useId=-1, bool createSkeletons=true) |
void | removeEdge (qint64 edgeId) |
MLVesselEdgeWrapper * | splitEdge (qint64 edgeId, size_t skeletonIndex) |
void | resampleEdges (double resolution) |
void | insertRoot (MLVesselNodeWrapper *node) |
void | removeRoot (MLVesselNodeWrapper *node) |
void | smooth (int numSmoothingPasses, double smoothingFactor) |
void | directGraph (double floodThreshold=0.0) |
void | stripCycles () |
void | removeValency2Nodes () |
void | transform (QVariantList matrix4) |
QVariantList | shortestPath (MLVesselNodeWrapper *startNode, MLVesselNodeWrapper *endNode) |
QVariantList | shortestPath (QVariantList fromPos, QVariantList toPos) |
QVariant | getImageExtent () |
QVariant | getVoxelToWorldMatrix () |
void | setImageExtent (QVariantList extent) |
void | setVoxelSize (QVariantList size) |
void | setVoxelToWorldMatrix (QVariantList matrix4) |
void | clampToImage () |
bool | getUseBinaryPersistence () |
void | useBinaryPersistence (bool use) |
QByteArray | toBinaryData () const |
void | fromBinaryData (const QByteArray &data) |
Properties | |
QVariantList | edges |
QVariantList | nodes |
QVariantList | roots |
A class that wraps Graph objects for use in scripting.
|
slot |
Adds an entire graph to the current graph.
|
slot |
Clamps the graph to the image boundary as specified by the image extent and the voxel-to-world matrix.
|
slot |
Creates a VesselEdge with a unique ID, adds it to the Nodes identified by the respective IDs, and returns a pointer to it.
By default, line skeletons will be created on the edge. Can be deactivated by setting createSkeletons to false.
|
slot |
Creates a VesselNode with a unique ID, adds it to the Graph, and returns a pointer to it.
|
slot |
Directs the graph from root to leaves anew.
This is done following the weights of the edges downwards.
|
slot |
Reconstructs the graph using the binary data.
|
slot |
Returns the edge with minimal distance to pos
. Uses method distance() of edge classes.
|
slot |
Returns all the edges of the graph as MLVesselEdgeWrapper.
|
slot |
Returns an edge by ID.
|
slot |
Returns a node by ID.
|
slot |
Image extent of the image the graph is compiled from.
|
slot |
Returns the node with minimal distance to pos
. Uses method distance() of node classes.
|
slot |
Returns all the nodes of the graph as MLVesselNodeWrapper.
|
slot |
Returns all the root nodes of the graph as MLVesselNodeWrapper.
|
inlineslot |
Returns whether the graph uses binary persistence.
|
slot |
Voxel-to-world matrix (4x4) of the image the graph is compiled from.
|
slot |
Inserts a node to the list of root nodes.
|
inlineslot |
Returns the number of nodes.
|
inlineslot |
Returns the number of edges.
|
inlineslot |
Returns the number of root nodes.
|
slot |
Removes an edge with the given edgeId
from the graph.
|
slot |
Removes a root from the graph.
|
slot |
Removes all nodes which are connected to exactly two different edges by mergin those two edges.
If necessary, edges will be flipped before the node is removed.
|
slot |
Creates skeletons with a given resolution for all edges.
|
slot |
Sets a new image extent.
|
slot |
Sets a new voxel size.
|
slot |
Sets a new voxel-to-world matrix (4x4).
|
slot |
Finds the shortest path in graph between startNode and endNode; since the graph is internally handled as undirected graph, the order of start and end node has no influence.
|
slot |
Same as above, but with nodes that are nearest to the given positions.
|
slot |
Smoothes the graph.
|
slot |
Splits edge with ID edgeID
at skeleton index skeletonIndex
and returns the ID of the additionally created edge.
If the edge could not be split (e.g. edgeID not found, no vessel edge or not enough skeletons), -1 is returned.
|
slot |
Strips cyclic edges from the graph.
At first the graph is directed. Then, all cyclic edges are removed to build a graph without cycles.
|
slot |
Returns string containing binary representation of all data necessary to reconstruct the graph.
|
slot |
Transforms node and edge positions by the given 4x4 matrix.
|
inlineslot |
Sets whether the graph should use binary persistence.
|
read |
Gets all the edges of the graph as MLVesselEdgeWrapper (read-only).
|
read |
Gets all the nodes of the graph as MLVesselNodeWrapper (read-only).
|
read |
Gets all the root nodes of the graph as MLVesselNodeWrapper (read-only).