VPTZData.h
Go to the documentation of this file.
1 // Copyright (c) 2016 Digital Barriers
4 
23 #pragma once
24 
25 #include "StreamData.h"
26 
27 namespace EdgeVisDecoderSDK
28 {
29  class VPTZDataImpl;
30 
31  class VPTZData : public StreamData
32  {
33  public:
34  DB_EDGEVIS_SDK VPTZData();
35  VPTZData(std::weak_ptr<VPTZDataImpl> pimpl);
36  DB_EDGEVIS_SDK VPTZData(StreamData data);
37 
38  DB_EDGEVIS_SDK virtual ~VPTZData();
39 
45  DB_EDGEVIS_SDK int16_t SourceWidth() const;
46 
47  void SourceWidth(int16_t source_width);
48 
54  DB_EDGEVIS_SDK int16_t SourceHeight() const;
55 
56  void SourceHeight(int16_t source_height);
57 
64  DB_EDGEVIS_SDK int16_t SelectionTop() const;
65 
66  void SelectionTop(int16_t selection_top);
67 
74  DB_EDGEVIS_SDK int16_t SelectionLeft() const;
75 
76  void SelectionLeft(int16_t selection_left);
77 
84  DB_EDGEVIS_SDK int16_t SelectionBottom() const;
85 
86  void SelectionBottom(int16_t selection_bottom);
87 
94  DB_EDGEVIS_SDK int16_t SelectionRight() const;
95 
96  void SelectionRight(int16_t selection_right);
97  };
98 }
DB_EDGEVIS_SDK int16_t SelectionTop() const
The number of pixels down from the top of the image that has been selected.
DB_EDGEVIS_SDK int16_t SelectionBottom() const
The number of pixels up from the bottom of the image that has been selected.
DB_EDGEVIS_SDK int16_t SourceWidth() const
Returns the width of the Source image.
DB_EDGEVIS_SDK int16_t SourceHeight() const
Returns the height of the Source image.
DB_EDGEVIS_SDK int16_t SelectionLeft() const
The number of pixels from the left of the image that has been selected.
Class describing the are currently being sent as VPTZ.
Definition: VPTZData.h:31
This is the base class for the StreamData objects.
Definition: StreamData.h:27
DB_EDGEVIS_SDK int16_t SelectionRight() const
The number of pixels from the right of the image that has been selected.
The EdgeVis Decoder SDK namespace.