![]() |
Slicer 5.9
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
|
Public Attributes | |
applyButton = qt.QPushButton(_("Apply")) | |
autoThresholdCalculator = vtkITK.vtkITKImageThresholdCalculator() | |
autoThresholdMethodSelectorComboBox = qt.QComboBox() | |
autoThresholdModeSelectorComboBox = qt.QComboBox() | |
averageFunction = vtk.vtkPiecewiseFunction() | |
averageFunctionContainer = ctk.ctkVTKPiecewiseFunction(self.scriptedEffect) | |
averageFunctionItem = ctk.ctkTransferFunctionBarsItem(self.averageFunctionContainer) | |
list | backgroundColor = [1.0, 1.0, 0.7] |
backgroundFunction = vtk.vtkColorTransferFunction() | |
backgroundFunctionContainer = ctk.ctkVTKColorTransferFunction(self.scriptedEffect) | |
backgroundFunctionItem = ctk.ctkTransferFunctionGradientItem(self.backgroundFunctionContainer) | |
boxROIButton = qt.QToolButton() | |
circleROIButton = qt.QToolButton() | |
drawROIButton = qt.QToolButton() | |
bool | enableViewInteractions = True |
histogramBrushButtonGroup = qt.QButtonGroup() | |
histogramEventFilter = HistogramEventFilter() | |
histogramFunction = vtk.vtkPiecewiseFunction() | |
histogramFunctionContainer = ctk.ctkVTKPiecewiseFunction(self.scriptedEffect) | |
histogramFunctionItem = ctk.ctkTransferFunctionBarsItem(self.histogramFunctionContainer) | |
histogramLowerMethodButtonGroup = qt.QButtonGroup() | |
histogramLowerThresholdAverageButton = qt.QToolButton() | |
histogramLowerThresholdLowerButton = qt.QToolButton() | |
histogramLowerThresholdMinimumButton = qt.QToolButton() | |
histogramPipeline = None | |
histogramUpperMethodButtonGroup = qt.QButtonGroup() | |
histogramUpperThresholdAverageButton = qt.QToolButton() | |
histogramUpperThresholdMaximumButton = qt.QToolButton() | |
histogramUpperThresholdUpperButton = qt.QToolButton() | |
histogramView = ctk.ctkTransferFunctionView() | |
imageAccumulate = vtk.vtkImageAccumulate() | |
lineROIButton = qt.QToolButton() | |
minMaxFunction = vtk.vtkPiecewiseFunction() | |
minMaxFunctionContainer = ctk.ctkVTKPiecewiseFunction(self.scriptedEffect) | |
minMaxFunctionItem = ctk.ctkTransferFunctionBarsItem(self.minMaxFunctionContainer) | |
onApply | |
onAutoThreshold | |
onSelectedAutoThresholdMethod | |
onSelectNextAutoThresholdMethod | |
onSelectPreviousAutoThresholdMethod | |
onThresholdValuesChanged | |
onUseForPaint | |
preview | |
previewedSegmentationDisplayNode = None | |
previewedSegmentID = None | |
dict | previewPipelines = {} |
int | previewState = 0 |
int | previewStep = 1 |
int | previewSteps = 5 |
regionLabel = qt.QLabel(_("Region shape:")) | |
reslice = vtk.vtkImageReslice() | |
selectionEndPosition = None | |
selectionStartPosition = None | |
selectNextAutoThresholdButton = qt.QToolButton() | |
selectPreviousAutoThresholdButton = qt.QToolButton() | |
setAutoThresholdButton = qt.QPushButton(_("Set")) | |
stencil = vtk.vtkPolyDataToImageStencil() | |
thresholdSlider = ctk.ctkRangeWidget() | |
thresholdSliderLabel = qt.QLabel(_("Threshold Range:")) | |
timer = qt.QTimer() | |
updateMRMLFromGUI | |
useForPaintButton = qt.QPushButton(_("Use for masking")) | |
![]() | |
scriptedEffect = scriptedEffect | |
Protected Attributes | |
list | _sliceCompositeObservers = [] |
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 15 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.__init__ | ( | self, | |
scriptedEffect ) |
Definition at line 24 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.activate | ( | self | ) |
Definition at line 101 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.addSliceCompositeObservers | ( | self | ) |
Definition at line 122 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.autoThreshold | ( | self, | |
autoThresholdMethod, | |||
autoThresholdMode ) |
Definition at line 552 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.cleanup | ( | self | ) |
Clean up resources, event observers, and Qt signal/slot connections to ensure proper object deletion. Subclasses should override this method to disconnect any subclass-specific signals and slots. This method should be called before the object is garbage collected or explicitly deleted on the C++ side. Failing to disconnect signals/slots may prevent the object from being garbage collected, leading to memory leaks. For more details, see: https://github.com/Slicer/Slicer/issues/7392
Reimplemented from SegmentEditorEffects.AbstractScriptedSegmentEditorEffect.AbstractScriptedSegmentEditorEffect.
Definition at line 72 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.clearHistogramDisplay | ( | self | ) |
Definition at line 647 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.clearPreviewDisplayPipelines | ( | self | ) |
Definition at line 637 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.clone | ( | self | ) |
Definition at line 81 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.createHistogramPipeline | ( | self, | |
sliceWidget ) |
Definition at line 807 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.deactivate | ( | self | ) |
Definition at line 111 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.getSourceVolumeLayerLogic | ( | self, | |
sliceWidget ) |
Definition at line 844 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.helpText | ( | self | ) |
Definition at line 94 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.icon | ( | self | ) |
Definition at line 88 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.layoutChanged | ( | self | ) |
Definition at line 418 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onApply | ( | self | ) |
Definition at line 601 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onAutoThreshold | ( | self | ) |
Definition at line 547 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onHistogramMouseClick | ( | self, | |
pos, | |||
button ) |
Definition at line 822 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onHistogramMouseMove | ( | self, | |
pos, | |||
button ) |
Definition at line 832 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onHistogramMouseRelease | ( | self, | |
pos, | |||
button ) |
Definition at line 838 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onSelectedAutoThresholdMethod | ( | self | ) |
Definition at line 542 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onSelectNextAutoThresholdMethod | ( | self | ) |
Definition at line 537 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onSelectPreviousAutoThresholdMethod | ( | self | ) |
Definition at line 532 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onSliceCompositeNodeModified | ( | self, | |
caller, | |||
event ) |
Definition at line 142 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onThresholdValuesChanged | ( | self, | |
min, | |||
max ) |
Definition at line 522 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onUseForPaint | ( | self | ) |
Definition at line 525 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.preview | ( | self | ) |
Definition at line 708 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.processInteractionEvents | ( | self, | |
callerInteractor, | |||
eventId, | |||
viewWidget ) |
Definition at line 756 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.processViewNodeEvents | ( | self, | |
callerViewNode, | |||
eventId, | |||
viewWidget ) |
Definition at line 818 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.removeSliceCompositeObservers | ( | self | ) |
Definition at line 136 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.setMRMLDefaults | ( | self | ) |
Definition at line 422 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.setupOptionsFrame | ( | self | ) |
Definition at line 156 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.sourceVolumeNodeChanged | ( | self | ) |
Definition at line 406 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.updateGUIFromMRML | ( | self | ) |
Definition at line 431 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.updateHistogram | ( | self | ) |
Definition at line 868 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.updateHistogramBackground | ( | self | ) |
Definition at line 972 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.updateMRMLFromGUI | ( | self | ) |
Definition at line 465 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.updatePreviewDisplayPipelines | ( | self | ) |
Definition at line 653 of file SegmentEditorThresholdEffect.py.
|
protected |
Definition at line 45 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.applyButton = qt.QPushButton(_("Apply")) |
Definition at line 392 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.autoThresholdCalculator = vtkITK.vtkITKImageThresholdCalculator() |
Definition at line 35 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.autoThresholdMethodSelectorComboBox = qt.QComboBox() |
Definition at line 175 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.autoThresholdModeSelectorComboBox = qt.QComboBox() |
Definition at line 166 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.averageFunction = vtk.vtkPiecewiseFunction() |
Definition at line 294 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.averageFunctionContainer = ctk.ctkVTKPiecewiseFunction(self.scriptedEffect) |
Definition at line 295 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.averageFunctionItem = ctk.ctkTransferFunctionBarsItem(self.averageFunctionContainer) |
Definition at line 297 of file SegmentEditorThresholdEffect.py.
list SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.backgroundColor = [1.0, 1.0, 0.7] |
Definition at line 305 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.backgroundFunction = vtk.vtkColorTransferFunction() |
Definition at line 306 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.backgroundFunctionContainer = ctk.ctkVTKColorTransferFunction(self.scriptedEffect) |
Definition at line 307 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.backgroundFunctionItem = ctk.ctkTransferFunctionGradientItem(self.backgroundFunctionContainer) |
Definition at line 309 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.boxROIButton = qt.QToolButton() |
Definition at line 236 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.circleROIButton = qt.QToolButton() |
Definition at line 243 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.drawROIButton = qt.QToolButton() |
Definition at line 250 of file SegmentEditorThresholdEffect.py.
bool SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.enableViewInteractions = True |
Definition at line 70 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.histogramBrushButtonGroup = qt.QButtonGroup() |
Definition at line 233 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.histogramEventFilter = HistogramEventFilter() |
Definition at line 280 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.histogramFunction = vtk.vtkPiecewiseFunction() |
Definition at line 271 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.histogramFunctionContainer = ctk.ctkVTKPiecewiseFunction(self.scriptedEffect) |
Definition at line 272 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.histogramFunctionItem = ctk.ctkTransferFunctionBarsItem(self.histogramFunctionContainer) |
Definition at line 274 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.histogramLowerMethodButtonGroup = qt.QButtonGroup() |
Definition at line 324 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.histogramLowerThresholdAverageButton = qt.QToolButton() |
Definition at line 342 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.histogramLowerThresholdLowerButton = qt.QToolButton() |
Definition at line 335 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.histogramLowerThresholdMinimumButton = qt.QToolButton() |
Definition at line 327 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.histogramPipeline = None |
Definition at line 44 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.histogramUpperMethodButtonGroup = qt.QButtonGroup() |
Definition at line 357 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.histogramUpperThresholdAverageButton = qt.QToolButton() |
Definition at line 360 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.histogramUpperThresholdMaximumButton = qt.QToolButton() |
Definition at line 374 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.histogramUpperThresholdUpperButton = qt.QToolButton() |
Definition at line 367 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.histogramView = ctk.ctkTransferFunctionView() |
Definition at line 266 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.imageAccumulate = vtk.vtkImageAccumulate() |
Definition at line 59 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.lineROIButton = qt.QToolButton() |
Definition at line 257 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.minMaxFunction = vtk.vtkPiecewiseFunction() |
Definition at line 284 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.minMaxFunctionContainer = ctk.ctkVTKPiecewiseFunction(self.scriptedEffect) |
Definition at line 285 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.minMaxFunctionItem = ctk.ctkTransferFunctionBarsItem(self.minMaxFunctionContainer) |
Definition at line 287 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onApply |
Definition at line 404 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onAutoThreshold |
Definition at line 403 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onSelectedAutoThresholdMethod |
Definition at line 399 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onSelectNextAutoThresholdMethod |
Definition at line 402 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onSelectPreviousAutoThresholdMethod |
Definition at line 401 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onThresholdValuesChanged |
Definition at line 398 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.onUseForPaint |
Definition at line 397 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.preview |
Definition at line 41 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.previewedSegmentationDisplayNode = None |
Definition at line 29 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.previewedSegmentID = None |
Definition at line 30 of file SegmentEditorThresholdEffect.py.
dict SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.previewPipelines = {} |
Definition at line 43 of file SegmentEditorThresholdEffect.py.
int SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.previewState = 0 |
Definition at line 38 of file SegmentEditorThresholdEffect.py.
int SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.previewStep = 1 |
Definition at line 39 of file SegmentEditorThresholdEffect.py.
int SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.previewSteps = 5 |
Definition at line 40 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.regionLabel = qt.QLabel(_("Region shape:")) |
Definition at line 230 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.reslice = vtk.vtkImageReslice() |
Definition at line 51 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.selectionEndPosition = None |
Definition at line 64 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.selectionStartPosition = None |
Definition at line 63 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.selectNextAutoThresholdButton = qt.QToolButton() |
Definition at line 199 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.selectPreviousAutoThresholdButton = qt.QToolButton() |
Definition at line 194 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.setAutoThresholdButton = qt.QPushButton(_("Set")) |
Definition at line 204 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.stencil = vtk.vtkPolyDataToImageStencil() |
Definition at line 48 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.thresholdSlider = ctk.ctkRangeWidget() |
Definition at line 161 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.thresholdSliderLabel = qt.QLabel(_("Threshold Range:")) |
Definition at line 157 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.timer = qt.QTimer() |
Definition at line 37 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.updateMRMLFromGUI |
Definition at line 239 of file SegmentEditorThresholdEffect.py.
SegmentEditorEffects.SegmentEditorThresholdEffect.SegmentEditorThresholdEffect.useForPaintButton = qt.QPushButton(_("Use for masking")) |
Definition at line 388 of file SegmentEditorThresholdEffect.py.