AnalyticsRegionVertex.h
Go to the documentation of this file.
1 // Copyright (c) 2019 Digital Barriers
4 
20 #pragma once
21 
22 #include "EdgeVisSDK.h"
23 #include "Pimpl.h"
24 
25 namespace EdgeVisDecoderSDK
26 {
27  class AnalyticsRegionVertexImpl;
28 
29  class AnalyticsRegionVertex : public EdgeVisSDKPimpl<AnalyticsRegionVertexImpl>
30  {
31  public:
32  DB_EDGEVIS_SDK AnalyticsRegionVertex();
33  DB_EDGEVIS_SDK AnalyticsRegionVertex(double x, double y);
34  EdgeVisSDKPimplWeakConstructor(AnalyticsRegionVertex);
35 
36  DB_EDGEVIS_SDK virtual ~AnalyticsRegionVertex();
37 
45  DB_EDGEVIS_SDK double GetX() const;
46 
55  DB_EDGEVIS_SDK void SetX(double x);
56 
64  DB_EDGEVIS_SDK double GetY() const;
65 
66 
75  DB_EDGEVIS_SDK void SetY(double y);
76  };
77 }
DB_EDGEVIS_SDK void SetY(double y)
Sets y coordinate of this analytics vertex.
DB_EDGEVIS_SDK void SetX(double x)
Sets x coordinate of this analytics vertex.
Defines a vertex within the video frame.
Definition: AnalyticsRegionVertex.h:29
DB_EDGEVIS_SDK double GetX() const
Gets x coordinate of this analytics vertex.
DB_EDGEVIS_SDK double GetY() const
Gets y coordinate of this analytics vertex.
The EdgeVis Decoder SDK namespace.