-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProcessingTeachParams.h
64 lines (53 loc) · 1.51 KB
/
ProcessingTeachParams.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/**
* ****************************************************************************
*
* @brief Class for all Example parameters based on
* VcaParamHandler->VcaProcParamHandler.
*
* ----------------------------------------------------------------------------
*
* @author Jonas Hofstetter
*
* @copyright CC Intelligent Sensors and Networks
* at Lucerne University of Applied Sciences
* and Arts T&A, Switzerland.
*
****************************************************************************
*/
#ifndef PROCESSING_TEACH_PARAMS_H
#define PROCESSING_TEACH_PARAMS_H
/***************************** Include Files ********************************/
#include "VcaParamHandler.h"
#include "VcaParam.h"
/************************** Constant Definitions ****************************/
/****************************************************************************/
namespace HSLU
{
class ProcessingTeachParams : public VcaParamHandler
{
public:
/**
* @brief Use predefined enum for registration in order to make sure
* that process indices do not change during development.
*/
enum PROCESS_LIST
{
PROCESS_2_TEACH = 0,
};
/**
* @brief Constructor
*/
ProcessingTeachParams();
/**
* @brief Destructor
*/
~ProcessingTeachParams();
/**
* @brief Process specific param example.
*/
VcaParam general_processCascade;
VcaParam general_MeasureTime;
VcaParam Process2Teach_binaryThreshold;
};
}
#endif // PROCESSING_TEACH_PARAMS_H