.. index:: pair: class; P1::CameraSdk::Camera .. _doxid-class_p1_1_1_camera_sdk_1_1_camera: class P1::CameraSdk::Camera =========================== .. toctree:: :hidden: Overview ~~~~~~~~ Representation of a physical Phase One IQ4 or iXM camera. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include class Camera { public: // construction :ref:`Camera`(); :ref:`Camera`(Camera&& other); // methods static Camera :ref:`OpenUsbCamera`( std::string const& serial = std::string(), std::string const& password = std::string() ); static Camera :ref:`OpenIpCamera`( std::string const& ipAddress, std::string const& password = std::string(), int const timeoutSecs = 0 ); static std::vector<:ref:`CameraListElement`> :ref:`AvailableCameras`(); Camera& :ref:`operator =` (Camera&& other); void :ref:`Close`(); bool :ref:`IsOpen`() const; int :ref:`Id`() const; void :ref:`TriggerCapture`(); void :ref:`SetHostStorageCapacity`(uint32_t capacityMB); bool :ref:`UpdateCameraFirmware`(std::string const& filePath); bool :ref:`UpdateCameraFirmware`( uint8_t const* fwFileBuffer, std::size_t const fwBufferSize ); :ref:`PropertyValue` :ref:`Property`(uint32_t const property) const; void :ref:`SetProperty`(uint32_t const propertyId, :ref:`PropertyValue` const& value); :ref:`PropertySpecification` :ref:`PropertySpec`(uint32_t const propertyId) const; std::vector :ref:`AllPropertyIds`() const; std::vector`>> :ref:`AllImages`(); std::shared_ptr<:ref:`ISubscriptionManager`> :ref:`Subscriptions`(); std::shared_ptr<:ref:`ICameraCapabilities` const> :ref:`Capabilities`() const; :ref:`P1::CameraSdk::TetherConnection` :ref:`ConnectionType`() const; std::vector :ref:`DiagnosticsLog`(void) const; bool :ref:`SaveDiagnosticsLog`(std::filesystem::path const logFileDestpath) const; }; .. _details-class_p1_1_1_camera_sdk_1_1_camera: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Representation of a physical Phase One IQ4 or iXM camera. All interaction with cameras are done through objects of this class. You work with cameras using the 3 following schemes. Properties ++++++++++ All Phase One cameras expose a dynamic set of properties. These include *Aperture*, *Shutter Time*, *ISO* etc. But properties can also represent other camera settings like *lens name* or the network preferences. Common for all properties is that they define metadata like human readable names and valid value ranges. A camera exposes different properties at different times. This means that changing one property, might cause other properties to disappear or become visible. Because of this dynamic nature, we do not include an ``enum`` type with all PropertyId. You must query for the name and purpose of the properties to wish to use. And know that their existence or read/write state, is not guaranteed. Capturing & LiveView ++++++++++++++++++++ The camera class also defines a set of methods to trigger image capturing, and streaming LiveView images to the SDK host computer. Also, you can control whether captured images should be transferred to the computer. The format of the transferred images are IIQ files, that can be written directly to disk. Image Browsing ++++++++++++++ Starting with the release of CameraSDK 3.0, and accompanying camera firmwares, you can browse images on the camera. List all available images in the cameras storage, download the preview (thumbnail), request a crop of an image, with scaling. You can also request that any image IIQ be transferred to host, on-demand. Firmware update and logs +++++++++++++++++++++++++ Also introduced in 3.0 are updating camera firmware and extracting logs from the camera. From the point of view of the CameraSDK, firmware updates are purely file transfers. There is no tracking of progress, as the new firmware is applied in the camera. In fact, the camera will instantly drop the SDK connection, as soon as the update is started. Extracting (internal) logs file from the cameras are made easier, with a dedicated new method for this. The cmaera's internal log is a rolling window of the latest 10-30MB of logging output. (Depending on the camera model.) That said, log files are intended for debugging issue in collaboration with Phase One Support. The extracted log files are *not* user readable. Creating & disposing objects +++++++++++++++++++++++++++++ There is no (real) public ``constructor`` on this class. Since this class represents an association with physical cameras, you cannot construct objects on your own. Use one of the static methods, like :ref:`OpenUsbCamera() `, to create camera objects. Upon destructing an instance of this class, the connection to the physical camera is terminated and all associated resources are freed. Any LiveView image frames or transferred image capture objects, is also freed with the camera object. :ref:`Version ` 2.0 Construction ------------ .. index:: pair: function; Camera .. _doxid-class_p1_1_1_camera_sdk_1_1_camera_1a464ba42b8da0210af95615febfb5e75f: .. ref-code-block:: cpp :class: doxyrest-title-code-block Camera() Create an empty dummy camera object - with no tether to real world camera. This default constructor is meant allow initialization of an empty camera variable. Calling any method on a camera object created by this constructor will throw an exception! @seealso OpenUsbCamera @seealso OpenIpCamera .. index:: pair: function; Camera .. _doxid-class_p1_1_1_camera_sdk_1_1_camera_1a548c1f771c76a1e2c9eb682010c5a88d: .. ref-code-block:: cpp :class: doxyrest-title-code-block Camera(Camera&& other) Move camera from one context to another. This is the *move constructor*, allowing move semantics on the camera objects. Methods ------- .. index:: pair: function; OpenUsbCamera .. _doxid-class_p1_1_1_camera_sdk_1_1_camera_1a3771762d175f09dc0bf51de2a93073c6: .. ref-code-block:: cpp :class: doxyrest-title-code-block static Camera OpenUsbCamera( std::string const& serial = std::string(), std::string const& password = std::string() ) Opens an USB :ref:`Camera ` with the given serial-number. (Or any USB camera if the serial-number is omitted or empty). This method will open and return the first available USB attached camera. If you have multiple USB cameras attached to your system, there is no guarantee what camera will be opened. In this case, please provide a serial number for the camera you wish to open. :ref:`Version ` 2.0 .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - serial - Optional: The serial of the camera to open. An empty string or ``nullptr``, to open any camera. * - password - An optional password, if camera is password protected .. rubric:: Returns: A camera object, to control the requested physical camera .. index:: pair: function; OpenIpCamera .. _doxid-class_p1_1_1_camera_sdk_1_1_camera_1a9b0c34f16f3eb6cd5e0da1e95207dca2: .. ref-code-block:: cpp :class: doxyrest-title-code-block static Camera OpenIpCamera( std::string const& ipAddress, std::string const& password = std::string(), int const timeoutSecs = 0 ) Opens a TCP/IP camera with a given IP address. :ref:`Version ` 2.0 .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ipAddress - The IPv4 address of the camera * - password - An optional password, if camera is password protected * - timeout - An optional connection timeout in seconds. (0 is system's sockets default timeout) .. rubric:: Returns: A camera object, to control the requested physical camera .. index:: pair: function; AvailableCameras .. _doxid-class_p1_1_1_camera_sdk_1_1_camera_1ad8e297c0ce776da4edce6db47a0f994d: .. ref-code-block:: cpp :class: doxyrest-title-code-block static std::vector<:ref:`CameraListElement`> AvailableCameras() Returns a list of all USB cameras *currently* attached to the system. Cameras come and go. The available cameras might disappear right after this method has returned. Therefore, opening a camera found using this method might still fail. Cameras connected by TCP/IP *can not* be discovered by this method! :ref:`Version ` 2.0 .. rubric:: Returns: A list of cameras attached to your host system .. index:: pair: function; operator= .. _doxid-class_p1_1_1_camera_sdk_1_1_camera_1a8d44d83aefc8e93a62e1ab312d40fd37: .. ref-code-block:: cpp :class: doxyrest-title-code-block Camera& operator = (Camera&& other) Assign (pass) a camera object to another variable. This is the *move assignment*, allowing move semantics on the camera objects. .. index:: pair: function; Close .. _doxid-class_p1_1_1_camera_sdk_1_1_camera_1a1ef3adeff6e4be3f38df3d082a06864e: .. ref-code-block:: cpp :class: doxyrest-title-code-block void Close() Frees the camera handle, letting other processes or resources take over use of the camera. Closing the communication with the camera and causes any initialized states to shut down. Likewise all event notifications from this camera are removed. This method is automatically called by the class' destructor. :ref:`Version ` 2.0 .. index:: pair: function; IsOpen .. _doxid-class_p1_1_1_camera_sdk_1_1_camera_1ad5ee1126883d38db1892281b01475a3a: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool IsOpen() const Returns whether this camera object is open. :ref:`Version ` 2.0 .. index:: pair: function; Id .. _doxid-class_p1_1_1_camera_sdk_1_1_camera_1a732e5b067dbd42ce276400ac971bc418: .. ref-code-block:: cpp :class: doxyrest-title-code-block int Id() const Get the unique id (*handle*) for this camera. The Id is unique only for this runtime session and is not related to the physical camera. :ref:`Version ` 2.0 .. index:: pair: function; TriggerCapture .. _doxid-class_p1_1_1_camera_sdk_1_1_camera_1a09f1d88b6270538251ff07f3013c7c5e: .. ref-code-block:: cpp :class: doxyrest-title-code-block void TriggerCapture() Take a picture with the camera. This method triggers the camera to take a picture, with its current settings and exposure mode. If you wish to receive the picture taken, you *must* first call EnableImageReceiving and set it to ``true``. If not, the triggering will fail if there is no storage media in the camera. Be aware that actual triggering might also fail for a couple of other reasons. You can see if the camera is ready to trigger a capture, by examining the *Ready For Capture* property. Also note that USB and TCP/IP transports include a significant of latency with jitter. There is no guarantee on the time from this call to the actual request is received in the camera. You will probably need a more precise control over camera triggering. This offered by the iXLink protocol. :ref:`Version ` 2.0 .. index:: pair: function; SetHostStorageCapacity .. _doxid-class_p1_1_1_camera_sdk_1_1_camera_1a286b4217656565c0d7ec21b5a352c90f: .. ref-code-block:: cpp :class: doxyrest-title-code-block void SetHostStorageCapacity(uint32_t capacityMB) Registers this host's (your PC) remaining storage capacity (in megabytes). On IQ4 cameras this is used to display the remaining capacity on the host storage. This value is not automatically updated. You must call this manually to reflect changes to your computers disk storage capacity. If the host's capacity falls below a certain threshold (depending on capture-settings), the camera will reject new captures (also depended on storage-settings). If you do not care about relaying the correct remaining disk space (on the your PC), you can simply ignore this setting. By default, this setting is set to 1GB. :ref:`Version ` 2.0 .. index:: pair: function; UpdateCameraFirmware .. _doxid-class_p1_1_1_camera_sdk_1_1_camera_1ae048cfdb6583f2509b9ba8195a4acedd: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool UpdateCameraFirmware(std::string const& filePath) Update firmware in the camera, using a file on disk. This method transfers the provided *firmware package* file to the camera, which then immediately begins the firmware update process. After a brief validation of the firmwre package, the camera will drop the connection to the CameraSDK, and begin applying the new firmware. If the package validation fails, the camera will discard the package. This method returns immediately after the file has been transferred to the camera. The returned boolean indicate the status of the file transfer, *not* the firmware update in itself. This method will ``throw`` if pointed to a non-existing or inaccessible file. :ref:`Version ` 3.0 .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - filePath - Path to the firmware package (.fwr / .fwp) file .. rubric:: Returns: ``true`` if transfer is successful, else ``false`` .. index:: pair: function; UpdateCameraFirmware .. _doxid-class_p1_1_1_camera_sdk_1_1_camera_1a9ba06578d86e4984b78e352dc1b34d3c: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool UpdateCameraFirmware( uint8_t const* fwFileBuffer, std::size_t const fwBufferSize ) Update firmware of the camera, using an *in memory* file buffer. This method transfers the provided *firmware package* file buffer to the camera, which then immediately begins the firmware update process. After a brief validation of the firmwre package, the camera will drop the connection to the CameraSDK, and begin applying the new firmware. If the package validation fails, the camera will discard the package. This method returns immediately after the buffer has been transferred to the camera. The returned boolean indicate the status of the transfer, *not* the firmware update in itself. :ref:`Version ` 3.0 .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - fwFileBuffer - Pointer to buffer that holds the firmware (.fwr / .fwp) file. * - fwBufferSize - size (in bytes) of buffer. .. rubric:: Returns: ``true`` if transfer is successful, otherwise ``false`` .. index:: pair: function; Property .. _doxid-class_p1_1_1_camera_sdk_1_1_camera_1a1bf8350cd60dd018659834ed57281328: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`PropertyValue` Property(uint32_t const property) const Gets the current value of a given property. The returned :ref:`PropertyValue ` object is a wrapper that encapsulate the property's type. Since properties each can have different types, that is only known at runtime - all property values are wrapped in the ``:ref:`PropertyValue ``` class. The :ref:`PropertyValue ` class contains only the value - not the associated meta data for the property. To get the metadata use :ref:`PropertySpec `. :ref:`Version ` 2.0 .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - property - The Id of the property to get .. rubric:: Returns: The value object of the property .. index:: pair: function; SetProperty .. _doxid-class_p1_1_1_camera_sdk_1_1_camera_1a2a536b3b9b56a22995e6556d44d2e033: .. ref-code-block:: cpp :class: doxyrest-title-code-block void SetProperty(uint32_t const propertyId, :ref:`PropertyValue` const& value) Set a given property's value. Overwrite the existing property on the camera with a new value. You provide the new value as a :ref:`PropertyValue ` object. This object can be one you receive earlier from :ref:`Property ` and modified. Or, it can be a :ref:`PropertyValue ` that you *constructed* yourself. :ref:`Version ` 2.0 .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - propertyId - The Id for the property to set * - value - The new value of the property .. rubric:: See also: :ref:`PropertyValue ` .. index:: pair: function; PropertySpec .. _doxid-class_p1_1_1_camera_sdk_1_1_camera_1a7bb7481e8475fca5b7833326fdff6efa: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`PropertySpecification` PropertySpec(uint32_t const propertyId) const Return a property specification object for a given property. All properties as metadata associated that tells about their type. Such metadata are contained in the :ref:`PropertySpecification ` class. Metadata include valid value ranges, human readable names, read-only state, grouping and much more. :ref:`Version ` 2.0 .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - propertyId - The Id of the ``Property`` to get .. rubric:: Returns: The specification of the provided PropertyId .. index:: pair: function; AllPropertyIds .. _doxid-class_p1_1_1_camera_sdk_1_1_camera_1a1a1f1e87df20fa24e00e39c46aa407cd: .. ref-code-block:: cpp :class: doxyrest-title-code-block std::vector AllPropertyIds() const Returns a list of all the properties that this camera support. Get all the properties exposed by the camera. The list of available properties are determined by the camera. CameraSDK has no prior knowledge of properties or their effects. The list of properties are subject to change, and a property may disappear afterwards - not from the returned list, but from the camera. Similarly, a new property may arrive after this function has been called. :ref:`Version ` 2.0 .. rubric:: Returns: A list of PropertyId's .. rubric:: See also: :ref:`Property ` .. index:: pair: function; AllImages .. _doxid-class_p1_1_1_camera_sdk_1_1_camera_1af1c158376d40d816daaec9a33ebfdf17: .. ref-code-block:: cpp :class: doxyrest-title-code-block std::vector`>> AllImages() Returns a list of the images currently stored in camera storage. (XQD / CFExpress) The camera supplies a list of *thin* image objects, meaning that each element in the list contains only an Id and some common meta data. You use these elements, returned by this method, to request preview, metadata or crops of images. :ref:`Version ` 3.0 .. rubric:: Returns: A vector of (shared) :ref:`IStoredImageHandle ` pointers .. index:: pair: function; Subscriptions .. _doxid-class_p1_1_1_camera_sdk_1_1_camera_1a397126070516b3daeced5b94a4cdb7cd: .. ref-code-block:: cpp :class: doxyrest-title-code-block std::shared_ptr<:ref:`ISubscriptionManager`> Subscriptions() Get the current subscriptions of this camera. In release 3.0 we introduce subscriptions as a way to receive full IIQ files, previews and LiveView image frames. You use this *manager* to subscribe and unsubscribe for receiving notifications for these events. (IIQ file, Preview, etc.) Subscriptions use the *notification* system to deliver the events. Therefore, you *must* also enable listening for any event that you subscribe to. :ref:`Version ` 3.0 .. rubric:: Returns: A shared pointer to the subscription manager. .. index:: pair: function; Capabilities .. _doxid-class_p1_1_1_camera_sdk_1_1_camera_1a60bf779a978087809f2240e0aaca3a83: .. ref-code-block:: cpp :class: doxyrest-title-code-block std::shared_ptr<:ref:`ICameraCapabilities` const> Capabilities() const Get a description of the capabilities for the connected camera model. Different camera models has defferent limitations. The :ref:`ICameraCapabilities ` class describes such limitations for the connected camera. :ref:`Version ` 3.0 .. rubric:: Returns: A pointer to the capabilities interface. .. index:: pair: function; ConnectionType .. _doxid-class_p1_1_1_camera_sdk_1_1_camera_1a20fe5565ee2de36766224ec6f643d24b: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`P1::CameraSdk::TetherConnection` ConnectionType() const Returns the type of tethering used to communicate with this camera. This (Windows only) helper method allows you to inspect the established USB link version. (That is; is USB3 used or has the link downgraded to USB2?) For non-Windows platforms, USB2 or USB3 links are indistinguishable, and returned as just 'USB'. :ref:`Version ` 2.0 .. index:: pair: function; DiagnosticsLog .. _doxid-class_p1_1_1_camera_sdk_1_1_camera_1ac5cf97bc6c2e565e5282bdee3d36664e: .. ref-code-block:: cpp :class: doxyrest-title-code-block std::vector DiagnosticsLog(void) const Writes diagnostic info (not human readable) from camera to buffer (vector) :ref:`Version ` 3.0 .. rubric:: Returns: vector containing log .. index:: pair: function; SaveDiagnosticsLog .. _doxid-class_p1_1_1_camera_sdk_1_1_camera_1a3fa0561d5a8f400707a86992dad798f6: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool SaveDiagnosticsLog(std::filesystem::path const logFileDestpath) const Writes diagnostic info (not human readable) from camera to file. :ref:`Version ` 3.0 .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - logFileDestpath - points to destination for new diagnosticsLogFile (overwrites file if existsing) .. rubric:: Returns: 'true' if transfer succeded