Slicer
4.11
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
|
#include <Modules/Loadable/Markups/MRML/vtkMRMLMarkupsNode.h>
Classes | |
struct | ControlPoint |
Public Member Functions | |
int | AddControlPoint (vtkVector3d point, std::string label=std::string()) |
Add a new control point, returning the point index, -1 on failure. More... | |
int | AddControlPoint (ControlPoint *controlPoint, bool autoLabel=true) |
int | AddControlPointWorld (vtkVector3d point, std::string label=std::string()) |
int | AddNControlPoints (int n, std::string label=std::string(), vtkVector3d *point=nullptr) |
void | ApplyTransform (vtkAbstractTransform *transform) override |
bool | CanApplyNonLinearTransforms () const override |
bool | ControlPointExists (int n) |
Return true if n is a valid control point, false otherwise. More... | |
void | CreateDefaultDisplayNodes () override |
Create and observe default display node(s) More... | |
vtkMRMLStorageNode * | CreateDefaultStorageNode () override |
Create default storage node or nullptr if does not have one. More... | |
vtkMRMLNode * | CreateNodeInstance () override |
MRMLNode methods. More... | |
void | GetBounds (double bounds[6]) override |
void | GetCenterPosition (double point[3]) |
vtkVector3d | GetCenterPositionVector () |
int | GetCenterPositionWorld (double worldxyz[3]) |
virtual const char * | GetClassName () |
int | GetClosestControlPointIndexToPositionWorld (double pos[3]) |
Get the index of the closest control point to the world coordinates. More... | |
int | GetControlPointIndexFromInterpolatedPointIndex (vtkIdType interpolatedPointIndex) |
void | GetControlPointLabels (vtkStringArray *labels) |
void | GetControlPointPositionsWorld (vtkPoints *points) |
Get a copy of all control point positions in world coordinate system. More... | |
std::vector< ControlPoint * > * | GetControlPoints () |
Return a pointer to the std::vector of control points stored in this node. More... | |
vtkPolyData * | GetCurve () |
virtual bool | GetCurveClosed () |
vtkCurveGenerator * | GetCurveGenerator () |
vtkPoints * | GetCurvePoints () |
vtkPoints * | GetCurvePointsWorld () |
vtkPolyData * | GetCurveWorld () |
vtkAlgorithmOutput * | GetCurveWorldConnection () |
virtual const char * | GetIcon () |
virtual vtkMatrix4x4 * | GetInteractionHandleToWorldMatrix () |
4x4 matrix detailing the orientation and position in world coordinates of the interaction handles. More... | |
virtual int | GetLocked () |
Get the Locked property on the markupNode/list of control points. More... | |
std::string | GetMarkupLabelFormat () |
void | GetMarkupPoint (int markupIndex, int pointIndex, double point[3]) |
vtkVector3d | GetMarkupPointVector (int markupIndex, int) |
vtkMRMLMarkupsDisplayNode * | GetMarkupsDisplayNode () |
Return a cast display node, returns null if none. More... | |
virtual int | GetMaximumNumberOfControlPoints () |
bool | GetModifiedSinceRead () override |
const char * | GetNodeTagName () override |
Get node XML tag name (like Volume, Model) More... | |
ControlPoint * | GetNthControlPoint (int n) |
Return a pointer to the Nth control point stored in this node, null if n is out of bounds. More... | |
std::string | GetNthControlPointAssociatedNodeID (int n=0) |
Get/Set the associated node id for the Nth control point. More... | |
ControlPoint * | GetNthControlPointByID (const char *controlPointID) |
Get the Nth control point based on it's ID. More... | |
std::string | GetNthControlPointDescription (int n=0) |
std::string | GetNthControlPointID (int n) |
Get the id for the Nth control point. More... | |
int | GetNthControlPointIndexByID (const char *controlPointID) |
Get the Nth control point index based on it's ID. More... | |
int | GetNthControlPointIndexByPositionStatus (int pointIndex, int positionStatus) |
std::string | GetNthControlPointLabel (int n=0) |
bool | GetNthControlPointLocked (int n=0) |
double * | GetNthControlPointNormal (int n) |
Get normal direction (orientation of z axis) in local coordinate system. More... | |
void | GetNthControlPointNormalWorld (int n, double normalWorld[3]) |
Get normal direction (orientation of z axis) in world coordinate system. More... | |
void | GetNthControlPointOrientation (int n, double orientationWXYZ[4]) |
Get the WXYZ orientation for the Nth control point. More... | |
double * | GetNthControlPointOrientationMatrix (int n) |
Get orientation as 9 values: x, y, and z axis directions, respectively. More... | |
vtkVector4d | GetNthControlPointOrientationVector (int pointIndex) |
void | GetNthControlPointPosition (int pointIndex, double point[3]) |
double * | GetNthControlPointPosition (int pointIndex) |
int | GetNthControlPointPositionStatus (int pointIndex) |
Get control point position status (PositionUndefined, PositionPreview, PositionDefined) More... | |
vtkVector3d | GetNthControlPointPositionVector (int pointIndex) |
int | GetNthControlPointPositionWorld (int pointIndex, double worldxyz[3]) |
bool | GetNthControlPointSelected (int n=0) |
bool | GetNthControlPointVisibility (int n=0) |
std::string | GetNthMarkupAssociatedNodeID (int n=0) |
std::string | GetNthMarkupID (int n=0) |
std::string | GetNthMarkupLabel (int n=0) |
bool | GetNthMarkupLocked (int n=0) |
int | GetNumberOfControlPoints () |
Return the number of control points that are stored in this node. More... | |
int | GetNumberOfDefinedControlPoints (bool includePreview=false) |
Return the number of control points that are already placed (not being previewed or undefined). More... | |
int | GetNumberOfMarkups () |
int | GetNumberOfPointsInNthMarkup (int) |
virtual std::string | GetPropertiesLabelText () |
void | GetRASBounds (double bounds[6]) override |
virtual int | GetRequiredNumberOfControlPoints () |
vtkMRMLUnitNode * | GetUnitNode (const char *quantity) |
Utility function to get unit node from scene. More... | |
bool | InsertControlPoint (ControlPoint *controlPoint, int targetIndex) |
bool | InsertControlPoint (int n, vtkVector3d point, std::string label=std::string()) |
bool | InsertControlPointWorld (int n, vtkVector3d pointWorld, std::string label=std::string()) |
virtual int | IsA (const char *type) |
virtual void | LockedOff () |
virtual void | LockedOn () |
bool | MarkupExists (int n) |
Deprecated. Use ControlPointExists instead. More... | |
void | PrintSelf (ostream &os, vtkIndent indent) override |
void | ProcessMRMLEvents (vtkObject *, unsigned long, void *) override |
Alternative method to propagate events generated in Display nodes. More... | |
void | ReadXMLAttributes (const char **atts) override |
Read node attributes from XML file. More... | |
virtual void | RemoveAllControlPoints () |
Clear out the node of all control points. More... | |
void | RemoveAllMarkups () |
void | RemoveMarkup (int pointIndex) |
void | RemoveNthControlPoint (int pointIndex) |
Remove Nth Control Point. More... | |
std::string | ReplaceListNameInMarkupLabelFormat () |
bool | ResetNthControlPointID (int n) |
void | SetCenterPosition (const double x, const double y, const double z) |
void | SetCenterPositionFromArray (const double pos[3]) |
void | SetCenterPositionFromPointer (const double *pos) |
void | SetCenterPositionWorld (const double x, const double y, const double z) |
void | SetControlPointPositionsWorld (vtkPoints *points) |
void | SetLocked (int locked) |
void | SetMarkupLabelFormat (std::string format) |
void | SetNthControlPointAssociatedNodeID (int n, std::string id) |
void | SetNthControlPointDescription (int n, std::string description) |
Set the Description on the Nth control point. More... | |
void | SetNthControlPointLabel (int n, std::string label) |
Set the Label on the Nth control point. More... | |
void | SetNthControlPointLocked (int n, bool flag) |
void | SetNthControlPointOrientation (int n, double w, double x, double y, double z) |
Set the orientation for the Nth control point from passed parameters. More... | |
void | SetNthControlPointOrientationFromArray (int n, const double orientationWXYZ[4]) |
Set the orientation for the Nth control point from a double array WXYZ. More... | |
void | SetNthControlPointOrientationFromPointer (int n, const double *orientationWXYZ) |
Set the orientation for the Nth control point from a pointer to a double array WXYZ. More... | |
void | SetNthControlPointOrientationMatrix (int n, double orientationMatrix[9]) |
Set orientation as 9 values: x, y, and z axis directions, respectively. More... | |
void | SetNthControlPointOrientationMatrixWorld (int n, double orientationMatrix[9]) |
void | SetNthControlPointPosition (const int pointIndex, const double x, const double y, const double z, int positionStatus=PositionDefined) |
void | SetNthControlPointPositionFromArray (const int pointIndex, const double pos[3], int positionStatus=PositionDefined) |
void | SetNthControlPointPositionFromPointer (const int pointIndex, const double *pos) |
void | SetNthControlPointPositionOrientationWorldFromArray (const int pointIndex, const double pos[3], const double orientationMatrix[9], const char *associatedNodeID, int positionStatus=PositionDefined) |
void | SetNthControlPointPositionWorld (const int pointIndex, const double x, const double y, const double z) |
void | SetNthControlPointPositionWorldFromArray (const int pointIndex, const double pos[3], int positionStatus=PositionDefined) |
void | SetNthControlPointSelected (int n, bool flag) |
void | SetNthControlPointVisibility (int n, bool flag) |
void | SetNthMarkupAssociatedNodeID (int n, std::string id) |
void | SetNthMarkupLabel (int n, std::string label) |
void | SetNthMarkupLocked (int n, bool flag) |
void | SwapControlPoints (int m1, int m2) |
Swap the position of two control points. More... | |
void | UnsetNthControlPointPosition (int pointIndex) |
Set control point status to undefined. More... | |
void | UpdateAllMeasurements () |
virtual void | UpdateAssignedAttribute () |
vtkMRMLCopyContentMacro (vtkMRMLMarkupsNode) | |
void | WriteCLI (std::vector< std::string > &commandLine, std::string prefix, int coordinateSystem=0, int multipleFlag=1) override |
void | WriteXML (ostream &of, int indent) override |
Write this node's information to a MRML file in XML format. More... | |
int | GetNumberOfMeasurements () |
int | GetNumberOfEnabledMeasurements () |
vtkMRMLMeasurement * | GetNthMeasurement (int id) |
vtkMRMLMeasurement * | GetMeasurement (const char *name) |
void | AddMeasurement (vtkMRMLMeasurement *measurement) |
void | RemoveNthMeasurement (int id) |
void | ClearValueForAllMeasurements () |
void | SetNthMeasurement (int id, vtkMRMLMeasurement *measurement) |
void | SetNthMeasurement (int id, const std::string &name, double value, const std::string &units, std::string printFormat="", const std::string description="", vtkCodedEntry *quantityCode=nullptr, vtkCodedEntry *derivationCode=nullptr, vtkCodedEntry *unitsCode=nullptr, vtkCodedEntry *methodCode=nullptr) |
void | RemoveAllMeasurements () |
Public Member Functions inherited from vtkMRMLDisplayableNode | |
void | AddAndObserveDisplayNodeID (const char *displayNodeID) |
void | Copy (vtkMRMLNode *node) override |
Copy the node's attributes to this object More... | |
virtual void | CreateDefaultSequenceDisplayNodes () |
virtual int | GetDisplayClassVisibility (const char *nodeClass) |
vtkMRMLDisplayNode * | GetDisplayNode () |
const char * | GetDisplayNodeID () |
virtual const char * | GetDisplayNodeReferenceRole () |
virtual int | GetDisplayVisibility () |
vtkMRMLDisplayNode * | GetNthDisplayNode (int n) |
const char * | GetNthDisplayNodeID (int n) |
int | GetNumberOfDisplayNodes () |
bool | HasDisplayNodeID (const char *displayNodeID) |
Return true if displayNodeID is in the display node ID list. More... | |
void | PrintSelf (ostream &os, vtkIndent indent) override |
void | RemoveAllDisplayNodeIDs () |
Remove all display node IDs and associated display nodes. More... | |
void | RemoveNthDisplayNodeID (int n) |
void | SetAndObserveDisplayNodeID (const char *displayNodeID) |
void | SetAndObserveNthDisplayNodeID (int n, const char *displayNodeID) |
virtual void | SetDisplayClassVisibility (const char *nodeClass, int visible) |
virtual void | SetDisplayVisibility (int visible) |
void | SetSelectable (int) override |
virtual void | WriteCLI (std::vector< std::string > &vtkNotUsed(commandLine), std::string vtkNotUsed(prefix), int vtkNotUsed(coordinateSystemFlag)=0, int vtkNotUsed(multipleFlag)=1) |
Public Member Functions inherited from vtkMRMLTransformableNode | |
virtual void | ApplyTransformMatrix (vtkMatrix4x4 *transformMatrix) |
vtkMRMLTransformNode * | GetParentTransformNode () |
Associated transform MRML node More... | |
const char * | GetTransformNodeID () |
Get referenced transform node id. More... | |
bool | HardenTransform () |
void | PrintSelf (ostream &os, vtkIndent indent) override |
bool | SetAndObserveTransformNodeID (const char *transformNodeID) |
virtual void | TransformPointFromWorld (const double inWorld[3], double outLocal[3]) |
virtual void | TransformPointFromWorld (const vtkVector3d &inWorld, vtkVector3d &outLocal) |
virtual void | TransformPointToWorld (const double inLocal[3], double outWorld[3]) |
virtual void | TransformPointToWorld (const vtkVector3d &inLocal, vtkVector3d &outWorld) |
Public Member Functions inherited from vtkMRMLStorableNode | |
void | AddAndObserveStorageNodeID (const char *storageNodeID) |
virtual bool | AddDefaultStorageNode (const char *filename=nullptr) |
virtual vtkMRMLStorageNode * | CreateDefaultSequenceStorageNode () |
virtual std::string | GetDefaultStorageNodeClassName (const char *filename=nullptr) |
vtkMRMLStorageNode * | GetNthStorageNode (int n) |
Get associated display MRML node More... | |
const char * | GetNthStorageNodeID (int n) |
int | GetNumberOfStorageNodes () |
const char * | GetSlicerDataType () |
vtkMRMLStorageNode * | GetStorageNode () |
const char * | GetStorageNodeID () |
virtual vtkTagTable * | GetUserTagTable () |
Methods for user-specified metadata. More... | |
bool | HasStorageNodeID (const char *storageNodeID) |
Return true if storageNodeID is in the storage node ID list. More... | |
void | PrintSelf (ostream &os, vtkIndent indent) override |
void | SetAndObserveNthStorageNodeID (int n, const char *storageNodeID) |
void | SetAndObserveStorageNodeID (const char *storageNodeID) |
String ID of the storage MRML node More... | |
void | SetSlicerDataType (const char *type) |
virtual void | StorableModified () |
void | UpdateScene (vtkMRMLScene *scene) override |
Finds the storage node and read the data More... | |
vtkMRMLCopyContentMacro (vtkMRMLStorableNode) | |
Public Member Functions inherited from vtkMRMLNode | |
vtkMRMLNode * | AddAndObserveNodeReferenceID (const char *referenceRole, const char *referencedNodeID, vtkIntArray *events=nullptr) |
Add and observe a reference node from this node for a specific referenceRole. More... | |
vtkMRMLNode * | AddNodeReferenceID (const char *referenceRole, const char *referencedNodeID) |
Convenience method that adds a referencedNodeID at the end of the list. More... | |
void | AddNodeReferenceRole (const char *referenceRole, const char *mrmlAttributeName=nullptr, vtkIntArray *events=nullptr) |
Add a referenceRole. More... | |
virtual void | AddToSceneOff () |
virtual void | AddToSceneOn () |
virtual void | CopyContent (vtkMRMLNode *node, bool deepCopy=true) |
Copy node contents from another node of the same type. Does not copy node ID, Scene, Name, SingletonTag, HideFromEditors, AddToScene, UndoEnabled, and node references. If deepCopy is set to false then a shallow copy of bulk data (such as image or mesh data) could be made; copying may be faster but the node may share some data with the source node instead of creating an independent copy. More... | |
virtual void | CopyReferences (vtkMRMLNode *node) |
Copy the references of the node into this. More... | |
void | CopyWithScene (vtkMRMLNode *node) |
Copy everything (including Scene and ID) from another node of the same type. More... | |
void | DisableModifiedEventOff () |
void | DisableModifiedEventOn () |
virtual int | EndModify (int previousDisableModifiedEventState) |
End modifying the node. More... | |
virtual int | GetAddToScene () |
node added to MRML scene. More... | |
const char * | GetAttribute (const char *name) |
Get value of a name value pair attribute. More... | |
std::vector< std::string > | GetAttributeNames () |
Get all attribute names. More... | |
void | GetAttributeNames (vtkStringArray *attributeNames) |
Get all attribute names. Python-wrappable version. More... | |
virtual vtkIntArray * | GetContentModifiedEvents () |
virtual char * | GetDescription () |
virtual int | GetDisableModifiedEvent () |
Turn on/off generating InvokeEvent for set macros. More... | |
virtual int | GetHideFromEditors () |
Describes if the node is hidden. More... | |
virtual char * | GetID () |
ID use by other nodes to reference this node in XML. More... | |
virtual int | GetInMRMLCallbackFlag () |
Flags to avoid event loops. More... | |
virtual int | GetModifiedEventPending () |
virtual char * | GetName () |
vtkMRMLNode * | GetNodeReference (const char *referenceRole) |
const char * | GetNodeReferenceID (const char *referenceRole) |
Utility function that returns the first node id for a specific referenceRole. More... | |
void | GetNodeReferenceIDs (const char *referenceRole, std::vector< const char *> &referencedNodeIDs) |
Return a list of the referenced node IDs. More... | |
void | GetNodeReferenceRoles (std::vector< std::string > &roles) |
void | GetNodeReferences (const char *referenceRole, std::vector< vtkMRMLNode *> &nodes) |
Return a list of the referenced nodes. More... | |
vtkMRMLNode * | GetNthNodeReference (const char *referenceRole, int n) |
Get referenced MRML node for a specific referenceRole. More... | |
const char * | GetNthNodeReferenceID (const char *referenceRole, int n) |
Return the string of the Nth node ID for a specific reference role. More... | |
const char * | GetNthNodeReferenceRole (int n) |
int | GetNumberOfNodeReferenceRoles () |
int | GetNumberOfNodeReferences (const char *referenceRole) |
Return the number of node IDs for a specific reference role (and nodes as they always have the same size). More... | |
virtual int | GetSaveWithScene () |
Save node with MRML scene. More... | |
virtual vtkMRMLScene * | GetScene () |
Get the scene this node has been added to. More... | |
virtual int | GetSelectable () |
Describes if the node is selectable. More... | |
virtual int | GetSelected () |
Get/Set for Selected. More... | |
virtual char * | GetSingletonTag () |
virtual bool | GetUndoEnabled () |
virtual bool | HasCopyContent () const |
Returns true if the class supports deep and shallow copying node content. More... | |
bool | HasNodeReferenceID (const char *referenceRole, const char *referencedNodeID) |
Return true if referencedNodeID is in the node ID list for a specific referenceRole. More... | |
virtual void | HideFromEditorsOff () |
virtual void | HideFromEditorsOn () |
virtual void | InvokeCustomModifiedEvent (int eventId, void *callData=nullptr) |
This method allows the node to compress events. More... | |
virtual int | InvokePendingModifiedEvent () |
Invokes any modified events that are pending . More... | |
bool | IsSingleton () |
void | Modified () override |
Customized version of Modified() allowing to compress vtkCommand::ModifiedEvent. More... | |
virtual void | OnNodeAddedToScene () |
void | PrintSelf (ostream &os, vtkIndent indent) override |
virtual void | ProcessChildNode (vtkMRMLNode *) |
Set dependencies between this node and a child node when parsing XML file. More... | |
void | RemoveAttribute (const char *name) |
Remove attribute with the specified name. More... | |
void | RemoveNodeReferenceIDs (const char *referenceRole) |
Remove all node IDs and associated nodes for a specific referenceRole. More... | |
void | RemoveNthNodeReferenceID (const char *referenceRole, int n) |
Convenience method that removes the Nth node ID from the list. More... | |
virtual void | Reset (vtkMRMLNode *defaultNode) |
Reset node attributes to the initial state as defined in the constructor or the passed default node. More... | |
virtual void | SaveWithSceneOff () |
virtual void | SaveWithSceneOn () |
virtual void | SelectableOff () |
virtual void | SelectableOn () |
virtual void | SelectedOff () |
virtual void | SelectedOn () |
virtual void | SetAddToScene (int) |
void | SetAddToSceneNoModify (int value) |
vtkMRMLNode * | SetAndObserveNodeReferenceID (const char *referenceRole, const char *referencedNodeID, vtkIntArray *events=nullptr) |
Set and observe a reference node from this node for a specific referenceRole. More... | |
vtkMRMLNode * | SetAndObserveNthNodeReferenceID (const char *referenceRole, int n, const char *referencedNodeID, vtkIntArray *events=nullptr) |
Set and observe the Nth node ID for a specific reference role. More... | |
void | SetAttribute (const char *name, const char *value) |
Set a name value pair attribute. More... | |
virtual void | SetDescription (const char *) |
Text description of this node, to be set by the user. More... | |
void | SetDisableModifiedEvent (int onOff) |
virtual void | SetHideFromEditors (int) |
void | SetInMRMLCallbackFlag (int flag) |
virtual void | SetName (const char *) |
Name of this node, to be set by the user. More... | |
vtkMRMLNode * | SetNodeReferenceID (const char *referenceRole, const char *referencedNodeID) |
Set a reference to a node with specified nodeID from this node for a specific referenceRole. More... | |
vtkMRMLNode * | SetNthNodeReferenceID (const char *referenceRole, int n, const char *referencedNodeID) |
Set a N-th reference from this node with specified referencedNodeID for a specific referenceRole. More... | |
virtual void | SetSaveWithScene (int) |
virtual void | SetScene (vtkMRMLScene *scene) |
This method is for internal use only. Use AddNode method of vtkMRMLScene to add a node to the scene. More... | |
virtual void | SetSceneReferences () |
Update the references of the node to the scene. More... | |
virtual void | SetSelected (int) |
void | SetSingletonOff () |
void | SetSingletonOn () |
virtual void | SetSingletonTag (const char *) |
Tag that make this node a singleton in the scene. More... | |
virtual void | SetUndoEnabled (bool) |
virtual int | StartModify () |
Start modifying the node. Disable Modify events. More... | |
virtual void | UndoEnabledOff () |
virtual void | UndoEnabledOn () |
virtual void | UpdateReferenceID (const char *oldID, const char *newID) |
Update the stored reference to another node in the scene. More... | |
virtual void | UpdateReferences () |
The method should remove all pointers and observations to all nodes that are not in the scene anymore. More... | |
const char * | URLDecodeString (const char *inString) |
Decode a URL string. More... | |
const char * | URLEncodeString (const char *inString) |
Encode a URL string. More... | |
virtual void | WriteNodeBodyXML (ostream &of, int indent) |
Write this node's body to a MRML file in XML format. More... | |
std::string | XMLAttributeDecodeString (const std::string &inString) |
Decode an XML attribute string. More... | |
std::string | XMLAttributeEncodeString (const std::string &inString) |
Encode an XML attribute string (replaces special characters by code sequences) More... | |
Static Public Member Functions | |
static void | ConvertOrientationMatrixToWXYZ (const double orientationMatrix[9], double orientationWXYZ[4]) |
static void | ConvertOrientationWXYZToMatrix (double orientationWXYZ[4], double orientationMatrix[9]) |
static const char * | GetPositionStatusAsString (int id) |
static int | GetPositionStatusFromString (const char *name) |
static int | IsTypeOf (const char *type) |
static vtkMRMLMarkupsNode * | New () |
static vtkMRMLMarkupsNode * | SafeDownCast (vtkObject *o) |
Static Public Member Functions inherited from vtkMRMLDisplayableNode | |
static int | IsTypeOf (const char *type) |
static vtkMRMLDisplayableNode * | SafeDownCast (vtkObject *o) |
Static Public Member Functions inherited from vtkMRMLTransformableNode | |
static int | IsTypeOf (const char *type) |
static vtkMRMLTransformableNode * | SafeDownCast (vtkObject *o) |
Static Public Member Functions inherited from vtkMRMLStorableNode | |
static int | IsTypeOf (const char *type) |
static vtkMRMLStorableNode * | SafeDownCast (vtkObject *o) |
Static Public Member Functions inherited from vtkMRMLNode | |
static int | IsTypeOf (const char *type) |
static vtkMRMLNode * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
std::string | GenerateControlPointLabel (int controlPointIndex) |
std::string | GenerateUniqueControlPointID () |
ControlPoint * | GetNthControlPointCustomLog (int n, const char *failedMethodName) |
void | OnTransformNodeReferenceChanged (vtkMRMLTransformNode *transformNode) override |
Called when transform node reference added/modified/removed. More... | |
void | operator= (const vtkMRMLMarkupsNode &) |
bool | SetControlPointLabelsWorld (vtkStringArray *labels, vtkPoints *points, std::string separator="") |
void | SetNthControlPointID (int n, std::string id) |
virtual void | UpdateCurvePolyFromControlPoints () |
virtual void | UpdateInteractionHandleToWorldMatrix () |
Calculates the handle to world matrix based on the current control points. More... | |
virtual void | UpdateMeasurementsInternal () |
vtkMRMLMarkupsNode () | |
vtkMRMLMarkupsNode (const vtkMRMLMarkupsNode &) | |
virtual void | WriteMeasurementsToDescription () |
~vtkMRMLMarkupsNode () override | |
Protected Member Functions inherited from vtkMRMLDisplayableNode | |
virtual const char * | GetDisplayNodeReferenceMRMLAttributeName () |
void | OnNodeReferenceAdded (vtkMRMLNodeReference *reference) override |
Called when a node reference ID is added (list size increased). More... | |
void | OnNodeReferenceModified (vtkMRMLNodeReference *reference) override |
Called when a node reference ID is modified. More... | |
void | OnNodeReferenceRemoved (vtkMRMLNodeReference *reference) override |
Called after a node reference ID is removed (list size decreased). More... | |
void | operator= (const vtkMRMLDisplayableNode &) |
vtkMRMLDisplayableNode () | |
vtkMRMLDisplayableNode (const vtkMRMLDisplayableNode &) | |
~vtkMRMLDisplayableNode () override | |
Protected Member Functions inherited from vtkMRMLTransformableNode | |
virtual const char * | GetTransformNodeReferenceMRMLAttributeName () |
virtual const char * | GetTransformNodeReferenceRole () |
void | OnNodeReferenceAdded (vtkMRMLNodeReference *reference) override |
Called when a node reference ID is added (list size increased). More... | |
void | OnNodeReferenceModified (vtkMRMLNodeReference *reference) override |
Called when a node reference ID is modified. More... | |
void | OnNodeReferenceRemoved (vtkMRMLNodeReference *reference) override |
Called after a node reference ID is removed (list size decreased). More... | |
void | operator= (const vtkMRMLTransformableNode &) |
vtkMRMLTransformableNode () | |
vtkMRMLTransformableNode (const vtkMRMLTransformableNode &) | |
~vtkMRMLTransformableNode () override | |
Protected Member Functions inherited from vtkMRMLStorableNode | |
virtual const char * | GetStorageNodeReferenceMRMLAttributeName () |
virtual const char * | GetStorageNodeReferenceRole () |
virtual vtkTimeStamp | GetStoredTime () |
void | operator= (const vtkMRMLStorableNode &) |
vtkMRMLStorableNode () | |
vtkMRMLStorableNode (const vtkMRMLStorableNode &) | |
~vtkMRMLStorableNode () override | |
Protected Member Functions inherited from vtkMRMLNode | |
virtual const char * | GetMRMLAttributeNameFromReferenceRole (const char *refRole) |
Return the mrml attribute name (if found) associated with a reference role. Return 0 otherwise. More... | |
virtual const char * | GetReferenceRoleFromMRMLAttributeName (const char *attName) |
Return the reference role (if found) associated with the attribute name found in a MRML scene file. Return 0 otherwise. More... | |
virtual char * | GetTempURLString () |
void | GetUpdatedReferencedNodeEventList (int &oldReferencedNodeUseCount, int &newReferencedNodeUseCount, vtkIntArray *oldConsolidatedEventList, vtkIntArray *newConsolidatedEventList, vtkMRMLNode *oldReferencedNode, vtkMRMLNode *newReferencedNode, vtkMRMLNodeReference *referenceToIgnore, vtkIntArray *newEvents) |
virtual void | InvalidateNodeReferences () |
virtual bool | IsReferenceRoleGeneric (const char *refRole) |
Return true if the reference role is generic (ends with '/') or false otherwise. More... | |
void | operator= (const vtkMRMLNode &) |
void | ParseReferencesAttribute (const char *attValue, std::set< std::string > &references) |
virtual void | SetTempURLString (const char *) |
Get/Set the string used to manage encoding/decoding of strings/URLs with special characters. More... | |
vtkMRMLNode * | UpdateNodeReferenceEventObserver (vtkMRMLNode *oldReferencedNode, vtkMRMLNode *newReferencedNode, vtkIntArray *newEvents, vtkMRMLNodeReference *referenceToIgnore) |
virtual void | UpdateNodeReferences (const char *referenceRole=nullptr) |
virtual void | UpdateNthNodeReference (const char *referenceRole, int n) |
vtkMRMLNode () | |
vtkMRMLNode (const vtkMRMLNode &) | |
~vtkMRMLNode () override | |
critical to have a virtual destructor! More... | |
Protected Attributes | |
vtkVector3d | CenterPos |
ControlPointsListType | ControlPoints |
Vector of control points. More... | |
bool | CurveClosed {false} |
vtkSmartPointer< vtkFrenetSerretFrame > | CurveCoordinateSystemGeneratorWorld |
vtkSmartPointer< vtkCurveGenerator > | CurveGenerator |
Converts curve control points to curve points. More... | |
vtkSmartPointer< vtkPolyData > | CurveInputPoly |
vtkSmartPointer< vtkGeneralTransform > | CurvePolyToWorldTransform |
vtkSmartPointer< vtkTransformPolyDataFilter > | CurvePolyToWorldTransformer |
vtkSmartPointer< vtkMatrix4x4 > | InteractionHandleToWorldMatrix |
Transform that moves the xyz unit vectors and origin of the interaction handles to local coordinates. More... | |
bool | IsUpdatingPoints {false} |
Flag set from SetControlPointPositionsWorld that pauses update of measurements until the update is complete. More... | |
int | LastUsedControlPointNumber {0} |
int | Locked {0} |
Locks all the points and GUI. More... | |
std::string | MarkupLabelFormat {"%N-%d"} |
int | MaximumNumberOfControlPoints {0} |
vtkCollection * | Measurements |
List of measurements stored for the markup. More... | |
std::string | PropertiesLabelText |
int | RequiredNumberOfControlPoints {0} |
vtkSmartPointer< vtkStringArray > | TextList |
vtkSmartPointer< vtkPointLocator > | TransformedCurvePolyLocator |
Protected Attributes inherited from vtkMRMLStorableNode | |
std::string | SlicerDataType |
vtkTimeStamp | StorableModifiedTime |
vtkTagTable * | UserTagTable |
Protected Attributes inherited from vtkMRMLNode | |
int | AddToScene {1} |
AttributesType | Attributes |
vtkIntArray * | ContentModifiedEvents |
char * | Description {nullptr} |
int | HideFromEditors {0} |
char * | ID {nullptr} |
int | InMRMLCallbackFlag {0} |
Flag to avoid event loops More... | |
vtkCallbackCommand * | MRMLCallbackCommand |
Holders for MRML callbacks. More... | |
vtkObserverManager * | MRMLObserverManager |
char * | Name {nullptr} |
NodeReferenceEventsType | NodeReferenceEvents |
std::map< std::string, std::string > | NodeReferenceMRMLAttributeNames |
NodeReferencesType | NodeReferences |
int | SaveWithScene {true} |
vtkWeakPointer< vtkMRMLScene > | Scene |
int | Selectable {1} |
int | Selected {0} |
bool | UndoEnabled {false} |
Friends | |
class | qSlicerMarkupsModuleWidget |
class | vtkMRMLMarkupsFiducialStorageNode |
class | vtkMRMLMarkupsJsonStorageNode |
class | vtkMRMLMarkupsStorageNode |
Make the storage node a friend so that ReadDataInternal can set the ControlPoint ids. More... | |
Additional Inherited Members | |
Protected Types inherited from vtkMRMLNode | |
typedef std::map< std::string, std::string > | AttributesType |
typedef std::map< std::string, vtkSmartPointer< vtkIntArray > > | NodeReferenceEventsType |
typedef std::vector< vtkSmartPointer< vtkMRMLNodeReference > > | NodeReferenceListType |
typedef std::map< std::string, NodeReferenceListType > | NodeReferencesType |
Static Protected Member Functions inherited from vtkMRMLNode | |
static void | MRMLCallback (vtkObject *caller, unsigned long eid, void *clientData, void *callData) |
Static Protected Attributes inherited from vtkMRMLDisplayableNode | |
static const char * | DisplayNodeReferenceMRMLAttributeName |
static const char * | DisplayNodeReferenceRole |
Static Protected Attributes inherited from vtkMRMLTransformableNode | |
static const char * | TransformNodeReferenceMRMLAttributeName |
static const char * | TransformNodeReferenceRole |
Static Protected Attributes inherited from vtkMRMLStorableNode | |
static const char * | StorageNodeReferenceMRMLAttributeName |
static const char * | StorageNodeReferenceRole |
Definition at line 71 of file vtkMRMLMarkupsNode.h.
typedef std::vector<ControlPoint*> vtkMRMLMarkupsNode::ControlPointsListType |
Definition at line 126 of file vtkMRMLMarkupsNode.h.
Definition at line 129 of file vtkMRMLMarkupsNode.h.
anonymous enum |
Invoke events when control points change, passing the control point index if applicable.
Event data for Point* events: Event callData is control point index address (int*). If the pointer is nullptr then one or more points are added/removed/modified.
Note: the current active node (control point or line) information are stored in the display node.
Definition at line 224 of file vtkMRMLMarkupsNode.h.
anonymous enum |
Placement status of a control point.
Enumerator | |
---|---|
PositionUndefined | |
PositionPreview | |
PositionDefined | |
PositionStatus_Last |
Definition at line 242 of file vtkMRMLMarkupsNode.h.
|
protected |
|
overrideprotected |
|
protected |
int vtkMRMLMarkupsNode::AddControlPoint | ( | vtkVector3d | point, |
std::string | label = std::string() |
||
) |
Add a new control point, returning the point index, -1 on failure.
int vtkMRMLMarkupsNode::AddControlPoint | ( | ControlPoint * | controlPoint, |
bool | autoLabel = true |
||
) |
Add a controlPoint to the end of the list. Return index of new controlPoint, -1 on failure. Markups node takes over ownership of the pointer (markups node will delete it)
autoLabel | if enabled (by default it is) then empty point label will be replaced with automatically generated label. |
int vtkMRMLMarkupsNode::AddControlPointWorld | ( | vtkVector3d | point, |
std::string | label = std::string() |
||
) |
Add a new control point, defined in the world coordinate system. Return index of point index, -1 on failure.
void vtkMRMLMarkupsNode::AddMeasurement | ( | vtkMRMLMeasurement * | measurement | ) |
int vtkMRMLMarkupsNode::AddNControlPoints | ( | int | n, |
std::string | label = std::string() , |
||
vtkVector3d * | point = nullptr |
||
) |
Add n control points. If point is specified then all control point positions will be initialized to that position, otherwise control point positions are initialized to (0,0,0). If requested number of points would result more points than the maximum allowed number of points then no points are added at all. Return index of the last placed control point, -1 on failure.
|
overridevirtual |
Apply the passed transformation to all of the control points
Reimplemented from vtkMRMLTransformableNode.
|
overridevirtual |
Returns true since can apply non linear transforms
Reimplemented from vtkMRMLTransformableNode.
void vtkMRMLMarkupsNode::ClearValueForAllMeasurements | ( | ) |
bool vtkMRMLMarkupsNode::ControlPointExists | ( | int | n | ) |
Return true if n is a valid control point, false otherwise.
|
static |
|
static |
|
overridevirtual |
Create and observe default display node(s)
Reimplemented from vtkMRMLDisplayableNode.
Reimplemented in vtkMRMLMarkupsROINode.
|
overridevirtual |
Create default storage node or nullptr if does not have one.
Reimplemented from vtkMRMLStorableNode.
Reimplemented in vtkMRMLMarkupsROINode.
|
overridevirtual |
MRMLNode methods.
Implements vtkMRMLDisplayableNode.
Reimplemented in vtkMRMLMarkupsPlaneNode, and vtkMRMLMarkupsROINode.
|
protected |
|
protected |
Generate a scene unique ID for a ControlPoint. If the scene is not set, returns a number based on the max number of ControlPoints that have been in this list
|
overridevirtual |
Get bounding box in global RAS form (xmin,xmax, ymin,ymax, zmin,zmax). This method always returns the bounds of the untransformed object.
Reimplemented from vtkMRMLDisplayableNode.
void vtkMRMLMarkupsNode::GetCenterPosition | ( | double | point[3] | ) |
Get the position of the center setting the elements of point
vtkVector3d vtkMRMLMarkupsNode::GetCenterPositionVector | ( | ) |
Get the position of the center returning it as a vtkVector3d, return (0,0,0) if not found
int vtkMRMLMarkupsNode::GetCenterPositionWorld | ( | double | worldxyz[3] | ) |
Get the position of the center in World coordinate system Returns 0 on failure, 1 on success.
|
virtual |
Reimplemented from vtkMRMLDisplayableNode.
Reimplemented in vtkMRMLMarkupsCurveNode, vtkMRMLMarkupsROINode, vtkMRMLMarkupsPlaneNode, vtkMRMLMarkupsFiducialNode, vtkMRMLMarkupsAngleNode, vtkMRMLMarkupsClosedCurveNode, and vtkMRMLMarkupsLineNode.
int vtkMRMLMarkupsNode::GetClosestControlPointIndexToPositionWorld | ( | double | pos[3] | ) |
Get the index of the closest control point to the world coordinates.
int vtkMRMLMarkupsNode::GetControlPointIndexFromInterpolatedPointIndex | ( | vtkIdType | interpolatedPointIndex | ) |
void vtkMRMLMarkupsNode::GetControlPointLabels | ( | vtkStringArray * | labels | ) |
void vtkMRMLMarkupsNode::GetControlPointPositionsWorld | ( | vtkPoints * | points | ) |
Get a copy of all control point positions in world coordinate system.
std::vector<ControlPoint*>* vtkMRMLMarkupsNode::GetControlPoints | ( | ) |
Return a pointer to the std::vector of control points stored in this node.
vtkPolyData* vtkMRMLMarkupsNode::GetCurve | ( | ) |
|
virtual |
|
inline |
The internal instance of the curve generator to allow use of the curve for other computations. Any custom overrides of the interpolation modes are not persisted in MRML.
Definition at line 586 of file vtkMRMLMarkupsNode.h.
vtkPoints* vtkMRMLMarkupsNode::GetCurvePoints | ( | ) |
vtkPoints* vtkMRMLMarkupsNode::GetCurvePointsWorld | ( | ) |
vtkPolyData* vtkMRMLMarkupsNode::GetCurveWorld | ( | ) |
vtkAlgorithmOutput* vtkMRMLMarkupsNode::GetCurveWorldConnection | ( | ) |
|
inlinevirtual |
Reimplemented in vtkMRMLMarkupsCurveNode, vtkMRMLMarkupsROINode, vtkMRMLMarkupsPlaneNode, vtkMRMLMarkupsFiducialNode, vtkMRMLMarkupsAngleNode, vtkMRMLMarkupsLineNode, and vtkMRMLMarkupsClosedCurveNode.
Definition at line 133 of file vtkMRMLMarkupsNode.h.
|
virtual |
4x4 matrix detailing the orientation and position in world coordinates of the interaction handles.
|
virtual |
Get the Locked property on the markupNode/list of control points.
std::string vtkMRMLMarkupsNode::GetMarkupLabelFormat | ( | ) |
Get the markup node label format string that defines the markup names.
void vtkMRMLMarkupsNode::GetMarkupPoint | ( | int | markupIndex, |
int | pointIndex, | ||
double | point[3] | ||
) |
|
inline |
Definition at line 317 of file vtkMRMLMarkupsNode.h.
vtkMRMLMarkupsDisplayNode* vtkMRMLMarkupsNode::GetMarkupsDisplayNode | ( | ) |
Return a cast display node, returns null if none.
|
virtual |
Maximum number of control points limits the number of markups allowed in the node. If maximum number of control points is set to 0 then no it means there is no limit (this is the default value). The value is an indication to the user interface and does not affect prevent adding markups to a node programmatically. If value is set to lower value than the number of markups in the node, then existing markups are not deleted. 2 for line, and 3 for angle Markups
vtkMRMLMeasurement* vtkMRMLMarkupsNode::GetMeasurement | ( | const char * | name | ) |
|
overridevirtual |
Reimplemented to take into account the modified time of the markups Returns true if the node (default behavior) or the markups are modified since read/written. Note: The MTime of the markups node is used to know if it has been modified. So if you invoke class specific modified events without calling Modified() on the markups, GetModifiedSinceRead() won't return true.
Reimplemented from vtkMRMLStorableNode.
|
inlineoverridevirtual |
Get node XML tag name (like Volume, Model)
Implements vtkMRMLDisplayableNode.
Reimplemented in vtkMRMLMarkupsPlaneNode, and vtkMRMLMarkupsROINode.
Definition at line 141 of file vtkMRMLMarkupsNode.h.
ControlPoint* vtkMRMLMarkupsNode::GetNthControlPoint | ( | int | n | ) |
Return a pointer to the Nth control point stored in this node, null if n is out of bounds.
std::string vtkMRMLMarkupsNode::GetNthControlPointAssociatedNodeID | ( | int | n = 0 | ) |
Get/Set the associated node id for the Nth control point.
ControlPoint* vtkMRMLMarkupsNode::GetNthControlPointByID | ( | const char * | controlPointID | ) |
Get the Nth control point based on it's ID.
|
protected |
Utility function to be used internally for safe access to a control point's data. Return a pointer to the Nth control point stored in this node, nullptr if n is out of bounds If control point does not exist then an error is logged with the supplied failedMethodName.
std::string vtkMRMLMarkupsNode::GetNthControlPointDescription | ( | int | n = 0 | ) |
Get the Description flag on the Nth control point, returns false if control point doesn't exist
std::string vtkMRMLMarkupsNode::GetNthControlPointID | ( | int | n | ) |
Get the id for the Nth control point.
int vtkMRMLMarkupsNode::GetNthControlPointIndexByID | ( | const char * | controlPointID | ) |
Get the Nth control point index based on it's ID.
int vtkMRMLMarkupsNode::GetNthControlPointIndexByPositionStatus | ( | int | pointIndex, |
int | positionStatus | ||
) |
Get index of N-th control point of the specified status. (for example, get index of N-th placed control point). pointIndex is zero-based, so to get index of the first control point, use pointIndex=0. Return -1 if no such control point is found.
std::string vtkMRMLMarkupsNode::GetNthControlPointLabel | ( | int | n = 0 | ) |
Get the Label on the Nth control point, returns false if control point doesn't exist
bool vtkMRMLMarkupsNode::GetNthControlPointLocked | ( | int | n = 0 | ) |
Get the Lock flag on the Nth control point, returns false if control point doesn't exist
double* vtkMRMLMarkupsNode::GetNthControlPointNormal | ( | int | n | ) |
Get normal direction (orientation of z axis) in local coordinate system.
void vtkMRMLMarkupsNode::GetNthControlPointNormalWorld | ( | int | n, |
double | normalWorld[3] | ||
) |
Get normal direction (orientation of z axis) in world coordinate system.
void vtkMRMLMarkupsNode::GetNthControlPointOrientation | ( | int | n, |
double | orientationWXYZ[4] | ||
) |
Get the WXYZ orientation for the Nth control point.
double* vtkMRMLMarkupsNode::GetNthControlPointOrientationMatrix | ( | int | n | ) |
Get orientation as 9 values: x, y, and z axis directions, respectively.
vtkVector4d vtkMRMLMarkupsNode::GetNthControlPointOrientationVector | ( | int | pointIndex | ) |
Get the WXYZ orientation for the Nth control point returning it as a vtkVector4d, return (0,0,0,0) if not found. Note that vtkVector4d stores components in the order XYZW (in all other methods we get/set components in WXYZ order).
void vtkMRMLMarkupsNode::GetNthControlPointPosition | ( | int | pointIndex, |
double | point[3] | ||
) |
Get the position of the Nth control point setting the elements of point
double* vtkMRMLMarkupsNode::GetNthControlPointPosition | ( | int | pointIndex | ) |
int vtkMRMLMarkupsNode::GetNthControlPointPositionStatus | ( | int | pointIndex | ) |
Get control point position status (PositionUndefined, PositionPreview, PositionDefined)
vtkVector3d vtkMRMLMarkupsNode::GetNthControlPointPositionVector | ( | int | pointIndex | ) |
Get the position of the Nth control point returning it as a vtkVector3d, return (0,0,0) if not found
int vtkMRMLMarkupsNode::GetNthControlPointPositionWorld | ( | int | pointIndex, |
double | worldxyz[3] | ||
) |
Get the position of the Nth control point in World coordinate system Returns 0 on failure, 1 on success.
bool vtkMRMLMarkupsNode::GetNthControlPointSelected | ( | int | n = 0 | ) |
Get the Selected flag on the Nth control point, returns false if control point doesn't exist
bool vtkMRMLMarkupsNode::GetNthControlPointVisibility | ( | int | n = 0 | ) |
Get the Visibility flag on the Nth control point, returns false if control point doesn't exist
|
inline |
Definition at line 442 of file vtkMRMLMarkupsNode.h.
|
inline |
Definition at line 450 of file vtkMRMLMarkupsNode.h.
|
inline |
Definition at line 499 of file vtkMRMLMarkupsNode.h.
|
inline |
Definition at line 476 of file vtkMRMLMarkupsNode.h.
vtkMRMLMeasurement* vtkMRMLMarkupsNode::GetNthMeasurement | ( | int | id | ) |
int vtkMRMLMarkupsNode::GetNumberOfControlPoints | ( | ) |
Return the number of control points that are stored in this node.
int vtkMRMLMarkupsNode::GetNumberOfDefinedControlPoints | ( | bool | includePreview = false | ) |
Return the number of control points that are already placed (not being previewed or undefined).
int vtkMRMLMarkupsNode::GetNumberOfEnabledMeasurements | ( | ) |
|
inline |
Definition at line 286 of file vtkMRMLMarkupsNode.h.
int vtkMRMLMarkupsNode::GetNumberOfMeasurements | ( | ) |
Get measurement data, such as length, angle, diameter, cross-section area. Add/remove/clear measurements.
|
inline |
Definition at line 288 of file vtkMRMLMarkupsNode.h.
|
static |
|
static |
|
virtual |
|
overridevirtual |
Get bounding box in global RAS form (xmin,xmax, ymin,ymax, zmin,zmax). This method returns the bounds of the object with any transforms that may be applied to it.
Reimplemented from vtkMRMLDisplayableNode.
|
virtual |
Return the number of control points that are required for defining this widget. Interaction mode remains in "place" mode until this number is reached. If the number is set to 0 then no it means there is no preference (this is the default value).
vtkMRMLUnitNode* vtkMRMLMarkupsNode::GetUnitNode | ( | const char * | quantity | ) |
Utility function to get unit node from scene.
bool vtkMRMLMarkupsNode::InsertControlPoint | ( | ControlPoint * | controlPoint, |
int | targetIndex | ||
) |
Insert a control point in this list at targetIndex. If targetIndex is < 0, insert at the start of the list. If targetIndex is > list size - 1, append to end of list. If the insertion is successful, ownership of the controlPoint is transferred to the markups node. Returns true on success, false on failure.
bool vtkMRMLMarkupsNode::InsertControlPoint | ( | int | n, |
vtkVector3d | point, | ||
std::string | label = std::string() |
||
) |
bool vtkMRMLMarkupsNode::InsertControlPointWorld | ( | int | n, |
vtkVector3d | pointWorld, | ||
std::string | label = std::string() |
||
) |
|
virtual |
Reimplemented from vtkMRMLDisplayableNode.
Reimplemented in vtkMRMLMarkupsCurveNode, vtkMRMLMarkupsROINode, vtkMRMLMarkupsPlaneNode, vtkMRMLMarkupsFiducialNode, vtkMRMLMarkupsAngleNode, vtkMRMLMarkupsClosedCurveNode, and vtkMRMLMarkupsLineNode.
|
static |
|
virtual |
|
virtual |
Get/Set the Locked property on the markupNode. If set to 1 then parameters should not be changed
|
inline |
Deprecated. Use ControlPointExists instead.
Definition at line 280 of file vtkMRMLMarkupsNode.h.
|
static |
|
overrideprotectedvirtual |
Called when transform node reference added/modified/removed.
Reimplemented from vtkMRMLTransformableNode.
Reimplemented in vtkMRMLMarkupsROINode.
|
protected |
|
override |
|
overridevirtual |
Alternative method to propagate events generated in Display nodes.
Reimplemented from vtkMRMLDisplayableNode.
Reimplemented in vtkMRMLMarkupsROINode.
|
overridevirtual |
Read node attributes from XML file.
Reimplemented from vtkMRMLDisplayableNode.
Reimplemented in vtkMRMLMarkupsPlaneNode.
|
virtual |
Clear out the node of all control points.
|
inline |
Definition at line 257 of file vtkMRMLMarkupsNode.h.
void vtkMRMLMarkupsNode::RemoveAllMeasurements | ( | ) |
|
inline |
Definition at line 346 of file vtkMRMLMarkupsNode.h.
void vtkMRMLMarkupsNode::RemoveNthControlPoint | ( | int | pointIndex | ) |
Remove Nth Control Point.
void vtkMRMLMarkupsNode::RemoveNthMeasurement | ( | int | id | ) |
std::string vtkMRMLMarkupsNode::ReplaceListNameInMarkupLabelFormat | ( | ) |
If the MarkupLabelFormat contains the string N, return a string in which that has been replaced with the list name. If the list name is nullptr, replace it with an empty string. If the MarkupLabelFormat doesn't contain N, return MarkupLabelFormat
bool vtkMRMLMarkupsNode::ResetNthControlPointID | ( | int | n | ) |
Reset the id of the Nth control point according to the local policy Called after an already initialised markup has been added to the scene. Returns false if n out of bounds, true on success.
|
static |
void vtkMRMLMarkupsNode::SetCenterPosition | ( | const double | x, |
const double | y, | ||
const double | z | ||
) |
Set the center position position from coordinates
void vtkMRMLMarkupsNode::SetCenterPositionFromArray | ( | const double | pos[3] | ) |
Set the center position position from an array
void vtkMRMLMarkupsNode::SetCenterPositionFromPointer | ( | const double * | pos | ) |
Set the center position from a pointer to an array
void vtkMRMLMarkupsNode::SetCenterPositionWorld | ( | const double | x, |
const double | y, | ||
const double | z | ||
) |
Set the center position position using World coordinate system Calls SetCenterPosition after transforming the passed in coordinate
|
protected |
Set label of closest control point. If one control point is closest to multiple labels then all of them will be assigned to the same control point, separated with the provided "separator" string. Erase labels of all other control points. The method is protected because the API may still change.
void vtkMRMLMarkupsNode::SetControlPointPositionsWorld | ( | vtkPoints * | points | ) |
Set all control point positions from a point list. If points is nullptr then all control points are removed. New control points are added if needed. Existing control points are updated with the new positions. Any extra existing control points are removed.
void vtkMRMLMarkupsNode::SetLocked | ( | int | locked | ) |
Set the Locked property on the markupNode/list of control points If set to 1 then parameters should not be changed, and dragging the control points is disabled in 2d and 3d. Overrides the Locked flag on individual control points in that when the node is set to be locked, all the control points in the list are locked. When the node is unlocked, use the locked flag on the individual control points to determine their locked state.
void vtkMRMLMarkupsNode::SetMarkupLabelFormat | ( | std::string | format | ) |
Set the markup node label format string that defines the markup names, then invoke the LabelFormatModifedEvent In standard printf notation, with the addition of N being replaced by the list name. d will resolve to the highest not yet used list index integer. Character strings will otherwise pass through Defaults to N-d which will yield markup names of Name-0, Name-1, Name-2
void vtkMRMLMarkupsNode::SetNthControlPointAssociatedNodeID | ( | int | n, |
std::string | id | ||
) |
void vtkMRMLMarkupsNode::SetNthControlPointDescription | ( | int | n, |
std::string | description | ||
) |
Set the Description on the Nth control point.
|
protected |
Set the id of the nth control point. The goal is to keep this ID unique, so it's managed by the markups node.
void vtkMRMLMarkupsNode::SetNthControlPointLabel | ( | int | n, |
std::string | label | ||
) |
Set the Label on the Nth control point.
void vtkMRMLMarkupsNode::SetNthControlPointLocked | ( | int | n, |
bool | flag | ||
) |
Set Locked property on Nth control point. If locked is set to true on the node/list as a whole, the Nth control point locked flag is used to determine if it is locked. If the locked flag is set to false on the node as a whole, all control point are locked but keep this value for when the list as a whole is turned unlocked.
void vtkMRMLMarkupsNode::SetNthControlPointOrientation | ( | int | n, |
double | w, | ||
double | x, | ||
double | y, | ||
double | z | ||
) |
Set the orientation for the Nth control point from passed parameters.
void vtkMRMLMarkupsNode::SetNthControlPointOrientationFromArray | ( | int | n, |
const double | orientationWXYZ[4] | ||
) |
Set the orientation for the Nth control point from a double array WXYZ.
void vtkMRMLMarkupsNode::SetNthControlPointOrientationFromPointer | ( | int | n, |
const double * | orientationWXYZ | ||
) |
Set the orientation for the Nth control point from a pointer to a double array WXYZ.
void vtkMRMLMarkupsNode::SetNthControlPointOrientationMatrix | ( | int | n, |
double | orientationMatrix[9] | ||
) |
Set orientation as 9 values: x, y, and z axis directions, respectively.
void vtkMRMLMarkupsNode::SetNthControlPointOrientationMatrixWorld | ( | int | n, |
double | orientationMatrix[9] | ||
) |
Set orientation as 9 values: x, y, and z axis directions, respectively. Important: this method just calls SetNthControlPointOrientationMatrix and does not convert from world coordinate yet.
void vtkMRMLMarkupsNode::SetNthControlPointPosition | ( | const int | pointIndex, |
const double | x, | ||
const double | y, | ||
const double | z, | ||
int | positionStatus = PositionDefined |
||
) |
Set of the Nth control point position from coordinates
void vtkMRMLMarkupsNode::SetNthControlPointPositionFromArray | ( | const int | pointIndex, |
const double | pos[3], | ||
int | positionStatus = PositionDefined |
||
) |
Set of the Nth control point position from an array
void vtkMRMLMarkupsNode::SetNthControlPointPositionFromPointer | ( | const int | pointIndex, |
const double * | pos | ||
) |
Set of the Nth control point position from a pointer to an array
void vtkMRMLMarkupsNode::SetNthControlPointPositionOrientationWorldFromArray | ( | const int | pointIndex, |
const double | pos[3], | ||
const double | orientationMatrix[9], | ||
const char * | associatedNodeID, | ||
int | positionStatus = PositionDefined |
||
) |
Set of the Nth control point position and orientation from an array using World coordinate system.
void vtkMRMLMarkupsNode::SetNthControlPointPositionWorld | ( | const int | pointIndex, |
const double | x, | ||
const double | y, | ||
const double | z | ||
) |
Set of the Nth control point position using World coordinate system Calls SetNthControlPointPosition after transforming the passed in coordinate
void vtkMRMLMarkupsNode::SetNthControlPointPositionWorldFromArray | ( | const int | pointIndex, |
const double | pos[3], | ||
int | positionStatus = PositionDefined |
||
) |
Set of the Nth control point position from an array using World coordinate system
void vtkMRMLMarkupsNode::SetNthControlPointSelected | ( | int | n, |
bool | flag | ||
) |
Set the Selected flag on the Nth control point
void vtkMRMLMarkupsNode::SetNthControlPointVisibility | ( | int | n, |
bool | flag | ||
) |
Set Visibility property on Nth control point. If the visibility is set to true on the node/list as a whole, the Nth control point visibility is used to determine if it is visible. If the visibility is set to false on the node as a whole, all control points are hidden but keep this value for when the list as a whole is turned visible.
|
inline |
Definition at line 444 of file vtkMRMLMarkupsNode.h.
|
inline |
Definition at line 501 of file vtkMRMLMarkupsNode.h.
|
inline |
Definition at line 478 of file vtkMRMLMarkupsNode.h.
void vtkMRMLMarkupsNode::SetNthMeasurement | ( | int | id, |
vtkMRMLMeasurement * | measurement | ||
) |
Set measurement data, such as length, angle, diameter, cross-section area.
IMPORTANT: These functions should not be used any more. Setting measurements now happens in the
void vtkMRMLMarkupsNode::SetNthMeasurement | ( | int | id, |
const std::string & | name, | ||
double | value, | ||
const std::string & | units, | ||
std::string | printFormat = "" , |
||
const std::string | description = "" , |
||
vtkCodedEntry * | quantityCode = nullptr , |
||
vtkCodedEntry * | derivationCode = nullptr , |
||
vtkCodedEntry * | unitsCode = nullptr , |
||
vtkCodedEntry * | methodCode = nullptr |
||
) |
void vtkMRMLMarkupsNode::SwapControlPoints | ( | int | m1, |
int | m2 | ||
) |
Swap the position of two control points.
void vtkMRMLMarkupsNode::UnsetNthControlPointPosition | ( | int | pointIndex | ) |
Set control point status to undefined.
void vtkMRMLMarkupsNode::UpdateAllMeasurements | ( | ) |
Update all measurements. It should not be necessary for users to call this method.
|
inlinevirtual |
Update the AssignAttribute filter based on its ActiveScalarName and its ActiveAttributeLocation To be re-implemented in subclasses
Reimplemented in vtkMRMLMarkupsCurveNode.
Definition at line 614 of file vtkMRMLMarkupsNode.h.
|
protectedvirtual |
|
protectedvirtual |
Calculates the handle to world matrix based on the current control points.
Reimplemented in vtkMRMLMarkupsPlaneNode, vtkMRMLMarkupsROINode, vtkMRMLMarkupsAngleNode, and vtkMRMLMarkupsLineNode.
|
protectedvirtual |
Calculate the updated measurements. May be overridden in subclasses to compute special measurements (for example that apply on the curve polydata).
Reimplemented in vtkMRMLMarkupsCurveNode.
vtkMRMLMarkupsNode::vtkMRMLCopyContentMacro | ( | vtkMRMLMarkupsNode | ) |
Copy node content (excludes basic data, such as name and node references).
|
override |
Write this node's information to a vector of strings for passing to a CLI, precede each datum with the prefix if not an empty string coordinateSystemFlag = 0 for RAS, 1 for LPS multipleFlag = 1 for the whole list, 1 for the first selected control point
|
protectedvirtual |
Helper function to write measurements to node Description property. This is a short-term solution until measurements display is properly implemented.
|
overridevirtual |
Write this node's information to a MRML file in XML format.
Reimplemented from vtkMRMLDisplayableNode.
Reimplemented in vtkMRMLMarkupsPlaneNode.
|
friend |
Definition at line 720 of file vtkMRMLMarkupsNode.h.
|
friend |
Definition at line 75 of file vtkMRMLMarkupsNode.h.
|
friend |
Definition at line 76 of file vtkMRMLMarkupsNode.h.
|
friend |
Make the storage node a friend so that ReadDataInternal can set the ControlPoint ids.
Definition at line 74 of file vtkMRMLMarkupsNode.h.
|
protected |
Markup centerpoint (in local coordinates). It may be used as rotation center or as a handle to grab the widget by.
Definition at line 707 of file vtkMRMLMarkupsNode.h.
|
protected |
Vector of control points.
Definition at line 673 of file vtkMRMLMarkupsNode.h.
|
protected |
Definition at line 670 of file vtkMRMLMarkupsNode.h.
|
protected |
Computes tangent and smooth normal for each curve point. It provides a fully specified coordinate system at each point of the curve, which is useful for image reslicing or defining camera pose. Curve is defined in the world coordinate system.
Definition at line 682 of file vtkMRMLMarkupsNode.h.
|
protected |
Converts curve control points to curve points.
Definition at line 676 of file vtkMRMLMarkupsNode.h.
|
protected |
Stores control point positions in a polydata (in local coordinate system). Line cells connect all points into a curve.
Definition at line 686 of file vtkMRMLMarkupsNode.h.
|
protected |
Definition at line 689 of file vtkMRMLMarkupsNode.h.
|
protected |
Definition at line 688 of file vtkMRMLMarkupsNode.h.
|
protected |
Transform that moves the xyz unit vectors and origin of the interaction handles to local coordinates.
Definition at line 715 of file vtkMRMLMarkupsNode.h.
|
protected |
Flag set from SetControlPointPositionsWorld that pauses update of measurements until the update is complete.
Definition at line 718 of file vtkMRMLMarkupsNode.h.
|
protected |
Keep track of the number of markups that were added to the list, always incrementing, not decreasing when they're removed. Used to help create unique names and ids. Reset to 0 when
Definition at line 703 of file vtkMRMLMarkupsNode.h.
|
protected |
Locks all the points and GUI.
Definition at line 696 of file vtkMRMLMarkupsNode.h.
|
protected |
Definition at line 698 of file vtkMRMLMarkupsNode.h.
|
protected |
Used for limiting number of control points that may be placed. This is a hard limit at which new control points cannot be added.
Definition at line 668 of file vtkMRMLMarkupsNode.h.
|
protected |
List of measurements stored for the markup.
Definition at line 710 of file vtkMRMLMarkupsNode.h.
|
protected |
Definition at line 712 of file vtkMRMLMarkupsNode.h.
|
protected |
Used for limiting number of control points that may be placed. This is a soft limit at which automatic placement stops.
Definition at line 665 of file vtkMRMLMarkupsNode.h.
|
protected |
Definition at line 622 of file vtkMRMLMarkupsNode.h.
|
protected |
Point locator that allows quick finding of interpolated point in the world coordinate system (in transformed CurvePoly).
Definition at line 693 of file vtkMRMLMarkupsNode.h.