|
| CSOModificator (const std::string &type="CSOModificator", int numInImages=0, int numOutImages=0) |
| Standard constructor. More...
|
|
| CSOGenerator (std::string type="CSOGenerator", int numInImg=0, int numOutImg=0) |
| Constructor. More...
|
|
std::string | getType () const |
| Returns the type of the CSOGenerator. More...
|
|
| CSOBaseModule (const std::string &type="CSOBaseModule", int numInImages=0, int numOutImages=0) |
| Standard constructor. More...
|
|
MLMetaProfilePtr & | getMetaProfile () const |
| Returns the metaprofile for the base operator. More...
|
|
const char * | getTypeNameFast () const |
| Macro to declare methods for the ML runtime type system (see mlRuntimeSubClass.h). More...
|
|
| Module (int numInputImages, int numOutputImages) |
| Constructor: Initializes numInputImages input images and numOutputImages output images of the module. More...
|
|
| ~Module () override |
| Destructor: Destroys this module. More...
|
|
InputConnectorField * | getInputImageField (MLint i) const |
| Returns the field representing input image i . i must be a valid index. More...
|
|
OutputConnectorField * | getOutputImageField (MLint i=0) const |
| Returns the field representing output image i . i must be a valid index. More...
|
|
MLint | getNumInputImages () const |
| Returns the number of input images of this module. More...
|
|
MLint | getNumOutputImages () const |
| Returns the number of output images of this module. More...
|
|
PagedImage * | getOutputImage (MLint outputIndex=0) const |
| Returns the output image outputIndex . The index needs to be in the range [0, getNumOutputImages()-1]. More...
|
|
InputConnectorField * | addInputImage (const char *name=nullptr) |
| Adds a new input image with name to the module. More...
|
|
OutputConnectorField * | addOutputImage (const char *name=nullptr) |
| Adds a new output image with name to the module. More...
|
|
PagedImage * | getInputImage (MLint inputIndex, bool getReal=false) const |
| Returns the output image of the module connected to input inputIndex . More...
|
|
PagedImage * | getUpdatedInputImage (MLint inputIndex, bool getReal=false) const |
| Convenience method for a safe access to the input image at index inputIndex . More...
|
|
MLErrorCode | processAllPages (int outputIndex=-1, SubImageBox region=SubImageBox(), MLRequestProgressCB *progressCallback=nullptr, void *progressCallbackUserData=nullptr) |
| Processes all pages of a module for easy implementation of page-based image processing of complete images. More...
|
|
MLErrorCode | processAllPages (ProcessAllPagesHandler &handler, SubImageBox region=SubImageBox(), MLRequestProgressCB *progressCallback=nullptr, void *progressCallbackUserData=nullptr) |
| Processes input images with a ProcessAllPagesHandler handler on a temporary output image (which allocates no data). More...
|
|
MLErrorCode | processMissingPages (int outputIndex=0, SubImageBox region=SubImageBox(), MLRequestProgressCB *progressCallback=nullptr, void *progressCallbackUserData=nullptr) |
| Processes all missing pages on the given output image. More...
|
|
void | clearOutputImage (MLint i=0) |
| Clears cached output image pages of output image i . More...
|
|
MLint | getOutputImageInplace (MLint outputIndex=0) const |
| Returns the optimization flag: returns the index of input image whose input tile is used also as output page for output outputIndex in calculateOutputSubImage() (instead of allocating its own memory). More...
|
|
MLint | getBypass (MLint outputIndex=0) const |
| Returns the currently bypass index or -1 if bypassing if disabled (default). More...
|
|
THREAD_SUPPORT | getThreadSupport () const |
| Returns the multithreading mode supported by this module, default is NO_THREAD_SUPPORT. More...
|
|
bool | areRecursiveHandleNotificationsPermitted () const |
| Returns whether recursive entries in handleNotification are permitted. More...
|
|
MLint | getHandleNotificationEntryCounter () const |
| A counter returning the current number of (recursive re-)entries in handleNotification. More...
|
|
PERMITTED_TYPES | getVoxelDataTypeSupport () const |
| Returns the current state of supported voxel datatypes. More...
|
|
bool | isSupportedVoxelDataType (MLDataType dt) const |
| Checks whether a given data type is supported on the module as configured with setVoxelDataTypeSupport. More...
|
|
virtual INPUT_HANDLE | handleInput (int, INPUT_STATE) const |
| This method may be reimplemented to enable support for invalid input images on the module. More...
|
|
INPUT_STATE | getInputState (MLint index) |
| Returns the current state of the input connection. More...
|
|
INPUT_STATE | getUpdatedInputState (MLint index) |
| Returns the updated state of the input image by calling updateImageProperties(index) and returning getInputState(index) afterwards. More...
|
|
bool | isInputImageField (Field *field) const |
| Returns whether the given field is an input image field. More...
|
|
void | touchOutputImageFields () const |
| Touches all output image fields to indicate that the images have changed. More...
|
|
virtual void | beginSaveFields () |
| Called before all fields data contents of this modules are saved. More...
|
|
virtual void | endSaveFields () |
| Called after saving all field contents of this module. More...
|
|
| FieldContainer () |
| Constructor. More...
|
|
| ~FieldContainer () override |
| Destructor: Deletes all added fields. More...
|
|
std::string | whoAmI (bool withInstanceName=true) const |
| Returns the type and the instance name of format 'ClassTypeName(instanceName)' if the instance name is not empty and withInstanceName is true . More...
|
|
Field * | addField (const char *name, const char *type, const char *value) |
| Adds a new field with name name , type type , and value value (encoded as string) to the container. More...
|
|
Field * | addField (Field *field) |
| Adds a field , the ownership of the field is passed to the FieldContainer. More...
|
|
BoolField * | addBool (const char *name) |
| Creates a BoolField with name and adds it to the container. Default value is false . More...
|
|
BoolField * | addBool (const char *name, bool value) |
| Creates a BoolField with name and adds it to the container. More...
|
|
IntField * | addInt (const char *name) |
| Creates an IntField with name and adds it to the container. Default value is 0. More...
|
|
IntField * | addInt (const char *name, MLint value) |
| Creates an IntField with name and adds it to the container. More...
|
|
EnumField * | addEnum (const char *name, const char *const *enumerationItemNames, MLint numEnumerationItems) |
| Creates an EnumField field with name and adds it to the container. More...
|
|
EnumField * | addEnum (const char *name, const std::vector< std::string > &enumerationItemNames) |
| Creates an EnumField field with name and adds it to the container. More...
|
|
template<typename EnumType > |
TypedEnumField< EnumType > * | addEnum (const char *name, const EnumValues< EnumType > &values, EnumType initialValue) |
| Creates a TypedEnumField field with name and adds it to the container. More...
|
|
FloatField * | addFloat (const char *name) |
| Creates a FloatField with name and adds it to the container. Default value is 0.f. More...
|
|
FloatField * | addFloat (const char *name, float value) |
| Creates a FloatField with name and adds it to the container. More...
|
|
ProgressField * | addProgress (const char *name) |
| Creates a float ProgressField with name and adds it to the container. Default value is 0.f. More...
|
|
ProgressField * | addProgress (const char *name, float value) |
| Creates a float ProgressField with name and adds it to the container. More...
|
|
DoubleField * | addDouble (const char *name) |
| Creates a DoubleField with name and adds it to the container. Default value is 0. More...
|
|
DoubleField * | addDouble (const char *name, double value) |
| Creates a DoubleField with name and adds it to the container. More...
|
|
StringField * | addString (const char *name) |
| Creates a StringField with name and adds it to the container. Default value is empty string. More...
|
|
StringField * | addString (const char *name, const std::string &value) |
| Creates a StringField with name and adds it to the container. More...
|
|
NotifyField * | addNotify (const char *name) |
| Creates a NotifyField field with name and adds it to the container. More...
|
|
TriggerField * | addTrigger (const char *name) |
| Creates a TriggerField field with name and adds it to the container. More...
|
|
BaseField * | addBase (const char *name) |
| Creates a Base field with name and adds it to the container. Default value is NULL. More...
|
|
BaseField * | addBase (const char *name, Base *value) |
| Creates a Base field with name and adds it to the container. More...
|
|
BaseField * | addBase (const char *name, const RefCountedBasePtr &value) |
| Creates a Base field with name and adds it to the container. Sets the value from intrusive pointer. More...
|
|
template<typename T > |
BaseField * | addBaseWithAllowedType (const char *name, T *value=nullptr) |
| As above, but also sets the allowed type of the field. More...
|
|
template<typename T > |
BaseField * | addBaseWithAllowedType (const char *name, const ::boost::intrusive_ptr< T > &value) |
| As above, but also sets the allowed type of the field. More...
|
|
template<typename T > |
TypedBaseField< T > * | addTypedBase (const char *name) |
| Creates a TypedBaseField with name and adds it to the container. Default value is NULL. More...
|
|
template<typename T > |
TypedBaseField< T > * | addTypedBase (const char *name, T *value) |
| Creates a TypedBaseField with name and adds it to the container. More...
|
|
template<typename T > |
TypedBaseField< T > * | addTypedBase (const char *name, const ::boost::intrusive_ptr< T > &value) |
| Creates a TypedBaseField with name and adds it to the container. Sets the value from intrusive pointer. More...
|
|
SoNodeField * | addSoNode (const char *name) |
| Creates a SoNodeField with name and adds it to the container. Default value is NULL. More...
|
|
SoNodeField * | addSoNode (const char *name, SoNode *value) |
| Creates a SoNodeField with name and adds it to the container. More...
|
|
PointerField * | addPointer (const char *name) |
| Creates a PointerField with name and adds it to the container. More...
|
|
Vector2Field * | addVector2 (const char *name) |
| Creates a Vector2Field with name and adds it to the container. More...
|
|
Vector2Field * | addVector2 (const char *name, const Vector2 &value) |
| Creates a Vector2Field with name and adds it to the container. More...
|
|
Vector2Field * | addVector2 (const char *name, double x, double y) |
| Creates a Vector2Field with name and adds it to the container. More...
|
|
Vector3Field * | addVector3 (const char *name) |
| Creates a Vector3Field with name and adds it to the container. More...
|
|
Vector3Field * | addVector3 (const char *name, const Vector3 &value) |
| Creates a Vector3Field with name and adds it to the container. More...
|
|
Vector3Field * | addVector3 (const char *name, double x, double y, double z) |
| Creates a Vector3Field with name and adds it to the container. More...
|
|
Vector4Field * | addVector4 (const char *name) |
| Creates a Vector4Field with name and adds it to the container. More...
|
|
Vector4Field * | addVector4 (const char *name, const Vector4 &value) |
| Creates a Vector4Field with name and adds it to the container. More...
|
|
Vector4Field * | addVector4 (const char *name, double x, double y, double z, double w) |
| Creates a Vector4Field with name and adds it to the container. More...
|
|
Vector5Field * | addVector5 (const char *name) |
| Creates a Vector5Field with name and adds it to the container. More...
|
|
Vector5Field * | addVector5 (const char *name, const Vector5 &value) |
| Creates a Vector5Field with name and adds it to the container. More...
|
|
Vector6Field * | addVector6 (const char *name) |
| Creates a Vector6Field with name and adds it to the container. More...
|
|
Vector6Field * | addVector6 (const char *name, const Vector6 &value) |
| Creates a Vector6Field with name and adds it to the container. More...
|
|
Vector10Field * | addVector10 (const char *name) |
| Creates a Vector10Field with name and adds it to the container. More...
|
|
Vector10Field * | addVector10 (const char *name, const Vector10 &value) |
| Creates a Vector10Field with name and adds it to the container. More...
|
|
ImageVectorField * | addImageVector (const char *name) |
| Creates a ImageVectorField with name and adds it to the container. More...
|
|
ImageVectorField * | addImageVector (const char *name, const ImageVector &value) |
| Creates a ImageVectorField with name and adds it to the container. More...
|
|
ImageVectorField * | addImageVector (const char *name, MLint x, MLint y, MLint z, MLint c, MLint t, MLint u) |
| Creates a ImageVectorField with name and adds it to the container. More...
|
|
SubImageBoxField * | addSubImageBox (const char *name) |
| Creates a SubImageBoxField with name and adds it to the container. More...
|
|
SubImageBoxField * | addSubImageBox (const char *name, const SubImageBox &value) |
| Creates a SubImageBoxField with name and adds it to the container. More...
|
|
SubImageBoxdField * | addSubImageBoxd (const char *name) |
| Creates a SubImageBoxd field with name and adds it to the container. More...
|
|
SubImageBoxdField * | addSubImageBoxd (const char *name, const SubImageBoxd &value) |
| Creates a SubImageBoxd field with name and adds it to the container. More...
|
|
ColorField * | addColor (const char *name) |
| Creates a ColorField with name and adds it to the container. More...
|
|
ColorField * | addColor (const char *name, float r, float g, float b) |
| Creates a ColorField with name and adds it to the container. More...
|
|
ColorField * | addColor (const char *name, const Vector3 &value) |
| Creates a ColorField with name and adds it to the container. More...
|
|
PlaneField * | addPlane (const char *name) |
| Creates a PlaneField with name and adds it to the container. More...
|
|
PlaneField * | addPlane (const char *name, double f0, double f1, double f2, double f3) |
| Creates a PlaneField with name and adds it to the container. More...
|
|
PlaneField * | addPlane (const char *name, const Plane &value) |
| Creates a PlaneField with name and adds it to the container. More...
|
|
RotationField * | addRotation (const char *name) |
| Creates a RotationField with name and adds it to the container. More...
|
|
RotationField * | addRotation (const char *name, const Rotation &value) |
| Creates a RotationField with name and adds it to the container. More...
|
|
Matrix2Field * | addMatrix2 (const char *name) |
| Creates a Matrix2Field with name and adds it to the container. More...
|
|
Matrix2Field * | addMatrix2 (const char *name, const Matrix2 &value) |
| Creates a Matrix2Field with name and adds it to the container. More...
|
|
Matrix3Field * | addMatrix3 (const char *name) |
| Creates a Matrix3Field with name and adds it to the container. More...
|
|
Matrix3Field * | addMatrix3 (const char *name, const Matrix3 &value) |
| Creates a Matrix3Field with name and adds it to the container. More...
|
|
Matrix4Field * | addMatrix4 (const char *name) |
| Creates a Matrix4Field with name and adds it to the container. More...
|
|
Matrix4Field * | addMatrix4 (const char *name, const Matrix4 &value) |
| Creates a Matrix4Field with name and adds it to the container. More...
|
|
Matrix5Field * | addMatrix5 (const char *name) |
| Creates a Matrix5Field with name and adds it to the container. More...
|
|
Matrix5Field * | addMatrix5 (const char *name, const Matrix5 &value) |
| Creates a Matrix5Field with name and adds it to the container. More...
|
|
Matrix6Field * | addMatrix6 (const char *name) |
| Creates a Matrix6Field with name and adds it to the container. More...
|
|
Matrix6Field * | addMatrix6 (const char *name, const Matrix6 &value) |
| Creates a Matrix6Field with name and adds it to the container. More...
|
|
MatrixField * | addMatrix (const char *name) |
| Creates a MatrixField with name and adds it to the container. More...
|
|
MatrixField * | addMatrix (const char *name, const Matrix4 &value) |
| Creates a MatrixField with name and adds it to the container. More...
|
|
MLDataTypeField * | addMLDataType (const char *name) |
| Creates a MTDataTypeField with name and adds it to the container. More...
|
|
MLDataTypeField * | addMLDataType (const char *name, MLDataType value) |
| Creates a MTDataTypeField with name and adds it to the container. More...
|
|
UniversalTypeField * | addUniversalType (const char *name) |
| Creates an UniversalTypeField field with name and adds it to the container. More...
|
|
IntListField * | addIntList (const char *name) |
| Creates an IntListField field with name and empty list value and adds it to the container. More...
|
|
IntListField * | addIntList (const char *name, const std::vector< MLint > &value) |
| Creates an IntListField field with name and given list value and adds it to the container. More...
|
|
DoubleListField * | addDoubleList (const char *name) |
| Creates an DoubleListField field with name and empty list value and adds it to the container. More...
|
|
DoubleListField * | addDoubleList (const char *name, const std::vector< double > &value) |
| Creates an DoubleListField field with name and given list value and adds it to the container. More...
|
|
Vector2ListField * | addVector2List (const char *name) |
| Creates an Vector2ListField field with name and empty list value and adds it to the container. More...
|
|
Vector2ListField * | addVector2List (const char *name, const std::vector< Vector2 > &value) |
| Creates an Vector2ListField field with name and given list value and adds it to the container. More...
|
|
Vector3ListField * | addVector3List (const char *name) |
| Creates an Vector3ListField field with name and empty list value and adds it to the container. More...
|
|
Vector3ListField * | addVector3List (const char *name, const std::vector< Vector3 > &value) |
| Creates an Vector3ListField field with name and given list value and adds it to the container. More...
|
|
Vector4ListField * | addVector4List (const char *name) |
| Creates an Vector4ListField field with name and empty list value and adds it to the container. More...
|
|
Vector4ListField * | addVector4List (const char *name, const std::vector< Vector4 > &value) |
| Creates an Vector4ListField field with name and given list value and adds it to the container. More...
|
|
size_t | getNumFields () const |
| Returns the number of added fields. More...
|
|
bool | hasField (const std::string &name) const |
| Returns true if the field with name name exists; otherwise, false is returned. More...
|
|
Field * | getField (const std::string &name) const |
| Returns the pointer to the field with name name . More...
|
|
Field * | getField (MLint index) const |
| Returns pointer of field at index if it exists. If not, -1 is returned. More...
|
|
MLint | getFieldIndex (Field *field) const |
| Returns index of field if it exists. If not, -1 is returned. More...
|
|
void | setFieldStringValue (const std::string &name, const std::string &value) |
| Sets the value of the field with name if it exists. More...
|
|
std::string | getFieldStringValue (const std::string &name) const |
| Returns the string value of the field with name if it is found. More...
|
|
virtual void | deactivateAttachments () |
| Disables notification handling, i.e., all fields of this module will not send notifications to attached sensors and fields anymore if their values are set or changed. More...
|
|
| Base () |
| Constructor. More...
|
|
virtual | ~Base () |
| Destructor. More...
|
|
virtual Base * | deepCopy () const |
| Creates a deep copy of the given object. More...
|
|
bool | isOfAllowedType (const std::vector< const RuntimeType * > &types) const |
| Checks whether this object's type is equal to or derived from one of the types given in the argument. More...
|
|
virtual bool | isRefCountedBase () const |
| Returns whether the instance is derived from RefCountedBase. More...
|
|
virtual std::string | detailString () const |
| Returns a string describing this object. More...
|
|
virtual bool | implementsPersistence (PersistenceInterface) const |
| Override this method to declare which persistence interfaces are implemented by your derived class. More...
|
|
virtual std::string | persistentState () const |
| Returns a string describing the object's internal state. More...
|
|
virtual void | setPersistentState (const std::string &state) |
| Restores the object's internal state from a string that had been previously generated using persistentState(). More...
|
|
virtual void | addStateToTree (TreeNode *) const |
| Attaches the object state as children of the given parent node. More...
|
|
virtual void | readStateFromTree (TreeNode *) |
| Reads the object state from the children of the given parent node. More...
|
|
virtual void | writeTo (AbstractPersistenceOutputStream *) const |
| Writes the objects state to the data stream object. More...
|
|
virtual void | readFrom (AbstractPersistenceInputStream *, int) |
| Reads the objects state from the data stream object. More...
|
|
| CSOGeneratorBase () |
| Default constructor. More...
|
|
virtual | ~CSOGeneratorBase ()=default |
|
CSO * | generatorAddCSO (CSOList *csoList, bool useUndoRedo=true) |
| Adds a new CSO to the CSOList. More...
|
|
CSO * | generatorAddCSONoEvent (CSOList *csoList, bool useUndoRedo=true, bool sendEvent=false) |
| See generatorAddCSO, but no group scope event is emitted. (So this method is faster!) More...
|
|
CSOGroup * | generatorGetParentGroup (CSOList *csoList, bool useUndoRedo=false, bool generate=false) |
| Returns the parent group according to current group settings. More...
|
|
void | generatorEmptyGroupOnDemand (CSOList *csoList) |
| Empties a group on demand of the given CSOList with the set label. More...
|
|
|
| ~CSOModificator () override |
| Standard destructor. More...
|
|
void | activateAttachments () override |
| Initialize module after loading. More...
|
|
void | handleNotification (Field *field) override |
| Called when input changes. More...
|
|
virtual void | resetParsedIds () |
| Resets parameteres of the modificator. More...
|
|
virtual void | process () |
| Sets up the CSOList, applies the modificator to the CSOList and notifies other modules that processing has finished. More...
|
|
virtual void | clearOutput () |
| Clears all outputs (used by auto clear mode) More...
|
|
virtual std::vector< CSO * > | getCSOsToBeProcessed (const std::vector< CSO * > &csosFromIdList) |
| may be overwritten to filter out CSOs that are processed by this modificator, by default returns the input parameter which holds the CSOs that are in the inputList and that are included by the idList filter field More...
|
|
virtual bool | shouldUseUndoRedo () const |
| Whether undo/Redo should be used. More...
|
|
virtual bool | canProcessInput () |
| returns whether the current input can be processed, i.e. More...
|
|
virtual void | _setupCSOList () |
| Sets the _outCSOList correctly. More...
|
|
virtual void | _applyModificator () |
| Applies the modification to the CSOs of the attached list. More...
|
|
virtual void | _applyModificatorOnCSOs (const std::vector< CSO * > &csosToBeProcessed) |
| may be overwritten by subclasses if, for example, CSOs should be processed in parallel More...
|
|
virtual void | _applyModificatorOn (CSO &outputCSO) |
| may be overwritten by subclasses if CSOs are processed one by one More...
|
|
virtual void | _updateCSOType (CSO &outputCSO) |
| Updates the CSO's type. Most modules change the type to the modificators name, but not all do it. More...
|
|
virtual void | _notifyObservers (bool didSomething) |
| Notifies other modules that processing has finished. More...
|
|
virtual bool | shouldTriggerInputChanged (Field *field) const |
| returns whether a field notification triggers auto update. More...
|
|
virtual bool | shouldTriggerParameterApplied (Field *field) const |
| This method exists only for legacy reasons and shoult not be overwritten when writing new CSOModificators! More...
|
|
bool | _isChangeSettingField (Field *field) const |
|
virtual void | _onInputChanged () |
| helper functions called by handleNotification, may be overwritten in very special cases More...
|
|
virtual void | _onParameterApplied () |
|
virtual void | _onCSOIdListChanged () |
|
virtual void | _onWorkDirectlyOnInputChanged () |
|
virtual void | _onApply () |
|
bool | _isInIdList (CSO *cso) |
| Checks if the given CSO is in the list of IDs given by _csoIdListFld. More...
|
|
void | _parseCSOIds (std::set< unsigned int > &ids) |
| Parse the CSO id field into the given vector of ids. More...
|
|
std::vector< CSO * > | _getModifyCSOsFromIdList () |
|
void | _storeCurrentStateInUndoManager (std::vector< CSO * > csosToBeProcessed) |
|
void | _applyChangedSettings (CSO &cso) const |
| Changes the settings of the given CSO (only if _changeSettingsForModifiedCSOsFld is true). More...
|
|
| ML_ABSTRACT_MODULE_CLASS_HEADER (CSOModificator) |
|
CSO * | _addCSO (CSOList *csoList, bool useUndoRedo=true) |
| Adds a new CSO to the CSOList. More...
|
|
CSO * | _addCSONoEvent (CSOList *csoList, bool useUndoRedo=true) |
| See _addCSO, but without group event. (This method is faster!). More...
|
|
CSOGroup * | _getParentGroup (CSOList *csoList, bool useUndoRedo=false, bool generate=false) |
| Returns the parent group according to current group settings. More...
|
|
void | _emptyGroupOnDemand (CSOList *csoList) |
| Empties a group on demand of the given CSOList with the set label. More...
|
|
int | getModuleCreatorId () const override |
| Returns the module's creator id. More...
|
|
std::string | getModuleType () const override |
| Returns the module's type string. More...
|
|
bool | getShouldEmptyBeforeGeneration () const override |
| Returns whether the module should empty a group before generating CSOs into it. More...
|
|
int | getAddCSOToGroupMode () const override |
| Returns the group generation mode. More...
|
|
std::string | getAddCSOToGroupLabel () const override |
| Returns the label string of a target group. More...
|
|
int | getAddCSOToGroupId () const override |
| Returns the id of a target group. More...
|
|
int | getDefaultPathPointStyle () const override |
| Returns the set default path point style for a new CSO. More...
|
|
float | getDefaultPathPointWidth () const override |
| Returns the set default path point width for a new CSO. More...
|
|
Vector3 | getDefaultPathPointColor () const override |
| Returns the set default path point color for a new CSO. More...
|
|
float | getDefaultPathPointAlpha () const override |
| Returns the set default path point alpha for a new CSO. More...
|
|
int | getDefaultSeedPointStyle () const override |
| Returns the set default seed point style for a new CSO. More...
|
|
float | getDefaultSeedPointSize () const override |
| Returns the set default seed point size for a new CSO. More...
|
|
Vector3 | getDefaultSeedPointColor () const override |
| Returns the set default seed point color for a new CSO. More...
|
|
float | getDefaultSeedPointAlpha () const override |
| Returns the set default seed point alpha for a new CSO. More...
|
|
int | getDefaultVoxelWriteMode () const override |
| Returns the set default voxel write mode for a new CSO. More...
|
|
float | getDefaultVoxelWriteValue () const override |
| Returns the set default voxel write value for a new CSO. More...
|
|
| ~CSOGenerator () override |
| Destructor. More...
|
|
| ~CSOBaseModule () override |
| Standard destructor. More...
|
|
virtual bool | _useLegacyAutoApplyMode () const |
| Controls whether update behaviour on parameter field changes should depend on the autoApply field (legacy mode, don't use it when adding your new subclasses) or if it should depend on the updateMode (recommended) More...
|
|
void | _setIsProcessingFlag (bool newProcessingState) |
| Sets the isProcessing field if the processing state has changed. More...
|
|
| ML_MODULE_CLASS_HEADER (CSOBaseModule) |
|
void | handleNotificationInternal (Field *field, FieldSensor::Strength strength) override |
| Called from FieldContainer whenever a field changes. More...
|
|
virtual CalculateOutputImageHandler * | createCalculateOutputImageHandler (PagedImage *outputImage) |
| Creates the CalculateOutputImageHandler for the given output image outputImage . More...
|
|
virtual void | calculateOutputImageProperties ([[maybe_unused]] int outputIndex, [[maybe_unused]] PagedImage *outputImage) |
| Set properties of output image outputImage with output index outputIndex . More...
|
|
virtual SubImageBox | calculateInputSubImageBox (int, const SubImageBox &outputSubImageBox, int) |
| Called by the Host to determine which input image region (tile) of input inputIndex is required to calculate a certain output image region (page) of output outputIndex . More...
|
|
virtual void | calculateOutputSubImage (SubImage *outputSubImage, int outputIndex, SubImage *inputSubImages) |
| Calculates page outputSubImage of output image with index outputIndex given the input image tiles in array inputSubImages . More...
|
|
virtual void | provideCustomPage (int, const SubImageBox &, MLMemoryBlockHandle &) |
| This method allows a Module to provide its own pages to the Host for the outputIndex output image. More...
|
|
void | handleNotificationOff () |
| Decreases lock counter for handleNotification calls. More...
|
|
void | handleNotificationOn () |
| Increases lock counter for handleNotification calls. More...
|
|
bool | isHandleNotificationOn () |
| Returns true if handleNotification calls are permitted; otherwise, it returns false . More...
|
|
void | setOutputImageInplace (MLint outputIndex=0, MLint inputIndex=0) |
| Sets the optimization flag: if calculating a page in calculateOutputSubImage(), the output image page of output outputIndex shall use the same memory as the input page of input inputIndex . More...
|
|
void | unsetOutputImageInplace (MLint outputIndex=0) |
| Clears the optimization flag: output page of output at outputIndex and input tile shall use different memory buffers in calculateOutputSubImage(). More...
|
|
void | setBypass (MLint outputIndex=0, MLint inputIndex=0) |
| Sets the input image whose pages can also be used instead of output pages for the output image at outputIndex to avoid recalculations. More...
|
|
void | setClampPagesToImageExtent (bool flag=true) |
| Enables/disables page clamping on all output images. More...
|
|
void | setThreadSupport (THREAD_SUPPORT supportMode) |
| Passes any THREAD_SUPPORT supportMode to decide whether and what type of multithreading is supported by this module. More...
|
|
void | permitRecursiveHandleNotifications (bool enable) |
| If this flag is set to enable =true, recursive entries in handleNotification are permitted. More...
|
|
void | setVoxelDataTypeSupport (PERMITTED_TYPES permTypes) |
| Specifies which types this module supports. More...
|
|