Slicer
4.10
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
|
Public Member Functions | |
def | __init__ (self, scriptedEffect) |
def | activate (self) |
def | autoThreshold (self, autoThresholdMethod, autoThresholdMode) |
def | clearPreviewDisplay (self) |
def | clone (self) |
def | createCursor (self, widget) |
def | deactivate (self) |
def | helpText (self) |
def | icon (self) |
def | layoutChanged (self) |
def | masterVolumeNodeChanged (self) |
def | onApply (self) |
def | onAutoThreshold (self) |
def | onSelectedAutoThresholdMethod (self) |
def | onSelectNextAutoThresholdMethod (self) |
def | onSelectPreviousAutoThresholdMethod (self) |
def | onThresholdValuesChanged (self, min, max) |
def | onUseForPaint (self) |
def | preview (self) |
def | processInteractionEvents (self, callerInteractor, eventId, viewWidget) |
def | processViewNodeEvents (self, callerViewNode, eventId, viewWidget) |
def | restorePreviewedSegmentTransparency (self) |
def | setCurrentSegmentTransparent (self) |
def | setMRMLDefaults (self) |
def | setupOptionsFrame (self) |
def | setupPreviewDisplay (self) |
def | updateGUIFromMRML (self) |
def | updateMRMLFromGUI (self) |
ThresholdEffect is an Effect implementing the global threshold operation in the segment editor This is also an example for scripted effects, and some methods have no function. The methods that are not needed (i.e. the default implementation in qSlicerSegmentEditorAbstractEffect is satisfactory) can simply be omitted.
Definition at line 6 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.__init__ | ( | self, | |
scriptedEffect | |||
) |
Definition at line 15 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.activate | ( | self | ) |
Definition at line 55 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.autoThreshold | ( | self, | |
autoThresholdMethod, | |||
autoThresholdMode | |||
) |
Definition at line 294 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.clearPreviewDisplay | ( | self | ) |
Definition at line 377 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.clone | ( | self | ) |
Definition at line 36 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.createCursor | ( | self, | |
widget | |||
) |
Definition at line 201 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.deactivate | ( | self | ) |
Definition at line 65 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.helpText | ( | self | ) |
Definition at line 48 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.icon | ( | self | ) |
Definition at line 42 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.layoutChanged | ( | self | ) |
Definition at line 218 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.masterVolumeNodeChanged | ( | self | ) |
Definition at line 205 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onApply | ( | self | ) |
Definition at line 343 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onAutoThreshold | ( | self | ) |
Definition at line 289 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onSelectedAutoThresholdMethod | ( | self | ) |
Definition at line 284 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onSelectNextAutoThresholdMethod | ( | self | ) |
Definition at line 279 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onSelectPreviousAutoThresholdMethod | ( | self | ) |
Definition at line 274 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onThresholdValuesChanged | ( | self, | |
min, | |||
max | |||
) |
Definition at line 264 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onUseForPaint | ( | self | ) |
Definition at line 267 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.preview | ( | self | ) |
Definition at line 407 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.processInteractionEvents | ( | self, | |
callerInteractor, | |||
eventId, | |||
viewWidget | |||
) |
Definition at line 221 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.processViewNodeEvents | ( | self, | |
callerViewNode, | |||
eventId, | |||
viewWidget | |||
) |
Definition at line 224 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.restorePreviewedSegmentTransparency | ( | self | ) |
Restore previewed segment's opacity that was temporarily made transparen by calling setCurrentSegmentTransparent().
Definition at line 104 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.setCurrentSegmentTransparent | ( | self | ) |
Save current segment opacity and set it to zero to temporarily hide the segment so that threshold preview can be seen better. It also restores opacity of previously previewed segment. Call restorePreviewedSegmentTransparency() to restore original opacity.
Definition at line 72 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.setMRMLDefaults | ( | self | ) |
Definition at line 227 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.setupOptionsFrame | ( | self | ) |
Definition at line 120 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.setupPreviewDisplay | ( | self | ) |
Definition at line 382 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.updateGUIFromMRML | ( | self | ) |
Definition at line 233 of file SegmentEditorThresholdEffect.py.
def SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.updateMRMLFromGUI | ( | self | ) |
Definition at line 249 of file SegmentEditorThresholdEffect.py.
SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.applyButton |
Definition at line 187 of file SegmentEditorThresholdEffect.py.
SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.autoThresholdCalculator |
Definition at line 25 of file SegmentEditorThresholdEffect.py.
SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.autoThresholdMethodSelectorComboBox |
Definition at line 137 of file SegmentEditorThresholdEffect.py.
SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.autoThresholdModeSelectorComboBox |
Definition at line 130 of file SegmentEditorThresholdEffect.py.
SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.previewedSegmentID |
Definition at line 21 of file SegmentEditorThresholdEffect.py.
SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.previewPipelines |
Definition at line 33 of file SegmentEditorThresholdEffect.py.
SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.previewState |
Definition at line 28 of file SegmentEditorThresholdEffect.py.
SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.previewStep |
Definition at line 29 of file SegmentEditorThresholdEffect.py.
SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.previewSteps |
Definition at line 30 of file SegmentEditorThresholdEffect.py.
SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.segment2DFillOpacity |
Definition at line 19 of file SegmentEditorThresholdEffect.py.
SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.segment2DOutlineOpacity |
Definition at line 20 of file SegmentEditorThresholdEffect.py.
SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.selectNextAutoThresholdButton |
Definition at line 161 of file SegmentEditorThresholdEffect.py.
SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.selectPreviousAutoThresholdButton |
Definition at line 156 of file SegmentEditorThresholdEffect.py.
SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.setAutoThresholdButton |
Definition at line 166 of file SegmentEditorThresholdEffect.py.
SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.thresholdSlider |
Definition at line 125 of file SegmentEditorThresholdEffect.py.
SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.thresholdSliderLabel |
Definition at line 121 of file SegmentEditorThresholdEffect.py.
SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.timer |
Definition at line 27 of file SegmentEditorThresholdEffect.py.
SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.useForPaintButton |
Definition at line 183 of file SegmentEditorThresholdEffect.py.