#ifndef ONF_STEPCOMPUTERDM_H #define ONF_STEPCOMPUTERDM_H #include "ct_step/abstract/ct_abstractstep.h" #include "ct_itemdrawable/ct_image2d.h" #include "ct_itemdrawable/ct_scene.h" class ONF_StepComputreRDM : public CT_AbstractStep { Q_OBJECT using SuperClass = CT_AbstractStep; public: ONF_StepComputreRDM(); QString description() const override; QString detailledDescription() const override; CT_VirtualAbstractStep* createNewInstance() const final; protected: void declareInputModels(CT_StepInModelStructureManager& manager) final; void fillPostInputConfigurationDialog(CT_StepConfigurableDialog* postInputConfigDialog) final; void declareOutputModels(CT_StepOutModelStructureManager& manager) final; void compute() final; private: double _hmin; double _hmax; CT_HandleInResultGroupCopy<> _inResult; CT_HandleInStdZeroOrMoreGroup _inZeroOrMoreRootGroup; CT_HandleInStdGroup<> _inGroup; CT_HandleInSingularItem _inScene; CT_HandleOutSingularItem > _outRDM; CT_HandleInResultGroup<0,1> _inResultDTM; CT_HandleInStdZeroOrMoreGroup _inZeroOrMoreRootGroupDTM; CT_HandleInStdGroup<> _inGroupDTM; CT_HandleInSingularItem> _inDTM; }; #endif // ONF_STEPCOMPUTERDM_H