| 1234567891011121314151617181920212223 |
- #pragma once
- #include "FunSDK/JObject.h"
- #include "EventHandler.h"
- #define JK_Detect_BlindDetect "Detect.BlindDetect"
- class Detect_BlindDetect : public JObject //视频遮挡
- {
- public:
- JBoolObj Enable;
- EventHandler mEventHandler;
- JIntObj Level;
- public:
- Detect_BlindDetect(JObject *pParent = NULL, const char *szName = JK_Detect_BlindDetect):
- JObject(pParent,szName),
- Enable(this, "Enable"),
- mEventHandler(this, "EventHandler"),
- Level(this, "Level"){
- };
- ~Detect_BlindDetect(void){};
- };
|