.. index:: pair: class; P1::CameraSdk::IPreviewSubscription .. _doxid-class_p1_1_1_camera_sdk_1_1_i_preview_subscription: class P1::CameraSdk::IPreviewSubscription ========================================= .. toctree:: :hidden: Overview ~~~~~~~~ Subscribe / unsubscribe to preview transfers. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include class IPreviewSubscription: public :ref:`P1::CameraSdk::ISubscription` { public: // typedefs typedef std::vector<:ref:`ImageFormat`> :target:`SupportedFormats`; // methods virtual void :ref:`Subscribe`(:ref:`ImageFormat` format) = 0; virtual void :ref:`Subscribe`() = 0; virtual :ref:`SupportedFormats` :ref:`ImageFormatsSupported`() const = 0; virtual :ref:`ImageFormat` :ref:`Format`() const = 0; virtual void :ref:`SetFormat`(:ref:`ImageFormat` format) = 0; }; Inherited Members ----------------- .. ref-code-block:: cpp :class: doxyrest-overview-inherited-code-block public: // methods virtual bool :ref:`IsSupported`() const = 0; virtual bool :ref:`IsSubscribed`() const = 0; virtual void :ref:`Subscribe`() = 0; virtual void :ref:`Unsubscribe`() = 0; .. _details-class_p1_1_1_camera_sdk_1_1_i_preview_subscription: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Subscribe / unsubscribe to preview transfers. Subscribing to this tells the camera that we want to receive previews of newly captured images. The previews arrive via the notification :ref:`EventType::CameraPreviewReady `. :ref:`Version ` 3.0 .. rubric:: See also: :ref:`ISubscriptionManager ` Methods ------- .. index:: pair: function; Subscribe .. _doxid-class_p1_1_1_camera_sdk_1_1_i_preview_subscription_1ab63b12bed4d888f27ecfa121976d2014: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual void Subscribe(:ref:`ImageFormat` format) = 0 Subscribe to previews in the desired format. See :ref:`ImageFormatsSupported ` for supported formats .. index:: pair: function; Subscribe .. _doxid-class_p1_1_1_camera_sdk_1_1_i_preview_subscription_1a91a544b1fbe44ce220e87ba525b9363f: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual void Subscribe() = 0 Subscribe to previews using the format defined by :ref:`Format `. See :ref:`ImageFormatsSupported ` for supported formats for the camera .. index:: pair: function; ImageFormatsSupported .. _doxid-class_p1_1_1_camera_sdk_1_1_i_preview_subscription_1ad39103a09810871655ee294de921e508: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual :ref:`SupportedFormats` ImageFormatsSupported() const = 0 Formats supported for previews by the camera. .. index:: pair: function; Format .. _doxid-class_p1_1_1_camera_sdk_1_1_i_preview_subscription_1a5f200e997180b8131acb1ecb1d9c67ae: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual :ref:`ImageFormat` Format() const = 0 Get current format in use. .. index:: pair: function; SetFormat .. _doxid-class_p1_1_1_camera_sdk_1_1_i_preview_subscription_1a86b55504d25d97465219cd1287d7377b: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual void SetFormat(:ref:`ImageFormat` format) = 0 Change the preview format.