PTZStream.h
Go to the documentation of this file.
1 // Copyright (c) 2016 Digital Barriers
4 
22 #pragma once
23 
24 #include "Stream.h"
25 #include "PTZTypes.h"
26 #include "CameraInfo.h"
27 
28 namespace EdgeVisDecoderSDK
29 {
30  class PTZStreamImpl;
31 
32  class PTZStream : public Stream
33  {
34  private:
35  friend class PTZStreamImpl;
36 
37  public:
38  DB_EDGEVIS_SDK virtual ~PTZStream();
39  DB_EDGEVIS_SDK PTZStream();
40  PTZStream(std::weak_ptr<EncoderImpl> encoder, const std::wstring& name = L"");
41  PTZStream(const Stream &other);
42 
43 
44  public:
45 
56  DB_EDGEVIS_SDK bool SetAddress(int32_t address);
57 
64  DB_EDGEVIS_SDK PTZSteeringSpeed GetSpeed();
65 
72  DB_EDGEVIS_SDK void SetSpeed(PTZSteeringSpeed speed);
73 
82  DB_EDGEVIS_SDK OpResult PanLeft();
83 
92  DB_EDGEVIS_SDK OpResult PanRight();
93 
103  DB_EDGEVIS_SDK OpResult TiltUp();
104 
114  DB_EDGEVIS_SDK OpResult TiltDown();
115 
124  DB_EDGEVIS_SDK OpResult ZoomTele();
125 
135  DB_EDGEVIS_SDK OpResult ZoomWide();
136 
145  DB_EDGEVIS_SDK OpResult Stop();
146 
157  DB_EDGEVIS_SDK OpResult FocusNear();
158 
170  DB_EDGEVIS_SDK OpResult FocusFar();
171 
181  DB_EDGEVIS_SDK OpResult FocusAuto();
182 
195  DB_EDGEVIS_SDK OpResult IrisOpen();
196 
209  DB_EDGEVIS_SDK OpResult IrisClose();
210 
220  DB_EDGEVIS_SDK OpResult IrisAuto();
221 
230  DB_EDGEVIS_SDK OpResult ToggleBacklight();
231 
244  DB_EDGEVIS_SDK OpResult ToggleAux(int32_t auxCmd, bool on);
245 
257  DB_EDGEVIS_SDK OpResult ToggleAux(int32_t auxCmd);
258 
267  DB_EDGEVIS_SDK bool GetAuxState(int32_t auxCmd);
268 
274  DB_EDGEVIS_SDK bool IsVPTZMode() const;
275 
281  DB_EDGEVIS_SDK void SetVPTZMode(bool on);
282 
290  DB_EDGEVIS_SDK OpResult VPTZReset();
291 
301  DB_EDGEVIS_SDK bool SupportsVPTZ();
302 
310  DB_EDGEVIS_SDK int32_t MaxPTZPresets() const;
311 
319  DB_EDGEVIS_SDK std::vector< PTZPresetInfo > PTZPresets() const;
320 
334  DB_EDGEVIS_SDK OpResult GoToPreset(int32_t preset);
335 
348  DB_EDGEVIS_SDK OpResult SetPreset(const PTZPresetInfo& p,
349  int32_t inputId = -1
350  );
351 
357  DB_EDGEVIS_SDK std::vector< PTZCustomCommand > CustomCommands() const;
358 
371  DB_EDGEVIS_SDK OpResult CustomCommand(int32_t command);
372 
390  DB_EDGEVIS_SDK OpResult ProcessCustomCommand(PTZCustomCommand customCommand, bool auxState);
391 
397  DB_EDGEVIS_SDK std::vector<PTZTourInfo> GetPTZTours();
398 
408  DB_EDGEVIS_SDK PTZTourInfo GetPTZTour(int32_t input_id);
409 
422  DB_EDGEVIS_SDK OpResult SetPTZTour(PTZTourInfo tour);
423 
432  DB_EDGEVIS_SDK bool SupportsMove();
433 
455  DB_EDGEVIS_SDK OpResult Move(int8_t horizontal, int8_t vertical, int8_t zoom);
456 
457 
458  public:
459 
465  DB_EDGEVIS_SDK virtual bool IsConnected() const;
466  };
467 }
DB_EDGEVIS_SDK OpResult FocusFar()
Instruct the camera to change the focus to be futher away from the camera.
DB_EDGEVIS_SDK OpResult ToggleBacklight()
Toggles the camera&#39;s backlight on or off.
DB_EDGEVIS_SDK std::vector< PTZTourInfo > GetPTZTours()
Gets the PTZ tours configured for all camera inputs on the encoder.
DB_EDGEVIS_SDK OpResult Move(int8_t horizontal, int8_t vertical, int8_t zoom)
Issue a V2 PTZ command to the camera to move.
DB_EDGEVIS_SDK OpResult IrisAuto()
Toggles the auto iris control on the camera on or off.
DB_EDGEVIS_SDK bool SupportsVPTZ()
Determines if the PTZ Stream on the Encoder supports Virtual PTZ.
DB_EDGEVIS_SDK OpResult IrisClose()
Instruct the camera to close its iris to reduce the amount of light received in the image...
DB_EDGEVIS_SDK bool SetAddress(int32_t address)
Set the input that PTZ actions should occur on without changing the input being viewed.
DB_EDGEVIS_SDK bool IsVPTZMode() const
Get the current setting for Virtual PTZ Mode.
DB_EDGEVIS_SDK OpResult FocusAuto()
Toggles the auto focus on the camera on or off.
DB_EDGEVIS_SDK bool GetAuxState(int32_t auxCmd)
Get the state of the specified Aux command.
DB_EDGEVIS_SDK OpResult SetPTZTour(PTZTourInfo tour)
Applies the provided tour settings to the encoder.
DB_EDGEVIS_SDK std::vector< PTZCustomCommand > CustomCommands() const
Retrieve a list of the available PTZ Custom Commands for the current camera.
DB_EDGEVIS_SDK OpResult ZoomTele()
Zoom the camera towards the distance, also referred to as zoom in.
DB_EDGEVIS_SDK PTZTourInfo GetPTZTour(int32_t input_id)
Gets the PTZ tour configured for requested input only.
DB_EDGEVIS_SDK OpResult CustomCommand(int32_t command)
Sends a custom command to the camera.
DB_EDGEVIS_SDK OpResult FocusNear()
Instruct the camera to change the focus to be closer to the camera.
DB_EDGEVIS_SDK OpResult TiltDown()
Move the camera by tilting down.
Content for PTZ Custom command.
Definition: PTZTypes.h:86
The PTZStream is used to send movement commands to a PTZ camera.
Definition: PTZStream.h:32
The Stream interface represent a service that is available on an Encoder.
Definition: Stream.h:50
Content of the PTZ Tour.
Definition: PTZTypes.h:145
DB_EDGEVIS_SDK int32_t MaxPTZPresets() const
Gets the maximum number of PTZ presets that the current camera supports.
DB_EDGEVIS_SDK bool SupportsMove()
Determine if this encoder is capable of supporting the PTZ Move command.
DB_EDGEVIS_SDK OpResult PanRight()
Move the camera by panning to the right.
DB_EDGEVIS_SDK OpResult IrisOpen()
Instruct the camera to open its iris to increase the amount of light received in the image...
DB_EDGEVIS_SDK OpResult GoToPreset(int32_t preset)
Instruct the camera to move to a predefined preset position that is stored on the camera...
DB_EDGEVIS_SDK OpResult Stop()
Stop any current panning, tilting or zooming operations.
DB_EDGEVIS_SDK std::vector< PTZPresetInfo > PTZPresets() const
Gets a list of PTZ presets for the current camera.
DB_EDGEVIS_SDK OpResult TiltUp()
Move the camera by tilting up.
DB_EDGEVIS_SDK OpResult ToggleAux(int32_t auxCmd, bool on)
Toggles an AUX command on or off on the camera.
PTZSteeringSpeed
The PTZ steering speed to set the camera to
Definition: PTZTypes.h:26
Defines a PTZ Preset.
Definition: PTZTypes.h:37
DB_EDGEVIS_SDK void SetSpeed(PTZSteeringSpeed speed)
Set the steering speed that will be used when the next Pan or Tilt command is sent.
The EdgeVis Decoder SDK namespace.
DB_EDGEVIS_SDK OpResult ZoomWide()
Zoom the camera towards the wide position, also referred to as zoom out.
DB_EDGEVIS_SDK OpResult SetPreset(const PTZPresetInfo &p, int32_t inputId=-1)
Sets a PTZ Preset.
DB_EDGEVIS_SDK PTZSteeringSpeed GetSpeed()
Get the current steering speed that will be used when the next Pan or Tilt command is sent...
DB_EDGEVIS_SDK OpResult PanLeft()
Move the camera by panning to the left.
DB_EDGEVIS_SDK OpResult ProcessCustomCommand(PTZCustomCommand customCommand, bool auxState)
Convenience method for processing custom PTZ commands including focus, iris, backlight and protocol s...
DB_EDGEVIS_SDK void SetVPTZMode(bool on)
Set the current setting for Virtual PTZ Mode.
virtual DB_EDGEVIS_SDK bool IsConnected() const
Is the PTZStream currently connected ?
OpResult
Result of an operation.
Definition: OpResult.h:25
DB_EDGEVIS_SDK OpResult VPTZReset()
Resets the Virtual PTZ back to the full visible frame.