NorMIT-nav
16.5
An IGT application
|
#include <cxBinaryThresholdImageFilter.h>
Public Member Functions | |
BinaryThresholdImageFilter (VisServicesPtr services) | |
virtual | ~BinaryThresholdImageFilter () |
virtual QString | getType () const |
virtual QString | getName () const |
virtual QString | getHelp () const |
virtual void | setActive (bool on) |
bool | preProcess () |
virtual bool | execute () |
virtual bool | postProcess () |
DoublePairPropertyPtr | getThresholdOption (QDomElement root) |
ColorPropertyPtr | getColorOption (QDomElement root) |
BoolPropertyPtr | getGenerateSurfaceOption (QDomElement root) |
Public Member Functions inherited from cx::FilterImpl | |
virtual | ~FilterImpl () |
virtual QString | getUid () const |
virtual void | initialize (QDomElement root, QString uid="") |
virtual std::vector< PropertyPtr > | getOptions () |
virtual std::vector < SelectDataStringPropertyBasePtr > | getInputTypes () |
virtual std::vector < SelectDataStringPropertyBasePtr > | getOutputTypes () |
virtual bool | hasPresets () |
virtual PresetsPtr | getPresets () |
virtual QDomElement | generatePresetFromCurrentlySetOptions (QString name) |
Public Member Functions inherited from cx::Filter | |
Filter () | |
virtual | ~Filter () |
Protected Slots | |
void | thresholdSlot () |
Protected Member Functions | |
virtual void | createOptions () |
virtual void | createInputTypes () |
virtual void | createOutputTypes () |
Protected Member Functions inherited from cx::FilterImpl | |
FilterImpl (VisServicesPtr services) | |
ImagePtr | getCopiedInputImage (int index=0) |
void | updateThresholdFromImageChange (QString uid, DoublePropertyPtr threshold) |
void | updateThresholdPairFromImageChange (QString uid, DoublePairPropertyPtr threshold) |
PatientModelServicePtr | patientService () |
Protected Attributes | |
ImagePtr | mPreviewImage |
Protected Attributes inherited from cx::FilterImpl | |
std::vector < SelectDataStringPropertyBasePtr > | mInputTypes |
std::vector < SelectDataStringPropertyBasePtr > | mOutputTypes |
std::vector< PropertyPtr > | mOptionsAdapters |
QDomElement | mOptions |
std::vector< DataPtr > | mCopiedInput |
QDomElement | mCopiedOptions |
bool | mActive |
VisServicesPtr | mServices |
Additional Inherited Members | |
Public Slots inherited from cx::FilterImpl | |
virtual void | requestSetPresetSlot (QString name) |
Public Slots inherited from cx::Filter | |
virtual void | requestSetPresetSlot (QString name)=0 |
Signals inherited from cx::Filter | |
void | changed () |
Filter wrapping a itk::BinaryThresholdImageFilter.
Definition at line 52 of file cxBinaryThresholdImageFilter.h.
cx::BinaryThresholdImageFilter::BinaryThresholdImageFilter | ( | VisServicesPtr | services | ) |
Definition at line 57 of file cxBinaryThresholdImageFilter.cpp.
|
inlinevirtual |
Definition at line 58 of file cxBinaryThresholdImageFilter.h.
|
protectedvirtual |
Implements cx::FilterImpl.
Definition at line 116 of file cxBinaryThresholdImageFilter.cpp.
|
protectedvirtual |
Implements cx::FilterImpl.
Definition at line 107 of file cxBinaryThresholdImageFilter.cpp.
|
protectedvirtual |
Implements cx::FilterImpl.
Definition at line 127 of file cxBinaryThresholdImageFilter.cpp.
|
virtual |
Execute filter with the given inputs and produce an output. This method is threadable - can be executed in a secondary thread. Assumes preprocess has been called.
because the segmented image is 0..1
Implements cx::Filter.
Definition at line 182 of file cxBinaryThresholdImageFilter.cpp.
ColorPropertyPtr cx::BinaryThresholdImageFilter::getColorOption | ( | QDomElement | root | ) |
Definition at line 100 of file cxBinaryThresholdImageFilter.cpp.
BoolPropertyPtr cx::BinaryThresholdImageFilter::getGenerateSurfaceOption | ( | QDomElement | root | ) |
Definition at line 92 of file cxBinaryThresholdImageFilter.cpp.
|
virtual |
Return a help text describing algorithm usage.
Implements cx::Filter.
Definition at line 72 of file cxBinaryThresholdImageFilter.cpp.
|
virtual |
Return a descriptive name for this algorithm.
Implements cx::Filter.
Definition at line 62 of file cxBinaryThresholdImageFilter.cpp.
DoublePairPropertyPtr cx::BinaryThresholdImageFilter::getThresholdOption | ( | QDomElement | root | ) |
Definition at line 84 of file cxBinaryThresholdImageFilter.cpp.
|
virtual |
Return the type of this algorithm.
Implements cx::Filter.
Definition at line 67 of file cxBinaryThresholdImageFilter.cpp.
|
virtual |
Perform postprocessing tasks and set result from calculation into the output adapters.
Must be called from the main thread. Assumes execute() has been called.
Implements cx::Filter.
Definition at line 231 of file cxBinaryThresholdImageFilter.cpp.
|
virtual |
Perform main thread preprocessing. Copies input data from options and the input adapters into thread-safe storage. Assumes getOptions(), getInputTypes(), getOutputTypes() has been called (this initializes options)
Reimplemented from cx::FilterImpl.
Definition at line 175 of file cxBinaryThresholdImageFilter.cpp.
|
virtual |
Set Active state. Active filters are used by the ui (or similar) and can interact with the system, for example by showing a preview.
Inactive filters should no interact with the system.
Reimplemented from cx::FilterImpl.
Definition at line 142 of file cxBinaryThresholdImageFilter.cpp.
|
protectedslot |
Definition at line 163 of file cxBinaryThresholdImageFilter.cpp.
|
protected |
Definition at line 94 of file cxBinaryThresholdImageFilter.h.