AnalyticsRegion.h
Go to the documentation of this file.
1 // Copyright (c) 2019 Digital Barriers
4 
21 #pragma once
22 
23 #include "EdgeVisSDK.h"
24 #include "Pimpl.h"
25 
26 #include "AnalyticsRegionVertex.h"
27 
28 namespace EdgeVisDecoderSDK
29 {
30  class AnalyticsRegionImpl;
31 
32  class AnalyticsRegion : public EdgeVisSDKPimpl<AnalyticsRegionImpl>
33  {
34  public:
35  DB_EDGEVIS_SDK AnalyticsRegion();
36  EdgeVisSDKPimplWeakConstructor(AnalyticsRegion);
37 
38  DB_EDGEVIS_SDK virtual ~AnalyticsRegion();
39 
45  DB_EDGEVIS_SDK int32_t GetRegionID() const;
46 
55  DB_EDGEVIS_SDK bool SetRegionID(int32_t id);
56 
57 
63  DB_EDGEVIS_SDK bool GetEnabled() const;
64 
70  DB_EDGEVIS_SDK void SetEnabled(bool enable);
71 
79  DB_EDGEVIS_SDK bool GetInclusive() const;
80 
88  DB_EDGEVIS_SDK void SetInclusive(bool inclusive);
89 
95  DB_EDGEVIS_SDK std::vector<AnalyticsRegionVertex> GetVertices() const;
96 
104  DB_EDGEVIS_SDK bool SetVertices(std::vector<AnalyticsRegionVertex> vertices);
105 
106 
107  };
108 }
DB_EDGEVIS_SDK bool SetRegionID(int32_t id)
Sets the region ID.
DB_EDGEVIS_SDK bool GetEnabled() const
Gets the enabled state of this region.
DB_EDGEVIS_SDK bool SetVertices(std::vector< AnalyticsRegionVertex > vertices)
Set the vertices used to define this region.
DB_EDGEVIS_SDK int32_t GetRegionID() const
Gets the region ID.
Defines a region within the video frame within which the analytics will be applied.
Definition: AnalyticsRegion.h:32
DB_EDGEVIS_SDK bool GetInclusive() const
Gets the inclusive state of this region.
DB_EDGEVIS_SDK std::vector< AnalyticsRegionVertex > GetVertices() const
Get the vertices used to define this region.
DB_EDGEVIS_SDK void SetInclusive(bool inclusive)
Sets the inclusive state of this region.
DB_EDGEVIS_SDK void SetEnabled(bool enable)
Sets the enabled state of this region.
The EdgeVis Decoder SDK namespace.