.. index:: pair: class; P1::ImageSdk::ConvertConfig .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config: class P1::ImageSdk::ConvertConfig ================================= .. toctree:: :hidden: Overview ~~~~~~~~ Class that configures the *Convert* pipeline stages. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include class ConvertConfig { public: // fields static const :ref:`ValueRange` :ref:`ExposureRange`; static const :ref:`ValueRange` :ref:`ContrastRange`; static const :ref:`ValueRange` :ref:`BrightnessRange`; static const :ref:`ValueRange` :ref:`SaturationRange`; static const :ref:`ValueRange` :ref:`HighlightRecoveryRange`; static const :ref:`ValueRange` :ref:`ShadowRecoveryRange`; static const :ref:`ValueRange` :ref:`BlackLevelRange`; static const :ref:`ValueRange` :ref:`WhiteLevelRange`; static const :ref:`ValueRange` :ref:`MidtoneLevelRange`; static const :ref:`ValueRange` :ref:`CurveInOutRange`; static const :ref:`ValueRange` :ref:`ClarityMethodRange`; static const :ref:`ValueRange` :ref:`ClarityAmountRange`; static const :ref:`ValueRange` :ref:`LuminanceNoiseReductionAmountRange`; static const :ref:`ValueRange` :ref:`ColorNoiseReductionAmountRange`; static const :ref:`ValueRange` :ref:`WhiteBalanceGainRange`; static const :ref:`ValueRange` :ref:`SharpeningGain`; static const :ref:`ValueRange` :ref:`SharpeningRadius`; static const :ref:`ValueRange` :ref:`SharpeningThreshold`; static const :ref:`ValueRange` :ref:`SharpeningHaloSuppression`; static const :ref:`ValueRange` :ref:`GeometricCorrectionFocalLengthRange`; static const :ref:`ValueRange` :ref:`GeometricCorrectionPixelPitchRange`; static const :ref:`ValueRange` :ref:`GeometricCorrectionShiftRange`; static const :ref:`ValueRange` :ref:`GeometricCorrectionPolinomRange`; static const :ref:`ValueRange` :ref:`GeometricCorrectionAffinityRange`; // construction :target:`ConvertConfig`(); :target:`ConvertConfig`(const ConvertConfig& other); // methods ConvertConfig& :target:`operator =` (const ConvertConfig& other); :ref:`CanvasClip` :ref:`GetCanvasClip`() const; ConvertConfig :ref:`SetCanvasClip`(:ref:`CanvasClip` canvasClip); :ref:`Rect` :ref:`GetCrop`() const; bool :target:`HasCrop`() const; bool :target:`HasOutputScaling`() const; double :ref:`GetOutputScale`() const; int32_t :ref:`GetOutputWidth`() const; int32_t :ref:`GetOutputHeight`() const; :ref:`BitmapFormat` :ref:`GetOutputFormat`() const; :ref:`ColorSpace` :ref:`GetOutputColorSpace`() const; :ref:`OrientationMode` :ref:`GetOrientation`() const; ConvertConfig :ref:`SetCrop`(int32_t x, int32_t y, int32_t width, int32_t height); ConvertConfig :ref:`SetCrop`(const :ref:`Rect`& cropRect); ConvertConfig :ref:`ResetCrop`(); ConvertConfig :ref:`SetOrientation`(const :ref:`OrientationMode` orientation); ConvertConfig :ref:`SetOutputScale`(double scaleFactor); ConvertConfig :ref:`SetOutputWidth`(int32_t destinationWidth); ConvertConfig :ref:`SetOutputHeight`(int32_t destinationHeight); ConvertConfig :ref:`SetOutputFormat`(:ref:`BitmapFormat` format); ConvertConfig :ref:`SetOutputColorSpace`(:ref:`ColorSpace` colorSpace); ConvertConfig :ref:`SetDualExposureOutput`(:ref:`DualExposureOutput` mode); float :ref:`GetContrast`() const; ConvertConfig :ref:`SetContrast`(const float contrast); float :ref:`GetBrightness`() const; ConvertConfig :ref:`SetBrightness`(const float brightness); ConvertConfig :ref:`SetPolynomialTransformation`( const float ax, const float bx, const float cx, const float ay, const float by, const float cy ); ConvertConfig :ref:`SetPolynomialTransformationNormalized`( const float ax, const float bx, const float cx, const float ay, const float by, const float cy ); std::vector :ref:`GetPolynomialTransformation`(); float :ref:`GetSaturation`() const; ConvertConfig :ref:`SetSaturation`(const float saturation); float :ref:`GetExposure`() const; ConvertConfig :ref:`SetExposure`(const float exposure); float :ref:`GetGain`() const; ConvertConfig :ref:`SetGain`(const float gain); :ref:`Color` :ref:`GetBlackLevel`() const; ConvertConfig :ref:`SetBlackLevel`(float r, float g, float b); ConvertConfig :ref:`SetBlackLevel`(:ref:`Color` color); :ref:`Color` :ref:`GetMidtoneLevel`() const; ConvertConfig :ref:`SetMidtoneLevel`(float r, float g, float b); ConvertConfig :ref:`SetMidtoneLevel`(:ref:`Color` color); :ref:`Color` :ref:`GetWhiteLevel`() const; ConvertConfig :ref:`SetWhiteLevel`(float r, float g, float b); ConvertConfig :ref:`SetWhiteLevel`(:ref:`Color` color); :ref:`Color` :ref:`GetBlackLevelTarget`(); ConvertConfig :ref:`SetBlackLevelTarget`(float r, float g, float b); ConvertConfig :ref:`SetBlackLevelTarget`(:ref:`Color` c); :ref:`Color` :ref:`GetWhiteLevelTarget`(); ConvertConfig :ref:`SetWhiteLevelTarget`(float r, float g, float b); ConvertConfig :ref:`SetWhiteLevelTarget`(:ref:`Color` c); float :ref:`GetSharpeningAmount`() const; float :ref:`GetSharpeningRadius`() const; float :ref:`GetSharpeningThreshold`() const; float :ref:`GetHaloSuppressionAmount`(); ConvertConfig :ref:`SetSharpening`( float amount, float radius, float threshold, float haloSuppressionAmount ); float :ref:`GetLuminanceNoiseReductionAmount`() const; ConvertConfig :ref:`SetLuminanceNoiseReductionAmount`(const float luminanceNoiseReductionAmount); bool :ref:`GetNoiseReductionSinglePixelEnabled`() const; ConvertConfig :ref:`SetNoiseReductionSinglePixelEnabled`(const bool noiseReductionSinglePixelEnabled); float :ref:`GetColorNoiseReductionAmount`() const; ConvertConfig :ref:`SetColorNoiseReductionAmount`(const float colorNoiseReductionAmount); :ref:`Clarity` :ref:`GetClarity`() const; ConvertConfig :ref:`SetClarity`(int clarityMethod, float clarityFactor); ConvertConfig :ref:`SetClarity`(:ref:`Clarity` clarity); float :ref:`GetShadowRecovery`() const; ConvertConfig :ref:`SetShadowRecovery`(const float shadowRecovery); float :ref:`GetHighlightRecovery`() const; ConvertConfig :ref:`SetHighlightRecovery`(const float highlightRecovery); const std::vector<:ref:`Point2D`> :ref:`GetRedCurve`() const; const :ref:`Curve` :ref:`GetDiscretizedRedCurve`( int numDiscretizedPoint, bool* success = nullptr ); ConvertConfig :ref:`SetRedCurve`(const std::vector<:ref:`Point2D`>& points); const std::vector<:ref:`Point2D`> :ref:`GetGreenCurve`() const; ConvertConfig :ref:`SetGreenCurve`(const std::vector<:ref:`Point2D`>& points); const :ref:`Curve` :ref:`GetDiscretizedGreenCurve`( int numDiscretizedPoint, bool* success = nullptr ); const std::vector<:ref:`Point2D`> :ref:`GetBlueCurve`() const; ConvertConfig :ref:`SetBlueCurve`(const std::vector<:ref:`Point2D`>& points); const :ref:`Curve` :ref:`GetDiscretizedBlueCurve`( int numDiscretizedPoint, bool* success = nullptr ); const std::vector<:ref:`Point2D`> :ref:`GetLumaCurve`() const; ConvertConfig :ref:`SetLumaCurve`(const std::vector<:ref:`Point2D`>& points); const :ref:`Curve` :ref:`GetDiscretizedLumaCurve`( int numDiscretizedPoint, bool* success = nullptr ); const std::vector<:ref:`Point2D`> :ref:`GetRgbCurve`() const; ConvertConfig :ref:`SetRgbCurve`(const std::vector<:ref:`Point2D`>& points); const :ref:`Curve` :ref:`GetDiscretizedRgbCurve`( int numDiscretizedPoint, bool* success = nullptr ); const :ref:`Color` :ref:`GetWhiteBalanceGain`() const; ConvertConfig :ref:`SetWhiteBalanceGain`(const :ref:`Color` whiteBalanceGain); const :ref:`WhiteBalanceMode` :ref:`GetWhiteBalanceMode`() const; ConvertConfig :ref:`SetWhiteBalanceMode`(const :ref:`WhiteBalanceMode` mode); bool :ref:`GetGeometricCorrectionEnabled`() const; ConvertConfig :ref:`SetGeometricCorrectionEnabled`(const bool enable); const :ref:`GeometricCorrection` :ref:`GetGeometricCorrection`() const; ConvertConfig :ref:`SetGeometricCorrection`(const :ref:`GeometricCorrection` geometricCorrection); ConvertConfig :target:`SetGeometricCorrectionCompensationEnabled`(const bool enable); ConvertConfig :target:`SetGeometricCompensationPressure`(const float pressure); bool :ref:`GetLightFalloffCorrectionEnabled`() const; ConvertConfig :ref:`SetLightFalloffCorrectionEnabled`(const bool enable); bool :ref:`GetChromaticAberrationCorrectionEnabled`() const; ConvertConfig :ref:`SetChromaticAberrationCorrectionEnabled`(const bool enable); bool :ref:`GetExposureWarningMaskEnabled`() const; ConvertConfig :ref:`SetExposureWarningMaskEnabled`(const bool enable); float :ref:`GetMaskThresholdOverExposure`() const; float :ref:`GetMaskThresholdUnderExposure`() const; ConvertConfig :ref:`SetExposureMaskThreadhold`( float underExposeThreshold, float overExposeThreadhold ); bool :ref:`GetClipWarningMaskEnabled`() const; ConvertConfig :ref:`SetClipWarningMaskEnabled`(bool enable); int :ref:`GetMaskThresholdClipWarningCount`() const; ConvertConfig :ref:`SetMaskThresholdClipWarningCount`(int thresholdCount); bool :ref:`GetEnableLinearPath`() const; ConvertConfig :ref:`SetEnableLinearPath`(const bool enable); :ref:`BitmapImage` :ref:`ApplyTo`( const :ref:`RawImage`& image, :ref:`BitmapImage`* mask = nullptr, bool waitForBusySDK = false ); void :ref:`SaveToFile`(const char* filename) const; std::string :ref:`Serialize`() const; static ConvertConfig :ref:`LoadFromFile`(const char* filename); static ConvertConfig :ref:`Deserialize`(const std::string serializedData); static std::vector :ref:`DiscretizeCurve`( const std::vector<:ref:`Point2D`>& points, unsigned int bits ); }; .. _details-class_p1_1_1_image_sdk_1_1_convert_config: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Class that configures the *Convert* pipeline stages. The convert config is where convertion from Bayer domain into the Rgb domain happens, you can configure cropping and scaling. The order is fixed. Also you can enable and setup different kinds of image enhancements algorithms, known from other image editing tools. Also it is possible to enable image corrections like lens distortion and light falloff. Fields ------ .. index:: pair: variable; ExposureRange .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1aab7ced9acc2bfb760b0a01aaefc4e11b: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` ExposureRange The :ref:`ValueRange ` of the Exposure value. * Minimum: -4.0 * Maximum: 4.0 * Default: 0.0 .. index:: pair: variable; ContrastRange .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a1a6e5a7587397f5c224a4e46c8965ca6: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` ContrastRange The :ref:`ValueRange ` of the Contrast value. * Minimum: -1.0 * Maximum: 1.0 * Default: 0.0 .. index:: pair: variable; BrightnessRange .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a77788b630c4616193a6708f7b18011f9: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` BrightnessRange The :ref:`ValueRange ` of the Brightness value. * Minimum: -1.0 * Maximum: 1.0 * Default: 0.0 .. index:: pair: variable; SaturationRange .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a7a2e9e111961f02a01f423a3080202aa: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` SaturationRange The :ref:`ValueRange ` of the Saturation value. * Minimum: -1.0 * Maximum: 1.0 * Default: 0.0 .. index:: pair: variable; HighlightRecoveryRange .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a6ecd8d5c0d00a08526d26d584fa953bc: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` HighlightRecoveryRange The :ref:`ValueRange ` of the HighlightRecovery value. * Minimum: 0.0 * Maximum: 1.0 * Default: 0.0 .. index:: pair: variable; ShadowRecoveryRange .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a64ca10d8071b50a03901f99f2dc0e4c6: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` ShadowRecoveryRange The :ref:`ValueRange ` of the ShadowRecovery value. * Minimum: 0.0 * Maximum: 1.0 * Default: 0.0 .. index:: pair: variable; BlackLevelRange .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a6199b16ff05e45af25677268bfdbf806: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` BlackLevelRange The :ref:`ValueRange ` of the BlackLevel value. * Minimum: 0.0 * Maximum: 1.0 * Default: 0.0 .. index:: pair: variable; WhiteLevelRange .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a1eeda6acf34515be9e3e77c3787016b1: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` WhiteLevelRange The :ref:`ValueRange ` of the WhiteLevel value. * Minimum: 0.0 * Maximum: 1.0 * Default: 1.0 .. index:: pair: variable; MidtoneLevelRange .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a554873460b655c7075898d277bc96217: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` MidtoneLevelRange The :ref:`ValueRange ` of the MidtoneLevel value. * Minimum: -1.0 * Maximum: 1.0 * Default: 0.0 .. index:: pair: variable; CurveInOutRange .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a5c71589b1033fd8868630396ceee807c: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` CurveInOutRange The :ref:`ValueRange ` of the X and Y field of each element of the curve type properties. * Minimum: 0.0 * Maximum: 1.0 * Default: 0.0 The properties this applies to are the following * RedCurve * BlueCurve * GreenCurve * LumaCurve * RGBCurve .. index:: pair: variable; ClarityMethodRange .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1adb1ca60e16a8448431ead2f685002b9b: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` ClarityMethodRange The :ref:`ValueRange ` of the Method field of the :ref:`Clarity ` value. * Minimum: clarityMethodNeutral = 0 * Maximum: clarityMethodNatural = 2 * Default: clarityMethodNeutral = 0 .. index:: pair: variable; ClarityAmountRange .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a261439929686afb69aaee38165ebfe1e: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` ClarityAmountRange The :ref:`ValueRange ` of the Factor field of the :ref:`Clarity ` property. * Minimum: -1.0 * Maximum: 1.0 * Default: 0.0 .. index:: pair: variable; LuminanceNoiseReductionAmountRange .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a3561cb18d9bd5f7f76e5e9d4188b1dc1: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` LuminanceNoiseReductionAmountRange The :ref:`ValueRange ` of the LuminanceNoiseReductionAmount property. * Minimum: 0.0 * Maximum: 1.0 * Default: 0.0 .. index:: pair: variable; ColorNoiseReductionAmountRange .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1acd549f1f4d1974f4bd7a6d49f8723e13: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` ColorNoiseReductionAmountRange The :ref:`ValueRange ` of the ColorNoiseReductionAmount property. * Minimum: 0.0 * Maximum: 1.0 * Default: 0.0 .. index:: pair: variable; WhiteBalanceGainRange .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a34153447704a701b48f7024e5cecb5df: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` WhiteBalanceGainRange The :ref:`ValueRange ` of the RGB channels of the White Balance Gain property. * Minimum: 0 * Maximum: 10.0 * Default: 0.0, meaning to use the metadata embedded into the IIQ file. .. index:: pair: variable; SharpeningGain .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1ad3ed3e462ea7317e84bb786ff36f8a79: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` SharpeningGain The :ref:`ValueRange ` of the sharpening amount. * Minimum: 0 * Maximum: 10.0 * Default: 0.0, meaning no sharpening applied .. index:: pair: variable; SharpeningRadius .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a288cb29c7beb8f6e8aa2517843d26e15: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` SharpeningRadius The :ref:`ValueRange ` of the sharpening radius. * Minimum: 0 * Maximum: 3.0 * Default: 1.0 .. index:: pair: variable; SharpeningThreshold .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a7a131347182c3c7a97dfbb7e134728a0: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` SharpeningThreshold The :ref:`ValueRange ` of the sharpening threshold used to reduce noise. * Minimum: 0 * Maximum: 10.0 * Default: 1.0 .. index:: pair: variable; SharpeningHaloSuppression .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1ae7cbfdbd2437b862a40b94aadd36eff9: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` SharpeningHaloSuppression The :ref:`ValueRange ` for suppressing halo caused by sharpening. * Minimum: 0 * Maximum: 1.0 * Default: 0.0 .. index:: pair: variable; GeometricCorrectionFocalLengthRange .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a7f000f20a10d342a45e9b65d6a0bb0cb: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` GeometricCorrectionFocalLengthRange The :ref:`ValueRange ` of the focalLength field of the :ref:`GeometricCorrection ` value. * Minimum: 23.0 * Maximum: 1000.0 .. index:: pair: variable; GeometricCorrectionPixelPitchRange .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1aaa99c8270bd07fceffb99fc0fb0821af: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` GeometricCorrectionPixelPitchRange The :ref:`ValueRange ` of the pixelSize field of the :ref:`GeometricCorrection ` value. * Minimum: 0.001 * Maximum: 0.05317 * Default: -1.0, indicating that the :ref:`GeometricCorrection ` is unset, and is not to be used. .. index:: pair: variable; GeometricCorrectionShiftRange .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a2f294fd8d34aa3b11ce30f2b6fa0bd20: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` GeometricCorrectionShiftRange The :ref:`ValueRange ` of the xP and yP fields of the :ref:`GeometricCorrection ` value. It is measured in mm. * Minimum: -30.0 * Maximum: 30.0 * Default: 0.0 .. index:: pair: variable; GeometricCorrectionPolinomRange .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a28723167907a5d919069a65f2695b4df: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` GeometricCorrectionPolinomRange The :ref:`ValueRange ` of the k1, k2, k3, p1, p2 fields of the :ref:`GeometricCorrection ` value. * Minimum: -1.0e-4 * Maximum: 1.0e-4 * Default: 0.0 .. index:: pair: variable; GeometricCorrectionAffinityRange .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1af7dce7de7d0c475ca4e23395eb7f0526: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const :ref:`ValueRange` GeometricCorrectionAffinityRange The :ref:`ValueRange ` of the b1, b2 fields of the :ref:`GeometricCorrection ` value. * Minimum: -1.0 * Maximum: 1.0 * Default: 0.0 Methods ------- .. index:: pair: function; GetCanvasClip .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a244adc46be7ca778d647f3c15d3dcb85: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`CanvasClip` GetCanvasClip() const Returns the current CanvasClip setting. .. index:: pair: function; SetCanvasClip .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a3bd77bd7dd2a8366e73ef47bc82e9a79: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetCanvasClip(:ref:`CanvasClip` canvasClip) Configure the output image canvas edge handling. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - canvasClip - The new CanvasClip setting. .. rubric:: Returns: This object itself (this), to allow chaining .. index:: pair: function; GetCrop .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a2a4159ad22d455f3b689f2eadbe0a88d: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`Rect` GetCrop() const Get any configured crop. .. index:: pair: function; GetOutputScale .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1afb5d96797c7e76c36587cafe87570b3e: .. ref-code-block:: cpp :class: doxyrest-title-code-block double GetOutputScale() const Get any configured scaling factor, or a negative number, if none if set. .. index:: pair: function; GetOutputWidth .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a63729913a212ee78a717b5f6acc7aca9: .. ref-code-block:: cpp :class: doxyrest-title-code-block int32_t GetOutputWidth() const Get any configured scaling by fixed output width, or a negative number, if none if set. .. index:: pair: function; GetOutputHeight .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1abddc7b21263cfde856da05850a938b5f: .. ref-code-block:: cpp :class: doxyrest-title-code-block int32_t GetOutputHeight() const Get any configured scaling by fixed output height, or a negative number, if none if set. .. index:: pair: function; GetOutputFormat .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a7f95858ed602ad6e889f233fb9c470b9: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`BitmapFormat` GetOutputFormat() const The data format of the pixels. .. index:: pair: function; GetOutputColorSpace .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a26122e14b933b3b6af608e23a5a2d239: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`ColorSpace` GetOutputColorSpace() const The color space of the output image. .. index:: pair: function; GetOrientation .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a496d6cc1560f0e2cd8af02e9a13b607a: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`OrientationMode` GetOrientation() const The orientation mode of the convert. .. index:: pair: function; SetCrop .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a5f969867c757d9e041e416771f58815e: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetCrop(int32_t x, int32_t y, int32_t width, int32_t height) Crop image to a given rectangle, in coordinates of the input image. .. index:: pair: function; SetCrop .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a3dd92a05cfe8af91b4c70523898a3cfc: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetCrop(const :ref:`Rect`& cropRect) Crop image to a given rectangle, in coordinates of the input image. .. index:: pair: function; ResetCrop .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a551d29234c284a88c0aebc942d06be7d: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig ResetCrop() Reset crop. .. index:: pair: function; SetOrientation .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a6727cdb60ea0fb136f171252f7610a7a: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetOrientation(const :ref:`OrientationMode` orientation) Set orientation mode of the convert. .. index:: pair: function; SetOutputScale .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1ae176e374597e52f3edc7fbe8f47498bd: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetOutputScale(double scaleFactor) Scale image relative to the full image size, with aspect ratio enforced. .. index:: pair: function; SetOutputWidth .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a7d74266a244ea63b62338af475361e7d: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetOutputWidth(int32_t destinationWidth) Set the scaling to match a given destination width, aspect ratio is still enforced. .. index:: pair: function; SetOutputHeight .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a8bb00945d545c837ecbc39b18fc5fc93: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetOutputHeight(int32_t destinationHeight) Set the scaling to match a given destination height, aspect ratio is still enforced. .. index:: pair: function; SetOutputFormat .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a348d3a0776ebdd959f7b5f4e58542720: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetOutputFormat(:ref:`BitmapFormat` format) Set the pixel data format of the output image. .. index:: pair: function; SetOutputColorSpace .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a53fa5a5e458aba4f40708047a3d41ccb: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetOutputColorSpace(:ref:`ColorSpace` colorSpace) Set the color space of the output image. .. index:: pair: function; SetDualExposureOutput .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1abd83b2b01569f57fe0ceaa97f9ba56b3: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetDualExposureOutput(:ref:`DualExposureOutput` mode) Specify how dual exposures are processed. .. index:: pair: function; GetContrast .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a953584f2698f381ada9b4643c98ef08e: .. ref-code-block:: cpp :class: doxyrest-title-code-block float GetContrast() const Get the value of the contrast setting in the convert config. See also SetContrast function. .. index:: pair: function; SetContrast .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a2311dc6a2f3cbd1a04b94e0930f1c6fd: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetContrast(const float contrast) Adjust the contrast of the image. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - contrast - is a value between -1.0 and 1.0. Default is 0.0 .. index:: pair: function; GetBrightness .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a2fdcd3bc4029329fcb6c71cbc5d22c9c: .. ref-code-block:: cpp :class: doxyrest-title-code-block float GetBrightness() const Get the value of the brightness setting in the convert config. See also SetBrightness function. .. index:: pair: function; SetBrightness .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1abd81410034f58dcabb16808f620637b8: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetBrightness(const float brightness) Adjust the brightness of the image. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - brightness - is a value between -1.0 and 1.0. Default is 0.0 .. index:: pair: function; SetPolynomialTransformation .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a5f6d3170e42953c51df5e06aa3b2cc76: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetPolynomialTransformation( const float ax, const float bx, const float cx, const float ay, const float by, const float cy ) \*\* Set polynomial gain on either bayer or RGB \* / \*\* Get polynomial gain (either bayer or RGB) \* / Set gain the bayer image polynomially: I = Y \* (ax \* x \* x + bx \* x + cx) \* (ay \* y \* y + by \* y + cy) .. index:: pair: function; SetPolynomialTransformationNormalized .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a77f25e7201c8145a9e8f734bd0307646: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetPolynomialTransformationNormalized( const float ax, const float bx, const float cx, const float ay, const float by, const float cy ) Set gain the bayer image polynomially: I = Y \* (ax \* x \* x + bx \* x + cx) \* (ay \* y \* y + by \* y + cy), where x and y have range of [0, 1]. .. index:: pair: function; GetPolynomialTransformation .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1afb962c0710d4a54adb659f634d30063c: .. ref-code-block:: cpp :class: doxyrest-title-code-block std::vector GetPolynomialTransformation() Get gain the bayer image polynomially: I = Y \* (ax \* x \* x + bx \* x + cx) \* (ay \* y \* y + by \* y + cy) .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - Return - {ax, bx, cx, ay, by, cy} .. index:: pair: function; GetSaturation .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a5a5a8b6f786dd68caf3769c8b3a3eb0f: .. ref-code-block:: cpp :class: doxyrest-title-code-block float GetSaturation() const Get the value of the saturation setting in the convert config. See also SetSaturation function. .. index:: pair: function; SetSaturation .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a54203020273de46982139bec7152f21d: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetSaturation(const float saturation) Adjust the saturation of the image. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - saturation - is a value between -1.0 and 1.0. Default is 0.0 .. index:: pair: function; GetExposure .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a9e7e57cc938614a3133d3fcac4e114b1: .. ref-code-block:: cpp :class: doxyrest-title-code-block float GetExposure() const Get the value of the exposure setting in the convert config. See also SetExposure function. .. index:: pair: function; SetExposure .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1aff0865b0bdf0a0f49132284aed4cf7a4: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetExposure(const float exposure) Adjust the exposure of the image. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - exposure - is a value between -4.0 and 4.0. Default is 0.0 .. index:: pair: function; GetGain .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1ad9afdfe3f510ece989ea0ef4aba6db79: .. ref-code-block:: cpp :class: doxyrest-title-code-block float GetGain() const Get the value of the gain setting in the convert config. See also SetGain function. .. index:: pair: function; SetGain .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a4499478e30c8d6d3c304250c00aadb82: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetGain(const float gain) Adjust the gain of the image - this is a variant of the exposure setting. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - gain - is a floating point value. Default is 1.0 .. index:: pair: function; GetBlackLevel .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a675228afd60933de608e8ba3c30cfc08: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`Color` GetBlackLevel() const Get the black level setting in the convert config. See also SetBlackLevel functions. .. index:: pair: function; SetBlackLevel .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a6d69d546ad7a529669f9ce91153e3b68: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetBlackLevel(float r, float g, float b) Set the black level. This is a color that is regarded as black .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - r - * - g - * - b - are values between 0.0 and 1.0. Default is 0.0 .. index:: pair: function; SetBlackLevel .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1abb3d796c0a1b63ec1e831fda24a05fc8: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetBlackLevel(:ref:`Color` color) Set the black level. This is a color that is regarded as black. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - color - where the r,g,b color is set as a struct. .. index:: pair: function; GetMidtoneLevel .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1adf9497ca0c25c2002f0c59453a932ab5: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`Color` GetMidtoneLevel() const Get the midtone level setting in the convert config. See also SetMidtoneLevel functions. .. index:: pair: function; SetMidtoneLevel .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a118c6aadd9d6a63869c2cb201d62bbb3: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetMidtoneLevel(float r, float g, float b) Set the midtone level. This is a color that is used as 50% level of the color values. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - r - * - g - * - b - are values between -1.0 and 1.0. Default is 0.0 .. index:: pair: function; SetMidtoneLevel .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a1034c9339f4c6be5ccc6344dd9957616: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetMidtoneLevel(:ref:`Color` color) Set the midtone level. This is a color that is used as 50% level of the color values. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - color - where the r,g,b color is set as a struct. .. index:: pair: function; GetWhiteLevel .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a9c82e2d3f805f71e6bc58574202be633: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`Color` GetWhiteLevel() const Get the white level setting in the convert config. See also SetWhiteLevel functions. .. index:: pair: function; SetWhiteLevel .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a811d4cff85e126415e78976d6e62f911: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetWhiteLevel(float r, float g, float b) Set the white level. This is a color that is regarded as white. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - r - * - g - * - b - are values between 0.0 and 1.0. Default is 1.0 .. index:: pair: function; SetWhiteLevel .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1aada6b30895d7d9babf23ab4ba6a2123c: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetWhiteLevel(:ref:`Color` color) Set the white level. This is a color that is regarded as white. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - color - where the r,g,b color is set as a struct. .. index:: pair: function; GetBlackLevelTarget .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a38af8fc5c5dc15a05f7e9606be243990: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`Color` GetBlackLevelTarget() Get the level target used for black. This is a color that black color is mapped into (as in a level tool) .. index:: pair: function; SetBlackLevelTarget .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1ab295beca2ca4266f65b550a1b229b654: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetBlackLevelTarget(float r, float g, float b) Set the level used for black. This is a color that black color is mapped into (as in a level tool) .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - r - * - g - * - b - are values between 0.0 and 1.0. Default is 0.0 .. index:: pair: function; SetBlackLevelTarget .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a28b6bf550172717e1ec7087f95fb7bf8: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetBlackLevelTarget(:ref:`Color` c) Set the level used for black. This is a color that black color is mapped into (as in a level tool) .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - c - are (red, green, blue) values between 0.0 and 1.0. Default is 0.0 .. index:: pair: function; GetWhiteLevelTarget .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1abebe9efb898d253ce351f4f590275afc: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`Color` GetWhiteLevelTarget() Get the level target used for white. This is a color that white color is mapped into (as in a level tool) .. index:: pair: function; SetWhiteLevelTarget .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1aa87eeeda1a18589bed101c9fe876be5a: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetWhiteLevelTarget(float r, float g, float b) Set the level used for white. This is a color that white color is mapped into (as in a level tool) .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - r - * - g - * - b - are values between 0.0 and 1.0. Default is 1.0 .. index:: pair: function; SetWhiteLevelTarget .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a505877c2e376652bf85f40c843e4852d: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetWhiteLevelTarget(:ref:`Color` c) Set the level used for white. This is a color that white color is mapped into (as in a level tool) .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - c - is (red, green, blue) values between 0.0 and 1.0. Default is 1.0 .. index:: pair: function; GetSharpeningAmount .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1acb8e6ee0ddda217d04390b689117ca9a: .. ref-code-block:: cpp :class: doxyrest-title-code-block float GetSharpeningAmount() const See SetSharpening function. .. index:: pair: function; GetSharpeningRadius .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a590291018c6930c003c37d4ae79d4b87: .. ref-code-block:: cpp :class: doxyrest-title-code-block float GetSharpeningRadius() const See SetSharpening function. .. index:: pair: function; GetSharpeningThreshold .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a47d687a8affcfcc04c863b4a3b9a1cb4: .. ref-code-block:: cpp :class: doxyrest-title-code-block float GetSharpeningThreshold() const See SetSharpening function. .. index:: pair: function; GetHaloSuppressionAmount .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a189826e5ffe546e4528ff63973b87bcf: .. ref-code-block:: cpp :class: doxyrest-title-code-block float GetHaloSuppressionAmount() See SetSharpening function. .. index:: pair: function; SetSharpening .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a7429c96f345cd228c4d21682aaf065be: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetSharpening( float amount, float radius, float threshold, float haloSuppressionAmount ) Adjust the amount of sharpening of the image. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - sharpeningAmount - is a value between 0.0 and 10.0. Default is 0.0 * - amount - is the strength of sharpening, value between 0 and 10. Default is 0.0 * - radius - is patch size for detecting detail, value between 0 and 3. Default is 1.0 * - threshold - defines noise level or weak detail, which will be ignored. Value between 0 and 10. Default is 1.0 * - haloSuppressionAmount - is amount of halo suppression, value between 0 and 1. Default is 0.0 .. index:: pair: function; GetLuminanceNoiseReductionAmount .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1ad8eda86cbf65e51df788c174283d9af5: .. ref-code-block:: cpp :class: doxyrest-title-code-block float GetLuminanceNoiseReductionAmount() const Gets the current the strength the Luminance Noise Reduction algorithm is applied. .. index:: pair: function; SetLuminanceNoiseReductionAmount .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1aa3b29894cfbd32b4ac70f6a8c85da921: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetLuminanceNoiseReductionAmount(const float luminanceNoiseReductionAmount) Sets the strength the Luminance Noise Reduction algorithm is applied. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - luminanceNoiseReductionAmount - is a value between 0.0 and 1.0. Default is 0. .. index:: pair: function; GetNoiseReductionSinglePixelEnabled .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a592a5e60111f003ca6561b714203111d: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool GetNoiseReductionSinglePixelEnabled() const Returns if hot pixel removal (useful for high ISO images) is enabled. .. index:: pair: function; SetNoiseReductionSinglePixelEnabled .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1ae55bcde31cf8abfe34ec05ea0cc0e8fa: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetNoiseReductionSinglePixelEnabled(const bool noiseReductionSinglePixelEnabled) Enables hot pixel removal (useful for high ISO images) .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - noiseReductionSinglePixelEnabled - toggles this operation .. index:: pair: function; GetColorNoiseReductionAmount .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1ac587c267a19bc405cb1576132220336e: .. ref-code-block:: cpp :class: doxyrest-title-code-block float GetColorNoiseReductionAmount() const Sets the current the strength the :ref:`Color ` Noise Reduction algorithm is applied. .. index:: pair: function; SetColorNoiseReductionAmount .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1af10cc6aa03284b4a0918de2fad56f692: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetColorNoiseReductionAmount(const float colorNoiseReductionAmount) Sets the strength the :ref:`Color ` Noise Reduction algorithm is applied. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - colorNoiseReductionAmount - is a value between 0.0 and 1.0. Default is 0. .. index:: pair: function; GetClarity .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1af2c448d59ec3408098f398c6b6c76383: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`Clarity` GetClarity() const Get the setup of the clarity tool. See also SetClarity function for further explanation. .. index:: pair: function; SetClarity .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1ab74b9ef6a9d993f29cab15f47f1d2ace: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetClarity(int clarityMethod, float clarityFactor) Setup the clarity tool. Its used as a tool to help control the local contrast in the image. A negative value will decrease local contrast and and positive increase it. Its a combination of selecting a method and a factor (amount) .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - clarityMethod - is the method used for clarity tool. It can be set to: clarityMethodNeutral = 0, clarityMethodPunch=1, clarityMethodNatural=2. Default is clarityMethodNeutral=0 * - clarityFactor - is the value defining the factor used for the clarity tool. It is a value between -1.0 and 1.0. Default is 0.0 for disabled .. index:: pair: function; SetClarity .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a7f490c6404bf6e7984cc6393333efc5f: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetClarity(:ref:`Clarity` clarity) Setup the clarity tool. It's used as a tool to help control the local contrast in the image. A negative value will decrease local contrast and and positive increase it. Its a combination of selecting a method and a factor (amount) .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - clarity - is a struct with two members: the method and the factor. See :ref:`SetClarity(int clarityMethod, float clarityFactor) ` .. index:: pair: function; GetShadowRecovery .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1afc2d9f65a9d5c3acaa023d01d7f8ef57: .. ref-code-block:: cpp :class: doxyrest-title-code-block float GetShadowRecovery() const Get the value of the shadow recovery setting in the convert config. See also SetShadowRecovery function. .. index:: pair: function; SetShadowRecovery .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a6ac21c7ed2f88c23bcb0262ca7982065: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetShadowRecovery(const float shadowRecovery) Set shadow recovery. Used to extract details only in the shadows of the image by making them brighter. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - shadowRecovery - is a value to control how much effect is wanted. The value can be between 0.0 and 1.0. Default is 0.0 (=disabled) .. index:: pair: function; GetHighlightRecovery .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a2915fc1bfd4f8a21098e0adcfd0e3074: .. ref-code-block:: cpp :class: doxyrest-title-code-block float GetHighlightRecovery() const Get the value of the highight recovery setting in the convert config. See also SetHighlightRecovery function. .. index:: pair: function; SetHighlightRecovery .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a9fdfde92ae62ad048585a0759987cd4b: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetHighlightRecovery(const float highlightRecovery) Set highlight recovery. Used to extract details only in the highlights of the image by reducing the brightness of highlight pixels. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - shadowRecovery - is a value to control how much effect is wanted. The value can be between 0.0 and 1.0. Default is 0.0 (=disabled) .. index:: pair: function; GetRedCurve .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a15937f611c3a9c7d1854f9172b740f6f: .. ref-code-block:: cpp :class: doxyrest-title-code-block const std::vector<:ref:`Point2D`> GetRedCurve() const Get a vector of discreete coordinate pairs (x,y) describing the red curve used. See also SetRedCurve. .. index:: pair: function; GetDiscretizedRedCurve .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1abc5166b8d9c4426d93fc0600a6e7ed04: .. ref-code-block:: cpp :class: doxyrest-title-code-block const :ref:`Curve` GetDiscretizedRedCurve( int numDiscretizedPoint, bool* success = nullptr ) Get real curve used inside ImageSDK. .. index:: pair: function; SetRedCurve .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a18755e09386ef458324bfbbc60d4fdab: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetRedCurve(const std::vector<:ref:`Point2D`>& points) Set the curve for red values as known from the curves tool in most image editors. The curve is defined as a vector of discreete coordinate pairs (x,y) that is interpolated. Default is a linear mapping: (0.0,0.0)-(1.0,1.0). .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - points - is a vector of discreete coordinate pairs (x,y) in the range (0.0,0.0)-(1.0,1.0). .. index:: pair: function; GetGreenCurve .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a9157432aef651b199923ad1b8fc2d909: .. ref-code-block:: cpp :class: doxyrest-title-code-block const std::vector<:ref:`Point2D`> GetGreenCurve() const Get a vector of discreete coordinate pairs (x,y) describing the green curve used. See also SetGreenCurve. .. index:: pair: function; SetGreenCurve .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a3bc0b00df7cfb23cf21d01fbfe1c11ba: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetGreenCurve(const std::vector<:ref:`Point2D`>& points) Set the curve for green values as known from the curves tool in most image editors. The curve is defined as a vector of discreete coordinate pairs (x,y) that is interpolated. Default is a linear mapping: (0.0,0.0)-(1.0,1.0). It is similar to the curves tool known from most image editors. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - points - is a vector of discreete coordinate pairs (x,y) in the range (0.0,0.0)-(1.0,1.0). .. index:: pair: function; GetDiscretizedGreenCurve .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1ad5318fd92f50c361cecafd2ad5e58d08: .. ref-code-block:: cpp :class: doxyrest-title-code-block const :ref:`Curve` GetDiscretizedGreenCurve( int numDiscretizedPoint, bool* success = nullptr ) Get real curve used inside ImageSDK. .. index:: pair: function; GetBlueCurve .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a41f3c07dda7bab3d0d1dfcb7e2d72704: .. ref-code-block:: cpp :class: doxyrest-title-code-block const std::vector<:ref:`Point2D`> GetBlueCurve() const Get a vector of discreete coordinate pairs (x,y) describing the blue curve used. See also SetBlueCurve. .. index:: pair: function; SetBlueCurve .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a37758766609c78ac376d432f2c9c333e: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetBlueCurve(const std::vector<:ref:`Point2D`>& points) Set the curve for blue values as known from the curves tool in most image editors. The curve is defined as a vector of discreete coordinate pairs (x,y) that is interpolated. Default is a linear mapping: (0.0,0.0)-(1.0,1.0). It is similar to the curves tool known from most image editors. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - points - is a vector of discreete coordinate pairs (x,y) in the range (0.0,0.0)-(1.0,1.0). .. index:: pair: function; GetDiscretizedBlueCurve .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1af46b505fd0435cdeafe1450597eaf0bb: .. ref-code-block:: cpp :class: doxyrest-title-code-block const :ref:`Curve` GetDiscretizedBlueCurve( int numDiscretizedPoint, bool* success = nullptr ) Get real curve used inside ImageSDK. .. index:: pair: function; GetLumaCurve .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a61d64f0c4373081547d7dcd576ae394f: .. ref-code-block:: cpp :class: doxyrest-title-code-block const std::vector<:ref:`Point2D`> GetLumaCurve() const Get a vector of discreete coordinate pairs (x,y) describing the luma curve used. See also SetLumaCurve. .. index:: pair: function; SetLumaCurve .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a18220c1f0d30b1578b0ce5cc442a0330: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetLumaCurve(const std::vector<:ref:`Point2D`>& points) Set the curve for luma values as known from the curves tool in most image editors. The curve is defined as a vector of discreete coordinate pairs (x,y) that is interpolated. Default is a linear mapping: (0.0,0.0)-(1.0,1.0). It is similar to the curves tool known from most image editors. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - points - is a vector of discreete coordinate pairs (x,y) in the range (0.0,0.0)-(1.0,1.0). .. index:: pair: function; GetDiscretizedLumaCurve .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1ab51f11cf2f4da947d28332b37244f499: .. ref-code-block:: cpp :class: doxyrest-title-code-block const :ref:`Curve` GetDiscretizedLumaCurve( int numDiscretizedPoint, bool* success = nullptr ) Get real curve used inside ImageSDK. .. index:: pair: function; GetRgbCurve .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1afd6849d5ff92a7b05b9af3e5ada43d21: .. ref-code-block:: cpp :class: doxyrest-title-code-block const std::vector<:ref:`Point2D`> GetRgbCurve() const Get a vector of discreete coordinate pairs (x,y) describing the rgb curve used. See also SetLumaCurve. .. index:: pair: function; SetRgbCurve .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a874d52e089297808e34042357868b322: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetRgbCurve(const std::vector<:ref:`Point2D`>& points) Set the curve for rgb values as known from the curves tool in most image editors. The curve is defined as a vector of discreete coordinate pairs (x,y) that is interpolated. Default is a linear mapping: (0.0,0.0)-(1.0,1.0). It is similar to the curves tool known from most image editors. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - points - is a vector of discreete coordinate pairs (x,y) in the range (0.0,0.0)-(1.0,1.0). .. index:: pair: function; GetDiscretizedRgbCurve .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a1d44bac73580cc0f5fbb070965387ddb: .. ref-code-block:: cpp :class: doxyrest-title-code-block const :ref:`Curve` GetDiscretizedRgbCurve( int numDiscretizedPoint, bool* success = nullptr ) Get real curve used inside ImageSDK. .. index:: pair: function; GetWhiteBalanceGain .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1ab1e4cb56675342ea518e957a816dc99f: .. ref-code-block:: cpp :class: doxyrest-title-code-block const :ref:`Color` GetWhiteBalanceGain() const Returns the White Balance as gain for each channels (RGB) .. index:: pair: function; SetWhiteBalanceGain .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a8cf48084e52091be32b169aebc5464b4: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetWhiteBalanceGain(const :ref:`Color` whiteBalanceGain) Sets the White Balance as gain for each channels (RGB) .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - whiteBalanceGain - is a :ref:`Color ` with each field between 0.0f and 10.0f. .. index:: pair: function; GetWhiteBalanceMode .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a49491da03de17c937b4d23c0bd758469: .. ref-code-block:: cpp :class: doxyrest-title-code-block const :ref:`WhiteBalanceMode` GetWhiteBalanceMode() const Returns the White Balance mode. .. index:: pair: function; SetWhiteBalanceMode .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a0dce1b3502ea2a10ebdff1ad07cd308e: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetWhiteBalanceMode(const :ref:`WhiteBalanceMode` mode) Sets the White Balance mode. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - see - WhiteBalanceMode for available modes. .. index:: pair: function; GetGeometricCorrectionEnabled .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a78fb78db547c866a08d116d7552c1ae6: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool GetGeometricCorrectionEnabled() const Returns a Boolean value indicating if the conversion will include Geometric Aberration correction. .. index:: pair: function; SetGeometricCorrectionEnabled .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1aacfc720d0a33aa455f7f3ab1e99e2344: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetGeometricCorrectionEnabled(const bool enable) Sets the Enabled state of the Geometric Aberration correction. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - enable - true will enable Geometric Aberration correction, false will disable it. .. index:: pair: function; GetGeometricCorrection .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a3bea5bf867fb2e17aa36f13476eff770: .. ref-code-block:: cpp :class: doxyrest-title-code-block const :ref:`GeometricCorrection` GetGeometricCorrection() const Custom Geometric Aberration correction parameters. .. index:: pair: function; SetGeometricCorrection .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a99ac15ccb33d8653f74f4a487aa5a763: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetGeometricCorrection(const :ref:`GeometricCorrection` geometricCorrection) Sets Geometric Aberration correction parameters to be applied. If geometricCorrection is set to an invalid value, the the conversion will try to load the geometric correction data embedded in the source IIQ file .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - geometricCorrection - the geometric correction to be used for the algorithm. .. index:: pair: function; GetLightFalloffCorrectionEnabled .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1ad7d7489a6cde1783ddcac248898a1dea: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool GetLightFalloffCorrectionEnabled() const Returns a Boolean value indicating if the conversion will include Lens Light falloff correction for recognized lenses. .. index:: pair: function; SetLightFalloffCorrectionEnabled .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a13dd650bad720dd5bbf847d7f27ba263: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetLightFalloffCorrectionEnabled(const bool enable) Sets the Enabled state of the Lens Light falloff correction. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - enable - true will enable Lens Light falloff correction, false will disable it. .. index:: pair: function; GetChromaticAberrationCorrectionEnabled .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a431217649e66f7b810d9622c723db475: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool GetChromaticAberrationCorrectionEnabled() const Returns a Boolean value indicating if the conversion will include Chromatic Aberration (CA) correction. .. index:: pair: function; SetChromaticAberrationCorrectionEnabled .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1ad0c9ebed28292025455922e5721331de: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetChromaticAberrationCorrectionEnabled(const bool enable) Sets the Enabled state of the Chromatic Aberration correction. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - enable - true will enable Chromatic Aberration correction, false will disable it. .. index:: pair: function; GetExposureWarningMaskEnabled .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1ab1d718c2b051e9feedb5a7c70a68c5ea: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool GetExposureWarningMaskEnabled() const Threshold for under and over exposure mask. .. index:: pair: function; SetExposureWarningMaskEnabled .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a9028822ed944a65c42954df1ce212934: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetExposureWarningMaskEnabled(const bool enable) Control generation of exposure mask in the mask image. True means enable. Default is disabled. When doing the actual convertion of an image - a mask buffer must be provided. If enabled the underexposed threshold and overexposed threshold should also be set (See SetExposureMaskThreadhold function) .. index:: pair: function; GetMaskThresholdOverExposure .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1aa23e43fb616dcbe6a6a3dd152aab611d: .. ref-code-block:: cpp :class: doxyrest-title-code-block float GetMaskThresholdOverExposure() const Get the value of the overexposed setting used when exposure mask generation is enabled. .. index:: pair: function; GetMaskThresholdUnderExposure .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a1a32a2a675232128a5d810b219ba9321: .. ref-code-block:: cpp :class: doxyrest-title-code-block float GetMaskThresholdUnderExposure() const Get the value of the underexposed setting used when exposure mask generation is enabled. .. index:: pair: function; SetExposureMaskThreadhold .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a00a378b4e2f64e81905e27d8da1ef833: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetExposureMaskThreadhold( float underExposeThreshold, float overExposeThreadhold ) Set the value of the overexposed and underexposed settings used when exposure mask generation is enabled. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - underExposeThreshold - is a value between 0.0 and 1.0. Default is 0.0. * - overExposeThreshold - is a value between 0.0 and 1.0. Default is 1.0. .. index:: pair: function; GetClipWarningMaskEnabled .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a80dc121aa794a4ac6cb389099af3fba9: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool GetClipWarningMaskEnabled() const Get the setting for clip warning mask enabled. See also SetClipWarningMaskEnabled and SetMaskThresholdClipWarningCount functions. .. index:: pair: function; SetClipWarningMaskEnabled .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a9e1a4b7c810a1373a20d4076288c8d54: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetClipWarningMaskEnabled(bool enable) enable the clip warning mask. For this setting to be used the mask image must be enabled and provided when processing the image .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - enable. - can be true of false. false is the default value .. index:: pair: function; GetMaskThresholdClipWarningCount .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a5d0e8510f5edb3d0dcf71e9d2e39b8a1: .. ref-code-block:: cpp :class: doxyrest-title-code-block int GetMaskThresholdClipWarningCount() const Get the count of neighbour pixels that must be outside the threshold limits to be set in the clip warning mask. .. index:: pair: function; SetMaskThresholdClipWarningCount .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a74bad099fce1518f6c426c0e030127e5: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetMaskThresholdClipWarningCount(int thresholdCount) Set the minimum required count of neighbour pixels that must be outside the threshold limits to be set in the clip warning mask. For this to take effect the mask image must be enabled . .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - thresholdCount - is a value between 1 and 8. .. index:: pair: function; GetEnableLinearPath .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1ae1bfa4c30b82b8dcf25d28ff62c86d6f: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool GetEnableLinearPath() const Get EnableLinearPath setting. See also description of SetEnableLinearPath. .. index:: pair: function; SetEnableLinearPath .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a711a35a1ee66ee8013e0a0ebe38a6534: .. ref-code-block:: cpp :class: doxyrest-title-code-block ConvertConfig SetEnableLinearPath(const bool enable) Set EnableLinearPath setting. This setting is used to disable most of the processing steps to make sure that the debayering of the image into rgb domain is done only using a simple linear mapping enabling only the minimum needed processing. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - enable. - it can be set to true or false. False is the default value. .. index:: pair: function; ApplyTo .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1ace0906084e9e719c495c7845c17022c0: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`BitmapImage` ApplyTo( const :ref:`RawImage`& image, :ref:`BitmapImage`* mask = nullptr, bool waitForBusySDK = false ) Apply your current configuration to a :ref:`RawImage `. .. index:: pair: function; SaveToFile .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1aa59eeede09e63c05694bf5edabc6ddd8: .. ref-code-block:: cpp :class: doxyrest-title-code-block void SaveToFile(const char* filename) const Store the configuration into a formatted file. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - filename - the full path of the output * - Throws - an SDKException in case of failure (eg. failed to write to file) .. index:: pair: function; Serialize .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a67784488e87a31e8b8993b5fae13166e: .. ref-code-block:: cpp :class: doxyrest-title-code-block std::string Serialize() const Converts the object into a JSON formatted string. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - Throws - an SDKException in case of failure (eg. failed to write to file) .. rubric:: Returns: A string which contains the JSON representation of the object .. index:: pair: function; LoadFromFile .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a1298957c0219cee9859a3b05f6688c1e: .. ref-code-block:: cpp :class: doxyrest-title-code-block static ConvertConfig LoadFromFile(const char* filename) Creates a configuration from a formatted file. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - filename - the full path of the input * - Throws - an SDKException in case of failure (eg. failed to read from file, the file was malformed) .. rubric:: Returns: A smart pointer to a newly created :ref:`ConvertConfig ` object .. index:: pair: function; Deserialize .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1adc2b13765dd0403d4781fab6a5dfa015: .. ref-code-block:: cpp :class: doxyrest-title-code-block static ConvertConfig Deserialize(const std::string serializedData) Creates a configuration from a formatted JSON string. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - serializedData - a formatted JSON string * - Throws - an SDKException in case of failure (eg. the JSON string was malformed) .. rubric:: Returns: A smart pointer to a newly created :ref:`ConvertConfig ` object .. index:: pair: function; DiscretizeCurve .. _doxid-class_p1_1_1_image_sdk_1_1_convert_config_1a342076beaf3592814d66e4a143e4a791: .. ref-code-block:: cpp :class: doxyrest-title-code-block static std::vector DiscretizeCurve( const std::vector<:ref:`Point2D`>& points, unsigned int bits ) Returns a list of 'Y' values of the :ref:`Curve ` defined by the input Points. This is applicable for the RGB/LumaCurve) .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - points - the list of points defining the :ref:`Curve `, X and Y value must be in between 0 and 1 * - bits - The resolution of the return value. Valid range: [0,12] * - Throws - an SDKException in case of failure (eg. input point list has less than two points) .. rubric:: Returns: A vector of the Y values of the evenly distributed between the two end points of the range [0, 1)