Camera.h
Go to the documentation of this file.
1 // Copyright (c) 2016 Digital Barriers
4 
18 #pragma once
19 
20 #include "EdgeVisSDK.h"
21 #include "Pimpl.h"
22 #include "CameraInfo.h"
23 #include "OpResult.h"
24 
25 namespace EdgeVisDecoderSDK
26 {
27  class CameraImpl;
28 
29  class Camera : public EdgeVisSDKPimpl<CameraImpl>
30  {
31  public:
32  DB_EDGEVIS_SDK Camera();
33  EdgeVisSDKPimplWeakConstructor(Camera);
34  DB_EDGEVIS_SDK virtual ~Camera();
35 
36  public:
37 
43  DB_EDGEVIS_SDK int32_t InputId() const;
44 
50  DB_EDGEVIS_SDK std::wstring InputName() const;
51 
66  DB_EDGEVIS_SDK OpResult GetCameraInfo(CameraInfo & result) const;
67 
81  DB_EDGEVIS_SDK OpResult SwitchTo();
82  };
83 }
DB_EDGEVIS_SDK OpResult SwitchTo()
Instructs the Encoder to switch the current active camera input to this camera.
A Camera interface represents a camera connected to an Encoder.
Definition: Camera.h:29
DB_EDGEVIS_SDK OpResult GetCameraInfo(CameraInfo &result) const
Gets the CameraInfo object containing information about the camera.
The CameraInfo interface contains the settings for a Camera connected to one of the Encoder&#39;s camera ...
Definition: CameraInfo.h:43
DB_EDGEVIS_SDK int32_t InputId() const
Gets the camera input ID for the Camera on the Encoder.
The EdgeVis Decoder SDK namespace.
OpResult
Result of an operation.
Definition: OpResult.h:25
DB_EDGEVIS_SDK std::wstring InputName() const
Gets the camera input name for the Camera on the Encoder.