AreaOfInterestConfig.h
Go to the documentation of this file.
1 // Copyright (c) 2019 Digital Barriers
4 
22 #pragma once
23 
24 #include "EdgeVisSDK.h"
25 #include "Pimpl.h"
26 
27 namespace EV
28 {
29  class AreaOfInterestInputConfig;
30 }
31 
32 namespace EdgeVisSDKCore
33 {
34  class AreaOfInterestConfig : public EdgeVisSDKPimpl<EV::AreaOfInterestInputConfig>
35  {
36  public:
37  DB_EDGEVIS_SDK AreaOfInterestConfig();
38  EdgeVisSDKPimplWeakConstructor(AreaOfInterestConfig);
39 
40  DB_EDGEVIS_SDK virtual ~AreaOfInterestConfig();
41 
48  DB_EDGEVIS_SDK int32_t GetInput() const;
49 
58  DB_EDGEVIS_SDK bool SetInput(const int32_t input);
59 
65  DB_EDGEVIS_SDK bool GetEnabled() const;
66 
72  DB_EDGEVIS_SDK bool SetEnabled(const bool enable);
73 
79  DB_EDGEVIS_SDK int32_t GetRows() const;
80 
88  DB_EDGEVIS_SDK bool SetRows(const int32_t rows);
89 
95  DB_EDGEVIS_SDK int32_t GetColumns() const;
96 
104  DB_EDGEVIS_SDK bool SetColumns(const int32_t columns);
105 
111  DB_EDGEVIS_SDK int32_t GetBias() const;
112 
123  DB_EDGEVIS_SDK bool SetBias(const int32_t bias);
124 
131  DB_EDGEVIS_SDK bool GetBlur() const;
132 
141  DB_EDGEVIS_SDK bool SetBlur( const bool blur );
142 
157  DB_EDGEVIS_SDK std::vector<int8_t> GetRegionMap() const;
158 
174  DB_EDGEVIS_SDK bool SetRegionMap(const std::vector<int8_t>& region_map);
175 
176  };
177 }
Definition: OnvifEvent.h:27
Defines the area of interest configuration to use for a video input.
Definition: AreaOfInterestConfig.h:34
Definition: AreaOfInterestConfig.h:32