.. index:: pair: class; P1::ImageSdk::RawImage .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image: class P1::ImageSdk::RawImage ============================ .. toctree:: :hidden: Overview ~~~~~~~~ A handle to a Phase One IIQ image file, either on the file system or in a memory buffer :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include class RawImage { public: // construction :ref:`RawImage`(); :ref:`RawImage`(std::string iiqPath); :ref:`RawImage`(std::shared_ptr buffer, uint32_t bufferByteSize); :target:`RawImage`(const RawImage& other); // methods RawImage& :target:`operator =` (const RawImage& other); uint32_t :ref:`Width`() const; uint32_t :ref:`Height`() const; uint32_t :ref:`RawSensorWidth`() const; uint32_t :ref:`RawSensorHeight`() const; :ref:`Size` :ref:`GetDimensions`() const; :ref:`ImageTag` :ref:`GetTag`(:ref:`TagId` id) const; bool :ref:`TagExists`(:ref:`TagId` id) const; :ref:`BitmapImage` :ref:`GetPreview`(std::allocator alloc = std::allocator()); :ref:`SensorBayerOutput` :ref:`Decode`( const :ref:`DecodeConfig`& config, std::allocator alloc = std::allocator(), bool waitWhenBusy = false ) const; :ref:`BitmapImage` :ref:`ProcessFromBuffer`( const :ref:`ConvertConfig`& config, :ref:`SensorBayerOutput`* bayerBmp, std::allocator alloc = std::allocator(), :ref:`BitmapImage`* maskImage = nullptr, bool waitWhenBusy = false ) const; :ref:`BitmapImage` :ref:`Convert`( const :ref:`ConvertConfig`& config, std::allocator alloc = std::allocator(), :ref:`BitmapImage`* maskImage = nullptr, bool waitWhenBusy = false ) const; std::string :ref:`GetXmpPacket`(std::allocator alloc = std::allocator()) const; :ref:`GpsData` :ref:`GetGpsData`() const; int32_t :ref:`GetGpsEventId`() const; :ref:`ImuData` :ref:`GetImuData`() const; :ref:`Color` :ref:`PickWhiteBalance`( const :ref:`ConvertConfig` config, const :ref:`Point2D` point, int sampleSize ) const; :ref:`Size` :target:`GetCanvasSize`(const :ref:`ConvertConfig` config) const; :ref:`GeometricCorrection` :ref:`GetGeometricAberration`() const; :ref:`GeometricCorrection` :target:`GetUserGeometricAberration`() const; double :target:`GetNominalFocalLength`() const; bool :target:`LoadUserCalibrationAndCompensationFromExternalFile`(std::string filename); bool :target:`SetUserPressure`(float pressure); void :ref:`RequestHistogram`(HistogramStage stage, int binSize = 512); void :ref:`RemoveHistogram`(HistogramStage stage); bool :ref:`GetHistogramStage`( :ref:`Histogram`* hist, HistogramStage stage, bool cummulative = false ); bool :ref:`GetRawHistogram`(:ref:`Histogram`* hist); }; .. _details-class_p1_1_1_image_sdk_1_1_raw_image: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ A handle to a Phase One IIQ image file, either on the file system or in a memory buffer Construction ------------ .. index:: pair: function; RawImage .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1a653374cfd767947d28145de3e133065e: .. ref-code-block:: cpp :class: doxyrest-title-code-block RawImage() Constructs an empty and invalid :ref:`RawImage ` object. .. index:: pair: function; RawImage .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1abf6265d4c154b6b9495700c068909580: .. ref-code-block:: cpp :class: doxyrest-title-code-block RawImage(std::string iiqPath) Construct a :ref:`RawImage ` from a file path. .. index:: pair: function; RawImage .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1ad5220f8aa3740eac4170034fff50ce52: .. ref-code-block:: cpp :class: doxyrest-title-code-block RawImage(std::shared_ptr buffer, uint32_t bufferByteSize) Construct a :ref:`RawImage ` from a memory pointer, to a complete in-memory IIQ file. Methods ------- .. index:: pair: function; Width .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1a8286f4bb84fb35fa40404b8107c300da: .. ref-code-block:: cpp :class: doxyrest-title-code-block uint32_t Width() const Get the image width, in pixels, of the exposed sensor area. .. index:: pair: function; Height .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1a70bfc727d3b59aa28f0d1432e927ced9: .. ref-code-block:: cpp :class: doxyrest-title-code-block uint32_t Height() const Get the image height, in pixels, of the exposed sensor area. .. index:: pair: function; RawSensorWidth .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1a9ac416e60acb6a675f8a4b844747ef1f: .. ref-code-block:: cpp :class: doxyrest-title-code-block uint32_t RawSensorWidth() const Get full width of the raw sensor output in pixels (including un-exposed area) .. index:: pair: function; RawSensorHeight .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1a90ccd9ba5a686cc495138e22a1c2536d: .. ref-code-block:: cpp :class: doxyrest-title-code-block uint32_t RawSensorHeight() const Get the full height of the raw sensor output in pixels (including un-exposed area) .. index:: pair: function; GetDimensions .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1a78e1102e55f5f76f4fb298711c8cff68: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`Size` GetDimensions() const Get the image dimensions, in pixels, of the exposed sensor area. .. index:: pair: function; GetTag .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1a733c16a4d436b764798c9bbb577a871c: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`ImageTag` GetTag(:ref:`TagId` id) const Extract and return meta data from the image container file (IIQ) .. index:: pair: function; TagExists .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1a8adfd2b147b728eabda998dc43e03383: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool TagExists(:ref:`TagId` id) const Check if a certain meta data tag exists in the image file. .. index:: pair: function; GetPreview .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1a5248a96d0806d29c8a9d8e96a0733ffd: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`BitmapImage` GetPreview(std::allocator alloc = std::allocator()) Extract any RGB bitmap preview / thumbnail from meta data. IIQ files might contain a preview of the full image. This method extracts that image. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - alloc - An *optional* memory allocator. Default is standard C++ ``new``. .. index:: pair: function; Decode .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1a1df2a7fa43626600041720319e83893c: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`SensorBayerOutput` Decode( const :ref:`DecodeConfig`& config, std::allocator alloc = std::allocator(), bool waitWhenBusy = false ) const Extract the Bayer (i.e RAW) data from the IIQ container file. This operation consist of a decompression stage and a calibration stage. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - config - The configuration of the static calibration options to be applied the sensor output * - alloc - An *optional* memory allocator. Default is standard C++ ``new``. * - waitWhenBusy - [Deprecated: Must always be false] If true the function call will be blocked until the SDK is idle and able to accept the task. If it is false, it will throw an SDKException if the SDK is busy .. index:: pair: function; ProcessFromBuffer .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1a662acbcc3976a961cf547fff6784b2fb: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`BitmapImage` ProcessFromBuffer( const :ref:`ConvertConfig`& config, :ref:`SensorBayerOutput`* bayerBmp, std::allocator alloc = std::allocator(), :ref:`BitmapImage`* maskImage = nullptr, bool waitWhenBusy = false ) const De-mosaic (RAW convert) the Bayer data into an RGB bitmap image. This operation consist of a decompression stage and a calibration stage. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - config - The configuration of the static calibration options to be applied the sensor output * - bayerBmp - The image data in Bayer format * - alloc - An *optional* memory allocator. Default is standard C++ ``new``. * - maskImage - Optional buffer for masking (out) * - waitWhenBusy - [Deprecated: Must always be false] If true the function call will be blocked until the SDK is idle and able to accept the task. If it is false, it will throw an SDKException if the SDK is busy .. index:: pair: function; Convert .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1a6a640a4136c0b8cd6bef6528c9c8de1d: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`BitmapImage` Convert( const :ref:`ConvertConfig`& config, std::allocator alloc = std::allocator(), :ref:`BitmapImage`* maskImage = nullptr, bool waitWhenBusy = false ) const Extract and de-mosaic (RAW convert) the Bayer data into an RGB bitmap image. Use the :ref:`ConvertConfig ` to control cropping and scaling. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - config - A configuration object specifying optional crop and scaling * - alloc - An *optional* memory allocator. Default is standard C++ ``new``. * - maskImage - Optional buffer for masking (out) * - waitWhenBusy - [Deprecated: Must always be false] If true the function call will be blocked until the SDK is idle and able to accept the task. If it is false, it will throw an SDKException if the SDK is busy .. index:: pair: function; GetXmpPacket .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1a4399d1f24cb76b895cebbdb2e992495d: .. ref-code-block:: cpp :class: doxyrest-title-code-block std::string GetXmpPacket(std::allocator alloc = std::allocator()) const Convenience method to get the XMP meta data. This method equivalent to using :ref:`GetTag() ` to get the XmpPacket tag, and trimming the output for extranous white space. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - alloc - An *optional* memory allocator. Default is standard C++ ``new``. .. index:: pair: function; GetGpsData .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1ab8de599de7753885064aee3bf3e18838: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`GpsData` GetGpsData() const Extract the GPS data embedded in the IIQ files XMP meta data section, if any. This is a convenience method. It is equal to using the GetXmpPacket method and parsing the GPS data tags. If no GPS data is embedded in the IIQ file, this method will throw! .. index:: pair: function; GetGpsEventId .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1ade03557dce1dd2304f78c64392bea05c: .. ref-code-block:: cpp :class: doxyrest-title-code-block int32_t GetGpsEventId() const Get the GPS Event identifier (ID), if it exists for the IIQ file. This is a convenience method. It is equal to using the GetXmpPacket method and parsing the GPSEventID tag. If the IIQ file does not contain a GPSEventId, this method will throw! .. index:: pair: function; GetImuData .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1addc760411264081163e1558da415cd27: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`ImuData` GetImuData() const Extract the IMU data embedded in the IIQ files XMP meta data section, if any. This is a convenience method. It is equal to using the GetXmpPacket method and parsing the IMU data tags. If no IMU data is embedded in the IIQ file, this method will throw! .. index:: pair: function; PickWhiteBalance .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1a04fa16528b277dd26dd960880c62bf1e: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`Color` PickWhiteBalance( const :ref:`ConvertConfig` config, const :ref:`Point2D` point, int sampleSize ) const Generates a white balance gain value from a :ref:`Point ` defined on the View. The recommended way to use this function is to present an Image on Screen for the user to select the :ref:`Point ` to pick the WB from. Using a pointing device the user could select the :ref:`Point ` on that Image View. The coordinate system for that :ref:`Point ` should match the Image View's coordinate system, assuming the origin is the top left corner of that image. To be able to map that :ref:`Point ` on the image data, the input :ref:`ConvertConfig ` must have the exact same geometry defined (including Crop and Scaling). You can reuse the same :ref:`ConvertConfig ` used for the Image as it is not going to be modified. Average RGB gain is calculated from the area defined by sampleSize and used to calculate a white balance. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - config - A :ref:`ConvertConfig ` object containing the Geometry transformation the view was based upon. * - point - The X,Y coordinates of the center of the sampled area based on the View Coordinate System * - sampleSize - A value between 1 and 10 that determines the size of the area to average. 1 is a single pixel area, 10 is 10x10 (100) pixels with x,y in the center .. rubric:: Returns: The white balance calculated based on the input. Note the alpha value of the :ref:`Color ` is undefined .. index:: pair: function; GetGeometricAberration .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1a1993b06bbf6ab070366fd2f686ee3525: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`GeometricCorrection` GetGeometricAberration() const Returns the geometric aberration information of the camera. .. rubric:: Returns: The Australis geometric aberration parameters embedded in the raw file .. index:: pair: function; RequestHistogram .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1a3c851ddf6e3539bf5279181c58888832: .. ref-code-block:: cpp :class: doxyrest-title-code-block void RequestHistogram(HistogramStage stage, int binSize = 512) Request ImageSDK to compute histogram at certain stage of the processing pipeline. Multiple stages can be requested. .. index:: pair: function; RemoveHistogram .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1ae41adf0a5d64a1b0e5fd73aeab35a4df: .. ref-code-block:: cpp :class: doxyrest-title-code-block void RemoveHistogram(HistogramStage stage) Remove histogram at stage of the processing pipeline. .. index:: pair: function; GetHistogramStage .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1a7a6bda9acf38dac328fac9b91764f382: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool GetHistogramStage( :ref:`Histogram`* hist, HistogramStage stage, bool cummulative = false ) Get requested histogram at certain stage (Must be requested in advanced using :ref:`RequestHistogram() `) .. rubric:: Returns: :ref:`Histogram ` at that stage. .. index:: pair: function; GetRawHistogram .. _doxid-class_p1_1_1_image_sdk_1_1_raw_image_1a54d00d420400160731329829368a56b1: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool GetRawHistogram(:ref:`Histogram`* hist) Get histogram embedded in IIQ file. .. rubric:: Returns: :ref:`Histogram ` at that stage.