.. index:: pair: class; P1::CameraSdk::LiveViewConfiguration .. _doxid-class_p1_1_1_camera_sdk_1_1_live_view_configuration: class P1::CameraSdk::LiveViewConfiguration ========================================== .. toctree:: :hidden: Overview ~~~~~~~~ Representation of a cameras curretn LiveView config (setup) :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include class LiveViewConfiguration { public: // construction :target:`LiveViewConfiguration`(LiveViewConfigurationPimpl* pimpl); :target:`LiveViewConfiguration`(const LiveViewConfiguration& other); :target:`LiveViewConfiguration`(LiveViewConfiguration&& other); // methods :ref:`EXPORT_API` LiveViewConfiguration& :target:`operator =` (const LiveViewConfiguration& other); :ref:`EXPORT_API` :ref:`LiveViewBitmapFormat` :ref:`Format`() const; :ref:`EXPORT_API` :ref:`ValueRect` :ref:`Crop`() const; :ref:`EXPORT_API` uint32_t :ref:`PreferredMaxDimension`() const; :ref:`EXPORT_API` :ref:`ValueArea` :ref:`FullImageSize`() const; :ref:`EXPORT_API` float :ref:`Lightness`() const; :ref:`EXPORT_API` void :ref:`SetFormat`(const :ref:`LiveViewBitmapFormat` format); :ref:`EXPORT_API` void :ref:`SetCrop`(const :ref:`ValueRect`& cropRect); :ref:`EXPORT_API` void :ref:`SetPreferredMaxDimension`(const uint32_t maxDimensionValue); :ref:`EXPORT_API` void :ref:`SetWhiteBalancePoint`(const :ref:`ValuePoint`& whitePoint); :ref:`EXPORT_API` void :ref:`SetLightness`(const float lightness); :ref:`EXPORT_API` std::string :target:`ToString`() const; }; .. _details-class_p1_1_1_camera_sdk_1_1_live_view_configuration: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Representation of a cameras curretn LiveView config (setup) This class allows you to configure the LiveView properties of a camera. You obtain an object of this class using the :ref:`Camera::GetLiveViewConfiguration ` on the :ref:`Camera `. As you edit the parameters on the class, the corrospanding values are changed in the camera. **Note** : Changing the LiveView configuration is an exspensive operation, and requires a lot of work to be done in the camera. Also, the LiveView image feed is heavily pipelined, so changes will occur after a some delay. The :ref:`LiveViewImage ` class helps you account of this, by including the current LiveView image's *crop* parameters. This LiveVIew output image size is independent from the applied crop. It is only influenced by the :ref:`PreferredMaxDimension ` setting. This defines the length of the biggest of the image dimensions, which is most likely the width. The default LiveView image width is 1024 pixels, but you can change it to other common resolutions; like 640, 800, etc. You cannot set it to an arbitrary integer. The desired dimension value will snap the supported image resolutions. Methods ------- .. index:: pair: function; Format .. _doxid-class_p1_1_1_camera_sdk_1_1_live_view_configuration_1a820fa55259c4a86c02e8752d9cff1cfe: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`EXPORT_API` :ref:`LiveViewBitmapFormat` Format() const Get the current bitmap format setting of LiveView. .. index:: pair: function; Crop .. _doxid-class_p1_1_1_camera_sdk_1_1_live_view_configuration_1ae7eff0ea7daf892bef010241e8f32b88: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`EXPORT_API` :ref:`ValueRect` Crop() const Get the current crop applied to the LiveView. .. index:: pair: function; PreferredMaxDimension .. _doxid-class_p1_1_1_camera_sdk_1_1_live_view_configuration_1aeacfc8a6ef58efae0ba90b8fe51ea3c2: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`EXPORT_API` uint32_t PreferredMaxDimension() const Get the current desired max output dimension of the LiveView. .. index:: pair: function; FullImageSize .. _doxid-class_p1_1_1_camera_sdk_1_1_live_view_configuration_1a65a0d4d05755f7b14d3965630563615e: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`EXPORT_API` :ref:`ValueArea` FullImageSize() const Get the Helper method to reset the crop to "no crop". .. index:: pair: function; Lightness .. _doxid-class_p1_1_1_camera_sdk_1_1_live_view_configuration_1af0fd05d3269c59e396a013bd26428582: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`EXPORT_API` float Lightness() const 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_live_view_configuration_1a8374d331560001a27cdec741dc81fba7: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`EXPORT_API` void SetFormat(const :ref:`LiveViewBitmapFormat` format) Set the LiveView image's bitmap format. .. index:: pair: function; SetCrop .. _doxid-class_p1_1_1_camera_sdk_1_1_live_view_configuration_1a01877afbf317339946f2d05769dd165d: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`EXPORT_API` void SetCrop(const :ref:`ValueRect`& cropRect) Set a new crop on the LiveView. .. index:: pair: function; SetPreferredMaxDimension .. _doxid-class_p1_1_1_camera_sdk_1_1_live_view_configuration_1a0cc9c94a9a732d832cd6ceddd3c306ab: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`EXPORT_API` void SetPreferredMaxDimension(const uint32_t maxDimensionValue) Set the desired maximum dimension (width) of the LiveView's output images. .. index:: pair: function; SetWhiteBalancePoint .. _doxid-class_p1_1_1_camera_sdk_1_1_live_view_configuration_1ae17388763ae2fb4250755084a8c62ba8: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`EXPORT_API` void SetWhiteBalancePoint(const :ref:`ValuePoint`& whitePoint) Set the *Custom C1* white balance, by the sampling a position in full image coordinates. 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_live_view_configuration_1a7475cd2d66fce3021f0a9c5f19de2094: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`EXPORT_API` void SetLightness(const float lightness) Set a *exposure compensation* -like value applied to the live view.