Medical Imaging Interaction Toolkit
2023.04.00
Medical Imaging Interaction Toolkit
|
#include <mitkContourModelLiveWireInteractor.h>
Public Member Functions | |
mitkClassMacro (ContourModelLiveWireInteractor, ContourModelInteractor) | |
Pointer | Clone () const |
virtual void | SetWorkingImage (mitk::Image *_arg) |
void | ConnectActionsAndFunctions () override |
Public Member Functions inherited from mitk::ContourModelInteractor | |
mitkClassMacro (ContourModelInteractor, DataInteractor) | |
Pointer | Clone () const |
void | SetRestrictedArea (mitk::ContourModel *restrictedArea) |
Public Member Functions inherited from mitk::DataInteractor | |
virtual std::vector< std::string > | GetClassHierarchy () const override |
virtual const char * | GetClassName () const |
Pointer | Clone () const |
DataNode * | GetDataNode () const |
virtual void | SetDataNode (DataNode *dataNode) |
int | GetLayer () const |
ProcessEventMode | GetMode () const |
Public Member Functions inherited from mitk::EventStateMachine | |
bool | LoadStateMachine (const std::string &filename, const us::Module *module=nullptr) |
Loads XML resource. More... | |
bool | HandleEvent (InteractionEvent *event, DataNode *dataNode) |
void | EnableUndo (bool enable) |
Enables or disabled Undo. More... | |
void | EnableInteraction (bool enable) |
Enables/disables the state machine. In un-enabled state it won't react to any events. More... | |
Public Member Functions inherited from mitk::InteractionEventHandler | |
bool | SetEventConfig (const std::string &filename, const us::Module *module=nullptr) |
Loads a configuration from an XML resource. More... | |
bool | SetEventConfig (const EventConfig &config) |
Loads a configuration from an EventConfig object. More... | |
EventConfig | GetEventConfig () const |
Returns the current configuration. More... | |
bool | AddEventConfig (const std::string &filename, const us::Module *module=nullptr) |
This method extends the configuration. More... | |
bool | AddEventConfig (const EventConfig &config) |
This method extends the configuration. The configuration from the EventConfig object is loaded and only the ones conflicting are replaced by the new one. This way several configurations can be combined. More... | |
Static Public Member Functions | |
static Pointer | New () |
Static Public Member Functions inherited from mitk::ContourModelInteractor | |
static Pointer | New () |
Static Public Member Functions inherited from mitk::DataInteractor | |
static const char * | GetStaticNameOfClass () |
static Pointer | New () |
Static Public Member Functions inherited from mitk::EventStateMachine | |
static const char * | GetStaticNameOfClass () |
Static Public Member Functions inherited from mitk::InteractionEventHandler | |
static const char * | GetStaticNameOfClass () |
Protected Member Functions | |
ContourModelLiveWireInteractor () | |
~ContourModelLiveWireInteractor () override | |
bool | OnCheckPointClick (const InteractionEvent *interactionEvent) override |
Select/ add and select vertex to modify contour and prepare for modification of contour. More... | |
void | OnMovePoint (StateMachineAction *, InteractionEvent *interactionEvent) override |
Update contour when point is moved. More... | |
void | OnAddPoint (StateMachineAction *, InteractionEvent *interactionEvent) override |
Add a new control point. More... | |
void | OnDeletePoint (StateMachineAction *, InteractionEvent *interactionEvent) override |
Delete selected vertex and recompute contour. More... | |
void | OnFinishEditing (StateMachineAction *, InteractionEvent *interactionEvent) override |
Finish modification of contour. More... | |
void | SplitContourFromSelectedVertex (mitk::ContourModel *srcContour, const mitk::ContourModel::VertexType *nextPoint, const mitk::ContourModel::VertexType *previousPoint, int timestep) |
Split contour into a part before the selected vertex and after the selected vertex. More... | |
void | SetRepulsivePoints (const mitk::ContourModel::VertexType *nextPoint, mitk::ContourModel *contour, int timestep) |
Set repulsive points which should not be changed during editing of the contour. More... | |
Protected Member Functions inherited from mitk::ContourModelInteractor | |
ContourModelInteractor () | |
~ContourModelInteractor () override | |
virtual bool | IsHovering (const InteractionEvent *interactionEvent) |
virtual void | OnMoveContour (StateMachineAction *, InteractionEvent *interactionEvent) |
Protected Member Functions inherited from mitk::DataInteractor | |
DataInteractor () | |
~DataInteractor () override | |
virtual void | DataNodeChanged () |
Is called when a DataNode is initially set or changed To be implemented by sub-classes for initialization code which require a DataNode. More... | |
virtual void | NotifyStart () |
Sends StartInteraction event via the mitk::DataNode. More... | |
virtual void | NotifyResultReady () |
NotifyResultReady Sends ResultReady event via the mitk::DataNode. More... | |
Protected Member Functions inherited from mitk::EventStateMachine | |
EventStateMachine () | |
~EventStateMachine () override | |
void | AddActionFunction (const std::string &action, TActionFunctor *functor) |
void | AddActionFunction (const std::string &action, const ActionFunctionDelegate &delegate) |
void | AddConditionFunction (const std::string &condition, const ConditionFunctionDelegate &delegate) |
StateMachineState * | GetCurrentState () const |
void | ResetToStartState () |
ResetToStartState Reset state machine to it initial starting state. More... | |
virtual bool | CheckCondition (const StateMachineCondition &condition, const InteractionEvent *interactionEvent) |
virtual void | ExecuteAction (StateMachineAction *action, InteractionEvent *interactionEvent) |
virtual bool | FilterEvents (InteractionEvent *interactionEvent, DataNode *dataNode) |
void | SetMouseCursor (const char *xpm[], int hotspotX, int hotspotY) |
Sets the specified mouse cursor. More... | |
void | ResetMouseCursor () |
Resets the mouse cursor to its original state. More... | |
StateMachineTransition * | GetExecutableTransition (InteractionEvent *event) |
Returns the executable transition for the given event. More... | |
Protected Member Functions inherited from mitk::InteractionEventHandler | |
InteractionEventHandler () | |
~InteractionEventHandler () override | |
PropertyList::Pointer | GetAttributes () const |
std::string | MapToEventVariant (InteractionEvent *interactionEvent) |
virtual void | ConfigurationChanged () |
Protected Attributes | |
mitk::ImageLiveWireContourModelFilter::Pointer | m_LiveWireFilter |
mitk::Image::Pointer | m_WorkingSlice |
mitk::Point3D | m_NextActiveVertexDown |
mitk::Point3D | m_NextActiveVertexUp |
mitk::ContourModel::VertexIterator | m_NextActiveVertexDownIter |
mitk::ContourModel::VertexIterator | m_NextActiveVertexUpIter |
std::vector< itk::Index< 2 > > | m_ContourBeingModified |
mitk::ContourModel::Pointer | m_ContourLeft |
mitk::ContourModel::Pointer | m_ContourRight |
Protected Attributes inherited from mitk::ContourModelInteractor | |
const float | eps |
mitk::Point3D | m_lastMousePosition |
mitk::ContourModel::Pointer | m_RestrictedArea |
Protected Attributes inherited from mitk::EventStateMachine | |
bool | m_IsActive |
UndoController * | m_UndoController |
bool | m_UndoEnabled |
Definition at line 37 of file mitkContourModelLiveWireInteractor.h.
|
protected |
|
overrideprotected |
Pointer mitk::ContourModelLiveWireInteractor::Clone | ( | ) | const |
|
overridevirtual |
Here actions strings from the loaded state machine pattern are mapped to functions of the DataInteractor. These functions are called when an action from the state machine pattern is executed.
Reimplemented from mitk::ContourModelInteractor.
mitk::ContourModelLiveWireInteractor::mitkClassMacro | ( | ContourModelLiveWireInteractor | , |
ContourModelInteractor | |||
) |
|
static |
|
overrideprotectedvirtual |
Add a new control point.
Reimplemented from mitk::ContourModelInteractor.
|
overrideprotectedvirtual |
Select/ add and select vertex to modify contour and prepare for modification of contour.
Reimplemented from mitk::ContourModelInteractor.
|
overrideprotectedvirtual |
Delete selected vertex and recompute contour.
Reimplemented from mitk::ContourModelInteractor.
|
overrideprotectedvirtual |
Finish modification of contour.
Reimplemented from mitk::ContourModelInteractor.
|
overrideprotectedvirtual |
Update contour when point is moved.
Reimplemented from mitk::ContourModelInteractor.
|
protected |
Set repulsive points which should not be changed during editing of the contour.
|
virtual |
|
protected |
Split contour into a part before the selected vertex and after the selected vertex.
|
protected |
Definition at line 83 of file mitkContourModelLiveWireInteractor.h.
|
protected |
Definition at line 85 of file mitkContourModelLiveWireInteractor.h.
|
protected |
Definition at line 86 of file mitkContourModelLiveWireInteractor.h.
|
protected |
Definition at line 74 of file mitkContourModelLiveWireInteractor.h.
|
protected |
Definition at line 77 of file mitkContourModelLiveWireInteractor.h.
|
protected |
Definition at line 80 of file mitkContourModelLiveWireInteractor.h.
|
protected |
Definition at line 78 of file mitkContourModelLiveWireInteractor.h.
|
protected |
Definition at line 81 of file mitkContourModelLiveWireInteractor.h.
|
protected |
Definition at line 75 of file mitkContourModelLiveWireInteractor.h.