.. index:: pair: class; P1::CameraSdk::ILiveViewSubscription .. _doxid-class_p1_1_1_camera_sdk_1_1_i_live_view_subscription: class P1::CameraSdk::ILiveViewSubscription ========================================== .. toctree:: :hidden: Overview ~~~~~~~~ Subscribe / unsubscribe to a LiveView stream of images. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include class ILiveViewSubscription: public :ref:`P1::CameraSdk::ISubscription` { public: // typedefs typedef std::vector<:ref:`ImageFormat`> :target:`SupportedFormats`; // methods virtual :ref:`EXPORT_API` :ref:`SupportedFormats` :ref:`ImageFormatsSupported`() const = 0; virtual :ref:`EXPORT_API` void :ref:`Subscribe`(:ref:`ImageFormat` format) = 0; virtual void :ref:`Subscribe`() = 0; virtual :ref:`EXPORT_API` :ref:`ImageFormat` :ref:`Format`() const = 0; virtual :ref:`EXPORT_API` :ref:`ValueRect` :ref:`Crop`() const = 0; virtual :ref:`EXPORT_API` uint32_t :ref:`PreferredMaxDimension`() const = 0; virtual :ref:`EXPORT_API` :ref:`ValueArea` :ref:`FullImageSize`() const = 0; virtual :ref:`EXPORT_API` float :ref:`Lightness`() const = 0; virtual :ref:`EXPORT_API` void :ref:`SetFormat`(:ref:`ImageFormat` format) = 0; virtual :ref:`EXPORT_API` void :target:`SetCrop`(:ref:`ValueRect` const& cropRect) = 0; virtual :ref:`EXPORT_API` void :target:`ResetCrop`() = 0; virtual :ref:`EXPORT_API` void :target:`SetPreferredMaxDimension`(uint32_t const maxDimensionValue) = 0; virtual :ref:`EXPORT_API` void :ref:`SetWhiteBalancePoint`(:ref:`ValuePoint` const& whitePoint) = 0; virtual :ref:`EXPORT_API` void :ref:`SetLightness`(float const lightness) = 0; virtual :ref:`EXPORT_API` std::string :target:`ToString`() const = 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_live_view_subscription: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Subscribe / unsubscribe to a LiveView stream of images. Subscribing to this tells the camera that we would like a video stream of images from the camera. Also using this class interface, LiveView subscriptions can be configured for format and size. Subscribing to this subscription will activate LiveView the camera, and stream image frames to your host, as long as the subscription is active. :ref:`Version ` 3.0 .. rubric:: See also: :ref:`ISubscriptionManager ` Methods ------- .. index:: pair: function; ImageFormatsSupported .. _doxid-class_p1_1_1_camera_sdk_1_1_i_live_view_subscription_1ac051296cd99879d62bd937063c58a1cb: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual :ref:`EXPORT_API` :ref:`SupportedFormats` ImageFormatsSupported() const = 0 Get supported formats that can be set with :ref:`SetFormat() ` .. index:: pair: function; Subscribe .. _doxid-class_p1_1_1_camera_sdk_1_1_i_live_view_subscription_1a01da800dff1d5d5826b4b91529106126: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual :ref:`EXPORT_API` void Subscribe(:ref:`ImageFormat` format) = 0 Subscribe to live view .. index:: pair: function; Subscribe .. _doxid-class_p1_1_1_camera_sdk_1_1_i_live_view_subscription_1aa46adead38e7a2e1f15ac1fb5bd92de3: .. 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; Format .. _doxid-class_p1_1_1_camera_sdk_1_1_i_live_view_subscription_1a93ec609ec1b2da6e44a6b650944d2b25: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual :ref:`EXPORT_API` :ref:`ImageFormat` Format() const = 0 Get the current bitmap format setting of LiveView. .. index:: pair: function; Crop .. _doxid-class_p1_1_1_camera_sdk_1_1_i_live_view_subscription_1aa83a8b33f3dd0bcfb6ec4f1df66fd1c8: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual :ref:`EXPORT_API` :ref:`ValueRect` Crop() const = 0 Get the current crop applied to the LiveView. .. index:: pair: function; PreferredMaxDimension .. _doxid-class_p1_1_1_camera_sdk_1_1_i_live_view_subscription_1adf33c7ee0c9e1860b45c6fdccb1c988d: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual :ref:`EXPORT_API` uint32_t PreferredMaxDimension() const = 0 Get the current desired max output dimension of the LiveView. .. index:: pair: function; FullImageSize .. _doxid-class_p1_1_1_camera_sdk_1_1_i_live_view_subscription_1ab545d04368f145e7a08536764fa3a9cd: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual :ref:`EXPORT_API` :ref:`ValueArea` FullImageSize() const = 0 Helper method to reset a current crop, back to "no crop". If you "zoomed" in the LiveView by setting the crop, use this method to get the original width and height of the full image. .. index:: pair: function; Lightness .. _doxid-class_p1_1_1_camera_sdk_1_1_i_live_view_subscription_1aa8af7a73f8e83ebcaebdd70b1cde97f9: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual :ref:`EXPORT_API` float Lightness() const = 0 An abstract value for exposure compensation. This values maps to the exposure compensation, but does not use the same EV values. Instead it uses an opaque float point value. .. rubric:: Returns: float The current lightness .. index:: pair: function; SetFormat .. _doxid-class_p1_1_1_camera_sdk_1_1_i_live_view_subscription_1ab1b95003c06f079374de8162e529a299: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual :ref:`EXPORT_API` void SetFormat(:ref:`ImageFormat` format) = 0 Set the LiveView image's bitmap format. Some formats might not be supported for older camera firmware versions. To check that the value has been set correctly, poll with :ref:`ImageFormatsSupported() `. .. index:: pair: function; SetWhiteBalancePoint .. _doxid-class_p1_1_1_camera_sdk_1_1_i_live_view_subscription_1abd3b78fee17550fa49df4ce73e8b0cd1: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual :ref:`EXPORT_API` void SetWhiteBalancePoint(:ref:`ValuePoint` const& whitePoint) = 0 Set the *Custom C1* white balance, by the sampling a position in full image coordinates. Cameras like IQ4 defines a set of white balance settings. The defaults are *Daylight*, *Tungsten*, etc. Besides the default settings, there are used definable ones. One of these are *Custom C1*. This method changes the cameras white balance property to *Custom C1* setting. And the white balance vector for *Custom C1* is changed to reflect the sample position provided by this method. **This means the cameras white balance setting is changed!** Use the *white balance* property, to change white balance back to *Auto* or *Daylight*, etc. .. index:: pair: function; SetLightness .. _doxid-class_p1_1_1_camera_sdk_1_1_i_live_view_subscription_1a6c8e0f3d84b48e52dcc8d25a82442c68: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual :ref:`EXPORT_API` void SetLightness(float const lightness) = 0 Set a *exposure compensation* -like value applied to the live view.