AnalyticsInfo.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 "AnalyticsConfig.h"
27 
28 namespace EdgeVisDecoderSDK
29 {
34  static const std::wstring AnalyticsTypeSafeZone2D = L"2D";
35  static const std::wstring AnalyticsTypeSafeZoneAI = L"AI";
36 
37  class AnalyticsInfoImpl;
38 
39  class AnalyticsInfo : public EdgeVisSDKPimpl<AnalyticsInfoImpl>
40  {
41  public:
42  DB_EDGEVIS_SDK AnalyticsInfo();
43  EdgeVisSDKPimplWeakConstructor(AnalyticsInfo);
44 
45  DB_EDGEVIS_SDK virtual ~AnalyticsInfo();
46 
52  DB_EDGEVIS_SDK std::wstring GetAnalyticsType() const;
53 
62  DB_EDGEVIS_SDK bool SetAnalyticsType(const std::wstring& type);
63 
69  DB_EDGEVIS_SDK std::vector<AnalyticsConfig> GetConfig() const;
70 
77  DB_EDGEVIS_SDK bool SetConfig(std::vector<AnalyticsConfig> config);
78  };
79 }
DB_EDGEVIS_SDK std::vector< AnalyticsConfig > GetConfig() const
Get the vector of AnalyticsConfig defined for this encoder.
Defines the type of analytics that the encoder will use and the configuration for each video input th...
Definition: AnalyticsInfo.h:39
DB_EDGEVIS_SDK bool SetAnalyticsType(const std::wstring &type)
Sets the analytics type that the encoder will use.
DB_EDGEVIS_SDK std::wstring GetAnalyticsType() const
Gets the analytics type.
The EdgeVis Decoder SDK namespace.
DB_EDGEVIS_SDK bool SetConfig(std::vector< AnalyticsConfig > config)
Set the detection regions defined for this input.