-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathModuleCommon.hpp
63 lines (51 loc) · 1.28 KB
/
ModuleCommon.hpp
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
//
// ModuleCommon.hpp
// FaceOff
//
// Created by Jonathan Cole on 11/3/15.
//
//
#ifndef ModuleCommon_h
#define ModuleCommon_h
#include <opencv2/opencv.hpp>
#include <gui/UsesGUI.hpp>
#include "ofxTimeMeasurements.h"
class ModuleCommon : public UsesGUI {
public:
virtual ~ModuleCommon() {}
// A module must always override the following two methods and DrawGUI from the UsesGUI class.
virtual void ProcessFrames(cv::InputArray inLeft, cv::InputArray inRight, cv::OutputArray outLeft, cv::OutputArray outRight) = 0;
virtual std::string GetName() = 0;
/*void Enable() {
enabled = true;
}
void Disable() {
enabled = false;
}
const bool IsEnabled() {
return enabled;
}*/
void ToggleEnabled() {
enabled = !enabled;
}
bool enabled = false;
virtual void PreGUI() {
ImGui::Begin(GetName().c_str(), &showGUI, ImGuiWindowFlags_AlwaysAutoResize);
ImGui::Checkbox("Enabled", &enabled);
ImGui::Separator();
if (!enabled) ImGui::PushStyleVar(ImGuiStyleVar_Alpha, 0.2); //Push global disabled style
}
virtual void PostGUI() {
if (!enabled) ImGui::PopStyleVar(); //Pop global disabled style
ImGui::End();
}
virtual void PreModule() {
TS_START_NIF(GetName());
}
virtual void PostModule(){
TS_STOP_NIF(GetName());
}
protected:
private:
};
#endif /* ModuleCommon_h */