1 #ifndef PARAMETERDIALOG_H     2 #define PARAMETERDIALOG_H     8 #include <QDoubleSpinBox>     9 #include "VideoAnalysis.h"    37     void setCurrentSequence();
    51     std::deque<parameter> children(
parameter &parent);
    60     std::deque<parameter> getParameters(
int index);
    66     std::deque<QSpinBox *>valueSB;
    67     std::deque<QDoubleSpinBox *>valueDSB;
    68     std::deque<QLineEdit *>valueL;
    69     std::deque<QLabel *>nameParam;
    73     std::deque<std::string> currentSequence;
    78     void updateField(QString);
    79     void modifyParameters(QString);
    82     void on_resetButton_clicked();
    84     void on_guardarButton_clicked();
    86     void on_buttonBox_accepted();
    88     void on_createButton_clicked();
    91     Ui::ParameterDialog *ui;
    95 #endif // PARAMETERDIALOG_H Definition: ModulesDialog.h:11
The ParameterDialog class is used to configure parameters of each loaded module in execution time...
Definition: parameterDialog.h:19
The VideoAnalysis class is in charge to manage each module to actual video processing. 
Definition: VideoAnalysis.h:27
Definition: ModuleInterface.h:25