AnalyticsActorInfo.h
Go to the documentation of this file.
1 // Copyright (c) 2017 Digital Barriers
4 
16 #pragma once
17 
18 #include <vector>
19 
20 #ifdef __cplusplus
21 namespace EdgeVisDecoderSDK
22 {
23  extern "C" {
24 #endif
25 
32  typedef struct AnalyticsActorPoint
33  {
38  double x;
39 
44  double y;
45 
51  double width;
52 
58  double height;
59 
65  bool alarming;
66 
72  int64_t timestamp;
74 
80  typedef struct AnalyticsActorInfo
81  {
87  int32_t actor_id;
88 
95 
101 
107  double height;
108 
113  double width;
114 
119  bool alarming;
120 
121 
125  std::wstring detection_type;
126 
127  std::vector<AnalyticsActorPoint> path;
129 
130 #ifdef __cplusplus
131  }
132 }
133 #endif
double width
The width of the actor.
Definition: AnalyticsActorInfo.h:113
double x
The x location of the actor, as a percentage of the overall image width.
Definition: AnalyticsActorInfo.h:38
double height
The height of the actor.
Definition: AnalyticsActorInfo.h:107
double horizontal_position
The horizontal position of the actor.
Definition: AnalyticsActorInfo.h:94
double height
The height of the actor point, as a percentage of the overall image height.
Definition: AnalyticsActorInfo.h:58
std::wstring detection_type
String describing the actor detection type.
Definition: AnalyticsActorInfo.h:125
int32_t actor_id
The actor ID, this will be unique for each object detected.
Definition: AnalyticsActorInfo.h:87
Describes an analytics actor points.
Definition: AnalyticsActorInfo.h:32
int64_t timestamp
The timestamp of this point.
Definition: AnalyticsActorInfo.h:72
double width
The width of the actor point, as a percentage of the overall image width.
Definition: AnalyticsActorInfo.h:51
struct AnalyticsActorInfo AnalyticsActorInfo
Describes an analytics actor data object being received.
struct AnalyticsActorPoint AnalyticsActorPoint
Describes an analytics actor points.
bool alarming
True if the actor is in an alarming state.
Definition: AnalyticsActorInfo.h:119
double y
The y location of the actor, as a percentage of the overall image height.
Definition: AnalyticsActorInfo.h:44
The EdgeVis Decoder SDK namespace.
double vertical_position
The vertical position of the actor.
Definition: AnalyticsActorInfo.h:100
bool alarming
True if the actor was alarming at this point.
Definition: AnalyticsActorInfo.h:65
Describes an analytics actor data object being received.
Definition: AnalyticsActorInfo.h:80