.. _image-open-label: Open Image ~~~~~~~~~~ .. TODO: See appendix B There are different ways to open an image in the ImageSDK. The ImageSDK accepts images in the IIQ format (Phase One proprietary file format for raw/Bayer images). Opening an image from disk can be done as follows: .. code-tabs:: .. include-tab:: ../../labels/cppOpenImageFromFile :language: cpp :title: C++ .. include-tab:: ../../labels/csOpenImageFromFile :language: csharp :title: C# Alternatively, opening an image from buffer can be done as follows: .. code-tabs:: .. include-tab:: ../../labels/cppOpenImageFromCamera :language: cpp :title: C++ .. include-tab:: ../../labels/csOpenImageFromCamera :language: csharp :title: C# .. _image-basic-info-label: Basic Image Info ^^^^^^^^^^^^^^^^ Once the image has been opened, basic image info such as the width and height of the image can be extracted, as follows: .. code-tabs:: .. include-tab:: ../../labels/cppImageWidthHeight :language: cpp :title: C++ .. include-tab:: ../../labels/csImageWidthHeight :language: csharp :title: C# The "width" and "height" in this example refers to the width and height of the exposed area on the sensor. See :ref:`image-sensor-size-label`, for more information on this topic.