.. index:: pair: class; P1::CameraSdk::IStoredImageHandle .. _doxid-class_p1_1_1_camera_sdk_1_1_i_stored_image_handle: class P1::CameraSdk::IStoredImageHandle ======================================= .. toctree:: :hidden: enum_P1_CameraSdk_IStoredImageHandle_DeviceMask.rst struct_P1_CameraSdk_IStoredImageHandle_TileRequest.rst Overview ~~~~~~~~ Lightweight representation of an image file in the camera. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include class IStoredImageHandle { public: // enums enum :ref:`DeviceMask`; // structs struct :ref:`TileRequest`; // methods virtual uint32_t :ref:`Id`() const = 0; virtual uint32_t :ref:`Date`() const = 0; virtual std::string const& :ref:`Filename`() const = 0; virtual :ref:`DeviceMask` :ref:`Device`() const = 0; virtual std::string :ref:`DeviceString`() const = 0; virtual void :ref:`RequestBasicImageInfoAsync`() const = 0; virtual std::shared_ptr<:ref:`IImageFileBasicInfo` const> :ref:`BasicImageInfo`(uint32_t const timeoutMs = 0) const = 0; virtual bool :ref:`RequestImageAsync`() const = 0; virtual void :ref:`RequestPreviewAsync`(:ref:`ImageFormat` const fileFormat = :ref:`ImageFormat::RGB24`) const = 0; virtual std::shared_ptr<:ref:`IPreview` const> :ref:`Preview`( :ref:`ImageFormat` const fileFormat = :ref:`ImageFormat::RGB24`, uint32_t const timeoutMs = 0 ) const = 0; virtual void :ref:`RequestTileAsync`(:ref:`TileRequest` const& tileRequest) const = 0; virtual std::shared_ptr<:ref:`ITile` const> :ref:`Tile`( :ref:`TileRequest` const& tileRequest, uint32_t timeoutMs = 0 ) const = 0; virtual void :ref:`DeleteImage`() = 0; virtual void :ref:`RateImage`(:ref:`IImageFileBasicInfo::StarRating` const rating) = 0; }; // direct descendants class :ref:`StoredImageHandleImpl`; .. _details-class_p1_1_1_camera_sdk_1_1_i_stored_image_handle: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Lightweight representation of an image file in the camera. This class is the interface to image files returned by the camera. It is lightweight and contains only a limited set of image metadata. It has no actual image bitmap data. You use this *image item* 's *id* to query for extra info about an image or the fetch preview or tiles of the image. You can also request the entire IIQ file! :ref:`Version ` 3.0 .. rubric:: See also: :ref:`P1::CameraSdk::Camera::AllImages ` Methods ------- .. index:: pair: function; Id .. _doxid-class_p1_1_1_camera_sdk_1_1_i_stored_image_handle_1a6e37363b73e5dd5c7b9ef86ba48a4c77: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual uint32_t Id() const = 0 Gets the *id* of this image. Can change after a camera reboot or a storage swap. .. index:: pair: function; Date .. _doxid-class_p1_1_1_camera_sdk_1_1_i_stored_image_handle_1a75f752b707b0138fb188139a8b1b8790: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual uint32_t Date() const = 0 Gets the capture date & time for this image. As a Unix Epoch timestamp. (Seconds since 1970-01-01 00:00:00 UTC.) .. index:: pair: function; Filename .. _doxid-class_p1_1_1_camera_sdk_1_1_i_stored_image_handle_1a5df9f8a602da6d14318b2cbbad3252ef: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual std::string const& Filename() const = 0 Gets the filename of the image's IIQ file. .. index:: pair: function; Device .. _doxid-class_p1_1_1_camera_sdk_1_1_i_stored_image_handle_1a7a2761fe5190e37be7899e8929d8ac5a: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual :ref:`DeviceMask` Device() const = 0 Gets a bitmask defining on what devices (XQS/SD), the image is stored. .. index:: pair: function; DeviceString .. _doxid-class_p1_1_1_camera_sdk_1_1_i_stored_image_handle_1a8b8f98f4614647301d506f0993988ebe: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual std::string DeviceString() const = 0 :ref:`Device() ` in a string format. .. index:: pair: function; RequestBasicImageInfoAsync .. _doxid-class_p1_1_1_camera_sdk_1_1_i_stored_image_handle_1a20d435124604358f4d32c6a2e32b30b1: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual void RequestBasicImageInfoAsync() const = 0 Requests a set of commonly used meta data about the image. CameraSDK defines a curated set of common meta data about an image called *BasicImageInfo*. See :ref:`IImageFileBasicInfo ` for what meta data is is included. The requested *basic info* object is returned by a notification. To retrieve the object, you must listen for the :ref:`EventType::CameraImageBasicImageInfo ` notification, *before* calling this method. :ref:`Version ` 3.0 .. rubric:: See also: :ref:`BasicImageInfo ` .. index:: pair: function; BasicImageInfo .. _doxid-class_p1_1_1_camera_sdk_1_1_i_stored_image_handle_1ad126563b5b108ca7caca4205136213b8: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual std::shared_ptr<:ref:`IImageFileBasicInfo` const> BasicImageInfo(uint32_t const timeoutMs = 0) const = 0 A blocking version of :ref:`RequestBasicImageInfoAsync `. :ref:`Version ` 3.0 .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - timeoutMs - An optional maximum amount of milliseconds to wait for a *basic info* object, before giving up. Zero (0) is *wait forever*. .. rubric:: Returns: A pointer to an :ref:`IImageFileBasicInfo ` object or nullptr on timeout. .. rubric:: See also: :ref:`RequestBasicImageInfoAsync ` .. index:: pair: function; RequestImageAsync .. _doxid-class_p1_1_1_camera_sdk_1_1_i_stored_image_handle_1a0efddeba3147fbe362a5e340f1b1aba7: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual bool RequestImageAsync() const = 0 Request a full IIQ file of the image. This method triggers on-demand transfer of the entire IIQ file of an image. To retrieve the object, you must listen for the :ref:`EventType::CameraImageReady ` notification, *before* calling this method. This notification contains the image via the :ref:`FullImage() ` method. The listener thread cannot know whether the arrived image is a just triggered capture, or a result of an on-demand request from this method. Therefore, use the IIQ filename to identify your requested image. It is necessary to subscribe to image transfers via :ref:`IFullImageSubscription ` for images to be transferred. :ref:`Version ` 3.0 .. rubric:: See also: :ref:`IFullImageSubscription ` .. index:: pair: function; RequestPreviewAsync .. _doxid-class_p1_1_1_camera_sdk_1_1_i_stored_image_handle_1a283ede44a9ce639f9e6357cb343167a7: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual void RequestPreviewAsync(:ref:`ImageFormat` const fileFormat = :ref:`ImageFormat::RGB24`) const = 0 Request the preview (thumbnail) for an image. A preview is a scaled down version of the entire image, encoded as either a RGB bitmap or as an complete jpeg file. Depending on the requested ``fileFormat`` format, the camera might be able to use any existing preview (thumbnail) present inside the image's IIQ file. The RGB previews can be stored inside the IIQ files. This method returns the stored preview, if it exists, or generates a new one if not. If you ask for a Jpeg formatted preview, the generated or stored RGB preview is converted to Jpeg (on the camera), before being returned to you. Jpeg previews are not cached. Jpegs are significantly smaller in file size, but time consuming to encode. Prefer Jpeg if you are connected to the camera over a slow connection, like an outdoor Wifi. The dimensions of the preview is controlled by the camera. The requested preview image object is returned by a notification. To retrieve the object, you must listen for the :ref:`EventType::CameraPreviewReady ` notification, *before* calling this method. :ref:`Version ` 3.0 .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - fileFormat - Optionally change encoding of the returned preview image. Default is RGB bitmap. .. rubric:: See also: :ref:`RequestTileAsync ` .. index:: pair: function; Preview .. _doxid-class_p1_1_1_camera_sdk_1_1_i_stored_image_handle_1a894bbff3fb22006f400c9229bc8739a2: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual std::shared_ptr<:ref:`IPreview` const> Preview( :ref:`ImageFormat` const fileFormat = :ref:`ImageFormat::RGB24`, uint32_t const timeoutMs = 0 ) const = 0 A blocking version of :ref:`RequestPreviewAsync `. :ref:`Version ` 3.0 .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - fileFormat - Optionally change encoding of the returned preview image. Default is RGB bitmap. * - timeoutMs - An optional maximum amount of milliseconds to wait for the preview, before giving up. Zero (0) is 'wait forever'. .. rubric:: Returns: A pointer to an image buffer that encapsulates the image data, or nullptr on timeout. .. index:: pair: function; RequestTileAsync .. _doxid-class_p1_1_1_camera_sdk_1_1_i_stored_image_handle_1a88502e2d2791a87c935768789970f070: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual void RequestTileAsync(:ref:`TileRequest` const& tileRequest) const = 0 Request a *tile* : a (scaled) crop of the full image. Tiles are a cropped and scaled jpeg encoded previews of the full image. The camera takes the requested crop of the image, scales it and, optionally, converts it to jpeg. The crop is defined in full image coordinates, meaning the pixel range of the full (visible) image dimensions. Origo is upper left corner. Any scaling is applied *after* cropping, meaning that if the crop dimension is 100 px, scaling by 0.5 results in an output image that is ~50 px. This method is asynchronous and will return immediately. The requested tile object is returned by a notification. To retrieve the object, you must listen for the :ref:`EventType::CameraTileReady ` notification, *before* calling this method. Note that this notification :ref:`EventType ` is shared with incoming *previews*. Note that the camera might not (and will likely not), give the exact crop you requested. The resulting might differ a few pixels in offset or size. This is due performance optimizations in the image conversion pipeline. Speed is favoured over precision. :ref:`Version ` 3.0 .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - tileRequest - Specification of requested tile. .. rubric:: See also: :ref:`RequestPreviewAsync ` .. index:: pair: function; Tile .. _doxid-class_p1_1_1_camera_sdk_1_1_i_stored_image_handle_1a8110f1a9819ffc19d460d35658d56de6: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual std::shared_ptr<:ref:`ITile` const> Tile( :ref:`TileRequest` const& tileRequest, uint32_t timeoutMs = 0 ) const = 0 A blocking version of :ref:`RequestTileAsync `. :ref:`Version ` 3.0 .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - tileRequest - Specification of requested tile. * - timeoutMs - To maximum time to wait for the camera to return the tile. Zero (0) is 'wait forever'. .. rubric:: Returns: A pointer to an image buffer that encapsulates the image data, or nullptr on timeout. .. rubric:: See also: :ref:`Preview ` .. index:: pair: function; DeleteImage .. _doxid-class_p1_1_1_camera_sdk_1_1_i_stored_image_handle_1a1a6812153012fef9978a75bf46cac3ee: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual void DeleteImage() = 0 Delete an image from the camera storage. This method deletes the image (IIQ file) and any associated Jpeg file, from either XQD or SD card storage. Deletion is irreversible. Confirmation of delete request is provided by a notification. If you wish to receive this notification, you must listen for the EventType::CameraImageEnumElementRemoved notification, *before* calling this method. If the request fails, there is no notification. :ref:`Version ` 3.0 .. index:: pair: function; RateImage .. _doxid-class_p1_1_1_camera_sdk_1_1_i_stored_image_handle_1a96943f1bc5d26b925d23c7f3588c49c5: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual void RateImage(:ref:`IImageFileBasicInfo::StarRating` const rating) = 0 Change the star-rating of an image. All images can have an optional star-rating, to mark them as more or less significant. Use this method to change an image rating, or remove it. Confirmation of a changed rating is provided by a notification. If you wish to receive this notification, you must listen for the EventType::CameraImageEnumElementEdited notification, *before* calling this method. If the request fails, there is no notification. To retrieve the existing star-rating of an image you should use the methods for retrieving all images on the camera, or the :ref:`BasicImageInfo `. :ref:`Version ` 3.0 .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rating - The new rating to set on the image