SunnyLens_web_logo

SunnyLens C++ library

v1.0.5

Table of contents

Overview

SunnyLens C++ library is a software controller for Sunny continuous zoom lenses. The SunnyLens library inherits Lens interfaces. It depends on libraries: Lens (provides interface and data structures to control lenses, source code included, Apache 2.0 license), Logger (provides function to print logs, source code included, Apache 2.0 license), SerialPort (provides functions to work with serial ports, source code included, Apache 2.0 license), SunnyLensParser (provides functions to encode control commands and decode responses from Sunny continuous zoom lenses, source code included) and AFEngine (provides auto focus functions, source code included). The SunnyLens library provides simple interface to be integrated in any C++ projects. The library doesn’t have third-party dependencies to be specially installed in OS. It developed with C++17 standard and compatible with Linux and Windows.

Versions

Table 1 - Library versions.

Version Release date What’s new
1.0.0 15.07.2024 First version.
1.0.1 25.07.2024 - Add auto focus.
1.0.2 29.07.2024 - Submodules updated.
- CMake changed.
1.0.3 18.09.2024 - AFEngine submodule update.
1.0.4 05.12.2024 - Linkage option add.
1.0.5 10.12.2024 - Update Linkage behavior.

Library files

The library supplied by source code only. The user would be given a set of files in the form of a CMake project (repository). The repository structure is shown below:

CMakeLists.txt ------------- Main CMake file of the library.
3rdparty ------------------- Folder with third-party libraries.
    CMakeLists.txt --------- CMake file to include third-party libraries.
    AFEngine --------------- Folder with AFEngine library source code.
    Lens ------------------- Folder with Lens library source code.
    Logger ----------------- Folder with Logger library source code.
    SerialPort ------------- Folder with SerialPort library source code.
    SunnyLensParser -------- Folder with SunnyLensParser library source code.
src ------------------------ Folder with library source code.
    CMakeLists.txt --------- CMake file of the library.
    SunnyLens.h ------------ Main library header file.
    SunnyLens.cpp ---------- C++ implementation file.
    SunnyLensVersion.h ----- Header file with library version.
    SunnyLensVersion.h.in -- CMake service file to generate version header.
test ----------------------- Folder with test application files.
    CMakeLists.txt --------- CMake file for test application.
    main.cpp --------------- Source C++ file of test application.
example -------------------- Folder with simple example application.
    CMakeLists.txt --------- CMake file for simple example application.
    main.cpp --------------- Source C++ file of simple example application.

SunnyLens class description

SunnyLens class declaration

SunnyLens.h file contains SunnyLens class declaration:

namespace cr
{
namespace lens
{
/// Sunny lens controller class.
class SunnyLens : public Lens
{
public:

    /// Class constructor.
    SunnyLens();

    /// Class destructor.
    ~SunnyLens();

    /// Get class version.
    static std::string getVersion();

    /// Open serial port.
    bool openLens(std::string initString) override;

    /// Init lens controller.
    bool initLens(LensParams& params) override;

    /// Close serial port and stop communication thread.
    void closeLens() override;

    /// Get controller initialization status.
    bool isLensOpen() override;

    /// Get connection status.
    bool isLensConnected() override;

    /// Set the lens controller parameter.
    bool setParam(LensParam id, float value) override;

    /// Get the lens controller param.
    float getParam(LensParam id) override;
    
    /// Get the lens controller params.
    void getParams(LensParams& params) override;

    /// Execute command.
    bool executeCommand(LensCommand id, float arg = 0) override;

    /// Add video frame for auto focus purposes.
    void addVideoFrame(cr::video::Frame& frame) override;

    /// Decode and execute command.
    bool decodeAndExecuteCommand(uint8_t* data, int size) override;
};
}
}

getVersion method

The getVersion() method returns string of current version of SunnyLens class. Method declaration:

static std::string getVersion();

Method can be used without SunnyLens class instance. Example:

cout << "SunnyLens version: " << SunnyLens::getVersion() << endl;

Console output:

SunnyLens version: 1.0.5

openLens method

The openLens(…) opens serial port to communicate with Sunny lenses. If serial port already open the method will return TRUE. Lens parameters will be initialized by default. To initialize lens controller by set of parameters the initLens(…) method can be used. After successful initialization the library will run communication threads (thread to communicate with lens equipment via serial port). Method declaration:

bool openLens(std::string initString) override;
Parameter Value
initString Initialization string contains full serial port name, baudrate, timeout separated by “;”. Example: “/dev/ttyUSB0;115200;50”. Baudrate and timeout optional params and will be set by default by the library if not provided.

Returns: TRUE if the lens controller is initialized or FALSE if not.

initLens method

The initLens(…) initializes lens controller and sets lens params (Lens interface). The method will set given lens params and after will call openLens(…) method. After successful initialization the library will run communication threads (thread to communicate with equipment via serial port). Method declaration:

bool initLens(LensParams& params) override;
Parameter Value
params LensParams class object which includes all lens parameters. LensParams class includes initString which used in openLens(…) method. See description of LensParams class.

Returns: TRUE if the lens controller is initialized or FALSE if not.

closeLens method

The closeLens() closes serial port and stops all communication threads. Method declaration:

void closeLens() override;

isLensOpen method

The isLensOpen() method returns lens controller initialization status. Open status shows if the controller initialized (serial port open) but doesn’t show if controller has communication with lens equipment. For example, if serial port is open (opens serial port file in OS) but equipment can be not active (no power). In this case open status just shows that the serial port is open. Method declaration:

bool isLensOpen() override;

Returns: TRUE is the lens controller initialized or FALSE if not.

isLensConnected method

The isLensConnected() shows if the lens controller receives responses from equipment. For example, if serial port open but equipment not active (no power). In this case methods isLensOpen(…) will return TRUE but isLensConnected() method will return FALSE. Method declaration:

bool isLensConnected() override;

Returns: TRUE if the lens controller has data exchange with lens equipment or FALSE if not.

setParam method

The setParam(…) method sets new lens parameters value. SunnyLens provides thread-safe setParam(…) method call. This means that the setParam(…) method can be safely called from any thread. The lens controller checks if parameters ID and parameter value are valid and adds them to internal buffer. If parameter ID and parameter argument are valid the method will return TRUE but parameters may not be set (some params related only to lens controller but not lens hardware). Internal communication thread takes parameters (if parameters related to lens hardware) from internal buffer and send it to lens. Method declaration:

bool setParam(LensParam id, float value) override;
Parameter Description
id Lens parameter ID according to LensParam enum.
value Lens parameter value. Value depends on parameter ID (LensParam enum).

Returns: TRUE if the parameter was set (accepted by lens controller) or FALSE if not.

getParam method

The getParam(…) method returns lens parameter value. SunnyLens provides thread-safe getParam(…) method call. This means that the getParam(…) method can be safely called from any thread. Method declaration:

float getParam(LensParam id) override;
Parameter Description
id Lens parameter ID according to LensParam enum.

Returns: parameter value or -1 of the parameters doesn’t exist (not supported).

getParams method

The getParams(…) method returns all lens parameters. SunnyLens provides thread-safe getParams(…) method call. This means that the getParams(…) method can be safely called from any thread. Method declaration:

void getParams(LensParams& params) override;
Parameter Description
params Reference to LensParams class object which includes all lens parameters.

executeCommand method

The executeCommand(…) method to execute lens action command. SunnyLens provides thread-safe executeCommand(…) method call. This means that the executeCommand(…) method can be safely called from any thread. The lens controller checks if command ID and command argument are valid and adds them to internal buffer. If command ID and command argument are valid the method will return TRUE but command may not be executed. Internal communication thread takes commands from internal buffer and send commands to lens. Method declaration:

bool executeCommand(LensCommand id, float arg = 0) override;
Parameter Description
id Lens action command ID according to LensCommand enum.
arg Lens action command argument. Value depends on command ID (see description of LensCommand enum).

Returns: TRUE is the command was accepted by lens controller or FALSE if not.

addVideoFrame method

The addVideoFrame(…) method copies video frame data to lens controller to perform autofocus algorithm. To perform auto focus lens the controller calculates focus factor in auto focus ROI (focus factor can be obtained with getParam(…) method and parameters FOCUS_FACTOR, or with getParams(…) method). To calculate focus factor SunnyLens needs video frame, so to use auto focus functions the method addVideoFrame(…) must be called for each captured video frame. Method declaration:

void addVideoFrame(cr::video::Frame& frame) override;
Parameter Description
frame Video Frame object. The library support RAW pixel formats: BGR24, RGB24, GRAY, NV12, NV21, YU12, YV12, UYVY, YUYV and YUV24. Minimum width / height of video frame is 32. Maximum width / height of video frame is 8192.

decodeAndExecuteCommand method

The decodeAndExecuteCommand(…) method decodes and executes command on lens controller side. Method will decode commands which encoded by encodeCommand(…) or encodeSetParamCommand(…) methods of Lens interface class. If command decoded the method will call setParam(…) or executeCommand(…) methods. This method is thread-safe, so the method can be safely called from any thread. Method declaration:

bool decodeAndExecuteCommand(uint8_t* data, int size) override;
Parameter Description
data Pointer to input command. To generate input command you may use encodeCommand(…) and encodeSetParamCommand(…) static methods.
size Size of command. Must be 11 bytes for SET_PARAM and COMMAND.

Returns: TRUE if command decoded (change parameter command or action command) and executed (action command or set param command).

encodeSetParamCommand method of Lens class

The encodeSetParamCommand(…) static method designed to encode command to change any remote lens parameter. To control a lens remotely, the developer has to develop his own protocol and according to it encode the command and deliver it over the communication channel. To simplify this, the Lens class contains static methods for encoding the control command. The Lens class provides two types of commands: a parameter change command (SET_PARAM) and an action command (COMMAND). encodeSetParamCommand(…) designed to encode SET_PARAM command. Method declaration:

static void encodeSetParamCommand(uint8_t* data, int& size, LensParam id, float value);
Parameter Description
data Pointer to data buffer for encoded command. Must have size >= 11.
size Size of encoded data. Will be 11 bytes.
id Parameter ID according to LensParam enum.
value Parameter value.

encodeSetParamCommand(…) is static and used without Lens class instance. This method used on client side (control system). Example:

// Buffer for encoded data.
uint8_t data[11];
// Size of encoded data.
int size = 0;
// Random parameter value.
float outValue = (float)(rand() % 20);
// Encode command.
Lens::encodeSetParamCommand(data, size, LensParam::AF_ROI_X0, outValue);

encodeCommand method of Lens class

The encodeCommand(…) static method designed to encode lens action command. To control a lens remotely, the developer has to develop his own protocol and according to it encode the command and deliver it over the communication channel. To simplify this, the Lens class contains static methods for encoding the control command. The Lens class provides two types of commands: a parameter change command (SET_PARAM) and an action command (COMMAND). encodeCommand(…) designed to encode COMMAND command (action command). Method declaration:

static void encodeCommand(uint8_t* data, int& size, LensCommand id, float arg = 0.0f);
Parameter Description
data Pointer to data buffer for encoded command. Must have size >= 11.
size Size of encoded data. Will be 11 bytes.
id Command ID according to LensCommand enum.
arg Command argument value (value depends on command ID).

encodeCommand(…) is static and used without Lens class instance. This method used on client side (control system). Encoding example:

// Buffer for encoded data.
uint8_t data[11];
// Size of encoded data.
int size = 0;
// Random command argument value.
float outValue = (float)(rand() % 20);
// Encode command.
Lens::encodeCommand(data, size, LensCommand::ZOOM_TO_POS, outValue);

decodeCommand method of Lens class

The decodeCommand(…) static method designed to decode command on lens controller side. o control a lens remotely, the developer has to develop his own protocol and according to it decode the command on lens controller side. To simplify this, the Lens interface class contains static method to decode input command (commands should be encoded by encodeSetParamCommand(…) or encodeCommand(…) methods). The Lens class provides two types of commands: a parameter change command (SET_PARAM) and an action command (COMMAND). Method declaration:

static int decodeCommand(uint8_t* data, int size, LensParam& paramId, LensCommand& commandId, float& value);
Parameter Description
data Pointer to input command.
size Size of command. Should be 11 bytes.
paramId Lens parameter ID according to LensParam enum. After decoding SET_PARAM command the method will return parameter ID.
commandId Lens command ID according to LensCommand enum. After decoding COMMAND the method will return command ID.
value Lens parameter value (after decoding SET_PARAM command) or lens command argument (after decoding COMMAND).

Returns: 0 - in case decoding COMMAND, 1 - in case decoding SET_PARAM command or -1 in case errors.

Data structures

LensCommand enum

LensCommand enum declared in Lens.h file. Enum declaration:

namespace cr
{
namespace lens
{
enum class LensCommand
{
    /// Move zoom tele (in). Command doesn't have arguments. User should be able
    /// to set zoom movement speed via lens parameters.
    ZOOM_TELE = 1,
    /// Move zoom wide (out). Command doesn't have arguments. User should be
    /// able to set zoom movement speed via lens parameters.
    ZOOM_WIDE,
    /// Move zoom to position. Lens controller should have zoom range from
    /// 0 (full wide) to 65535 (full tele) regardless of the hardware value of
    /// the zoom position. If the minimum and maximum zoom position limits are
    /// set by the user in the lens parameters, the range of the hardware zoom
    /// position must be scaled to the user space 0-65535 range.
    /// Command argument: zoom position 0-65535. User should be able to set zoom
    /// movement speed via lens parameters.
    ZOOM_TO_POS,
    /// Stop zoom moving including stop zoom to position command.
    ZOOM_STOP,
    /// Move focus far. Command doesn't have arguments. User should be able to
    /// set focus movement speed via lens parameters.
    FOCUS_FAR,
    /// Move focus near. Command doesn't have arguments. User should be able to
    /// set focus movement speed via lens parameters.
    FOCUS_NEAR,
    /// Move focus to position. Lens controller should have focus range from 0
    /// (full near) to 65535 (full far) regardless of the hardware value of the
    /// focus position. If the minimum and maximum focus position limits are
    /// set by the user in the lens parameters, the range of the hardware focus
    /// position must be scaled to the 0-65535 user space range.
    /// Command argument: focus position 0-65535. User should be able to set
    /// focus movement speed via lens parameters.
    FOCUS_TO_POS,
    /// Stop focus moving including stop focus to position command.
    FOCUS_STOP,
    /// Move iris open. Command doesn't have arguments. User should be able to
    /// set iris movement speed via lens parameters.
    IRIS_OPEN,
    /// Move iris close. Command doesn't have arguments. User should be able
    /// to set iris movement speed via lens parameters.
    IRIS_CLOSE,
    /// Move iris to position. Lens controller should have iris range
    /// from 0 (full close) to 65535 (full far) regardless of the hardware
    /// value of the iris position. If the minimum and maximum iris position
    /// limits are set by the user in the lens parameters, the range of the
    /// hardware iris position must be scaled to the 0-65535 user space range.
    /// Command argument: iris position 0-65535. User should be able to set
    /// iris movement speed via lens parameters.
    IRIS_TO_POS,
    /// Stop iris moving including stop iris to position command.
    /// Command doesn't have arguments.
    IRIS_STOP,
    /// Start autofocus.  Command doesn't have arguments.
    AF_START,
    /// Stop autofocus.  Command doesn't have arguments.
    AF_STOP,
    /// Restart lens controller.
    RESTART,
    /// Detect zoom and focus hardware ranges. After execution this command the
    /// lens controller should automatically set at least parameters
    /// (LensParam enum): ZOOM_HW_TELE_LIMIT, ZOOM_HW_WIDE_LIMIT,
    /// FOCUS_HW_FAR_LIMIT and FOCUS_HW_NEAR_LIMIT.
    DETECT_HW_RANGES
};
}
}

Table 2 - Lens commands description. Some commands may be unsupported by lens controller.

Command Description
ZOOM_TELE Move zoom tele (in). Command doesn’t have arguments. Zoom speed can be set by getParam(…) method.
ZOOM_WIDE Move zoom wide (out). Command doesn’t have arguments. Zoom speed can be set by getParam(…) method.
ZOOM_TO_POS Move zoom to position. Command argument: zoom position 0 (full wide) - 65535 (full tele). Zoom speed can be set by getParam(…) method.
ZOOM_STOP Stop zoom moving including stop zoom to position command. Command doesn’t have arguments.
FOCUS_FAR Move focus far. Command doesn’t have arguments. Focus speed can be set by getParam(…) method.
FOCUS_NEAR Move focus near. Command doesn’t have arguments. Focus speed can be set by getParam(…) method.
FOCUS_TO_POS Move focus to position. Command argument: focus position 0 (full near) - 65535 (full far). Focus speed can be set by getParam(…) method.
FOCUS_STOP Stop focus moving including stop focus to position command. Command doesn’t have arguments.
IRIS_OPEN Not supported by SunnyLens class.
IRIS_CLOSE Not supported by SunnyLens class.
IRIS_TO_POS Not supported by SunnyLens class.
IRIS_STOP Not supported by SunnyLens class.
AF_START Start autofocus. Command doesn’t have arguments.
AF_STOP Stop autofocus. Command doesn’t have arguments.
RESTART Not supported by SunnyLens class.
DETECT_HW_RANGES Not supported by SunnyLens class.

LensParam enum

Enum declaration:

namespace cr
{
namespace lens
{
enum class LensParam
{
    /// Zoom position. Setting a parameter is equivalent to the command
    /// ZOOM_TO_POS. Lens controller should have zoom range from 0 (full wide)
    /// to 65535 (full tele) regardless of the hardware value of the zoom
    /// position. If the minimum and maximum zoom position limits are set by
    /// the user in the lens parameters, the range of the hardware zoom position
    /// must be scaled to the user space 0-65535 range. Parameter value: zoom
    /// position 0-65535. User should be able to set zoom movement speed via
    /// lens parameters.
    ZOOM_POS = 1,
    /// Hardware zoom position. Parameter value depends on implementation and
    /// lens hardware.
    ZOOM_HW_POS,
    /// Focus position. Setting a parameter is equivalent to the command
    /// FOCUS_TO_POS. Lens controller should have focus range from 0 (full near)
    /// to 65535 (full far) regardless of the hardware value of the focus
    /// position. If the minimum and maximum focus position limits are set by
    /// the user in the lens parameters, the range of the hardware focus
    /// position must be scaled to the 0-65535 user space range. Parameter
    /// value: focus position 0-65535. User should be able to set focus movement
    /// speed via lens parameters.
    FOCUS_POS,
    /// Hardware focus position. Parameter value depends on implementation and
    /// lens hardware.
    FOCUS_HW_POS,
    /// Iris position. Setting a parameter is equivalent to the command
    /// IRIS_TO_POS. Lens controller should have iris range from 0 (full close)
    /// to 65535 (full far) regardless of the hardware value of the iris
    /// position. If the minimum and maximum iris position limits are set by the
    /// user in the lens parameters, the range of the hardware iris position
    /// must be scaled to the 0-65535 user space range. Parameter value: iris
    /// position 0-65535. User should be able to set iris movement speed via
    /// lens parameters.
    IRIS_POS,
    /// Hardware iris position. Parameter value depends on particular lens
    /// controller.
    IRIS_HW_POS,
    /// Focus mode. Parameter value depends on implementation but it is
    /// recommended to keep default values: 0 - Manual focus control,
    /// 1 - Auto focus control.
    FOCUS_MODE,
    /// Filter mode. Parameter value depends on implementation but it is
    /// recommended to keep default values: 0 - Filter on, 1 - Filter off.
    FILTER_MODE,
    /// Autofocus ROI top-left corner horizontal position in pixels.
    /// Autofocus ROI is rectangle.
    AF_ROI_X0,
    /// Autofocus ROI top-left corner vertical position in pixels.
    /// Autofocus ROI is rectangle.
    AF_ROI_Y0,
    /// Autofocus ROI bottom-right corner horizontal position in pixels.
    /// Autofocus ROI is rectangle.
    AF_ROI_X1,
    /// Autofocus ROI bottom-right corner vertical position in pixels.
    /// Autofocus ROI is rectangle.
    AF_ROI_Y1,
    /// Zoom speed. Lens controller should have zoom speed range from 0 to
    /// 100% of max hardware zoom speed (parameter ZOOM_HW_MAX_SPEED).
    /// If the user sets a new parameter value of the ZOOM_HW_SPEED the
    /// parameter ZOOM_SPEED must be updated automatically. Formula for
    /// calculating speed:
    /// ZOOM_SPEED = ( ZOOM_HW_SPEED / ZOOM_HW_MAX_SPEED) * 100.
    ZOOM_SPEED,
    /// Zoom hardware speed. Value depends on implementation and lens hardware.
    /// The value of the parameters must be <= ZOOM_HW_MAX_SPEED parameter.
    /// If the user sets a new parameter value of the ZOOM_SPEED parameter
    /// the parameter ZOOM_HW_SPEED must be updated automatically.
    /// Formula for calculating hardware speed:
    /// ZOOM_HW_SPEED = ( ZOOM_SPEED / 100 ) * ZOOM_HW_MAX_SPEED.
    ZOOM_HW_SPEED,
    /// Maximum zoom hardware speed. Value depends on implementation.
    /// If user sets new ZOOM_HW_MAX_SPEED value the parameters
    /// ZOOM_SPEED must be updated automatically. If new value of
    /// ZOOM_HW_MAX_SPEED parameter will be less than ZOOM_HW_SPEED the
    /// parameter ZOOM_HW_SPEED must be reduced automatically.
    ZOOM_HW_MAX_SPEED,
    /// Focus speed. Lens controller should have focus speed range from 0 to
    /// 100% of max hardware focus speed (parameter FOCUS_HW_MAX_SPEED).
    /// If the user sets a new parameter value of the FOCUS_HW_SPEED the
    /// parameter FOCUS_SPEED must be updated automatically. Formula for
    /// calculating speed: FOCUS_SPEED = ( FOCUS_HW_SPEED / FOCUS_HW_MAX_SPEED)
    /// * 100.
    FOCUS_SPEED,
    /// Focus hardware speed. Value depends on on implementation and lens
    /// hardware. The value of the parameters must be <= FOCUS_HW_MAX_SPEED
    /// parameter. If the user sets a new parameter value of the FOCUS_SPEED
    /// parameter the parameter FOCUS_HW_SPEED must be updated automatically.
    /// Formula for calculating hardware speed:
    /// FOCUS_HW_SPEED = ( FOCUS_SPEED / 100 ) * FOCUS_HW_MAX_SPEED.
    FOCUS_HW_SPEED,
    /// Maximum focus hardware speed. Value depends on implementation.
    /// If user sets new FOCUS_HW_MAX_SPEED value the parameters
    /// FOCUS_SPEED and FOCUS_HW_SPEED must be updated by lens controller
    /// automatically. If new value of FOCUS_HW_MAX_SPEED parameter will be
    /// less than FOCUS_HW_SPEED the parameter FOCUS_HW_SPEED must be reduced
    /// automatically.
    FOCUS_HW_MAX_SPEED,
    /// Iris speed. Lens controller should have iris speed range from 0 to 100%
    /// of max hardware iris speed (parameter IRIS_HW_MAX_SPEED). If the user
    /// sets a new parameter value of the IRIS_HW_SPEED the parameter IRIS_SPEED
    /// must be updated automatically. Formula for calculating speed:
    /// IRIS_SPEED = ( IRIS_HW_SPEED / IRIS_HW_MAX_SPEED) * 100.
    IRIS_SPEED,
    /// Iris hardware speed. Value depends on implementation and les hardware.
    /// The value of the parameters must be <= IRIS_HW_MAX_SPEED parameter.
    /// If the user sets a new parameter value of the IRIS_SPEED parameter
    /// the parameter IRIS_HW_SPEED must be updated automatically. Formula
    /// for calculating hardware speed:
    /// IRIS_HW_SPEED = ( IRIS_SPEED / 100 ) * IRIS_HW_MAX_SPEED.
    IRIS_HW_SPEED,
    /// Maximum iris hardware speed. Value depends on implementation. If user
    /// sets new IRIS_HW_MAX_SPEED value the parameters IRIS_SPEED and
    /// IRIS_HW_SPEED must be updated automatically. If new value of
    /// IRIS_HW_MAX_SPEED parameter will be less than IRIS_HW_SPEED the
    /// parameter IRIS_HW_SPEED must be reduced automatically.
    IRIS_HW_MAX_SPEED,
    /// Zoom hardware tele limit. Value depends on implementation and lens
    /// hardware. Lens controller should control zoom position. Lens controller
    /// should stop zoom moving if hardware zoom position will be our of limits.
    ZOOM_HW_TELE_LIMIT,
    /// Zoom hardware wide limit. Value depends on implementation and lens
    /// hardware. Lens controller should control zoom position. Lens controller
    /// should stop zoom moving if hardware zoom position will be our of limits.
    ZOOM_HW_WIDE_LIMIT,
    /// Focus hardware far limit. Value depends on on implementation and lens
    /// hardware. Lens controller should control focus position. Lens controller
    /// should stop focus moving if hardware focus position will be our of
    /// limits.
    FOCUS_HW_FAR_LIMIT,
    /// Focus hardware near limit. Value depends on implementation and lens
    /// hardware. Lens controller should control focus position. Lens controller
    /// should stop focus moving if hardware focus position will be our of
    /// limits.
    FOCUS_HW_NEAR_LIMIT,
    /// Iris hardware open limit. Value depends on implementation and lens
    /// hardware. Lens controller should control iris position. Lens controller
    /// should stop iris moving if hardware iris position will be our of limits.
    IRIS_HW_OPEN_LIMIT,
    /// Iris hardware close limit. Value depends on implementation and lens
    /// hardware. Lens controller should control iris position. Lens controller
    /// should stop iris moving if hardware iris position will be our of limits.
    IRIS_HW_CLOSE_LIMIT,
    /// Focus factor if it was calculated. If not calculated must be -1.
    /// Value depends on particular lens controller.
    FOCUS_FACTOR,
    /// Lens connection status. Connection status shows if the lens controller
    /// has data exchange with lens equipment. For example, if lens has serial
    /// port lens controller connects to serial port
    /// (opens serial port file in OS) but lens can be not active (no power).
    /// In this case connection status shows that lens controller doesn't have
    /// data exchange with lens equipment (methos will return 0). It lens
    /// controller has data exchange with lens equipment the method will
    /// return 1. If lens controller not initialize the connection status always
    /// FALSE. Value: 0 - not connected. 1 - connected.
    IS_CONNECTED,
    /// Focus hardware speed in autofocus mode. Value depends on implementation
    /// and lens hardware.
    FOCUS_HW_AF_SPEED,
    /// Threshold for changes of focus factor to start refocus. Value:
    /// 0% - no check, 100% - changing x2.
    FOCUS_FACTOR_THRESHOLD,
    /// Timeout for automatic refocus in seconds. Value:
    /// 0 - no automatic refocus, 100000 - maximum value.
    REFOCUS_TIMEOUT_SEC,
    /// Flag about active autofocus algorithm. Value: 0 - autofocus not working,
    /// 1 - working.
    AF_IS_ACTIVE,
    /// Iris mode. Value depends on implementation but it is recommended to keep
    /// default values: 0 - manual iris control, 1 - auto iris control.
    IRIS_MODE,
    /// ROI width (pixels) for autofocus algorithm when lens controller detects
    /// ROI position automatically. Value: from 8 to (video frame width -
    /// AUTO_AF_ROI_BORDER * 2).
    AUTO_AF_ROI_WIDTH,
    /// ROI height (pixels) for autofocus algorithm when lens controller
    /// detects ROI position automatically. Value: from 8
    /// (video frame width - AUTO_AF_ROI_BORDER * 2).
    AUTO_AF_ROI_HEIGHT,
    /// Video frame border size (along vertical and horizontal axes).
    /// Value: border size from 0 to video frame
    /// min(video frame width/height) / 2.
    AUTO_AF_ROI_BORDER,
    /// AF ROI mode (write/read). Value: 0 - Manual position, 1 - Auto position.
    AF_ROI_MODE,
    /// Lens extender mode. Value depends on implementation but it is
    /// recommended to keep default values: 0 - no extender, 1 - x2 extender.
    EXTENDER_MODE,
    /// Lens stabilization mode. Value depends on implementation but it is
    /// recommended to keep default values: 0 - no stabilization,
    /// 1 - stabilization.
    STABILIZER_MODE,
    /// Autofocus range. Value depends on implementation.
    AF_RANGE,
    /// Current horizontal Field of view, degree. Field of view calculated by
    /// lens controller according to initial params or by reading directly from
    /// lens hardware.
    X_FOV_DEG,
    /// Current vertical Field of view, degree. Field of view calculated by lens
    /// controller according to initial params or by reading directly from lens
    /// hardware.
    Y_FOV_DEG,
    /// Logging mode. Values: 0 - Disable, 1 - Only file, 2 - Only terminal,
    /// 3 - File and terminal.
    LOG_MODE,
    /// Lens temperature, degree.
    TEMPERATURE,
    /// Lens controller initialization status. Open status shows if the lens
    /// controller initialized or not but doesn't show if lens controller has
    /// communication with lens equipment. For example, if lens has serial port
    /// lens controller connects to serial port (opens serial port file in OS)
    /// but lens can be not active (no power). In this case open status just
    /// shows that lens controller has opened serial port. Values: 0 - not open
    /// not initialized), 1 - open (initialized).
    IS_OPEN,
    /// Lens type. Value depends on implementation. Type allows to lens
    /// initialize necessary parameters for particular lens hardware.
    TYPE,
    /// Lens custom parameter. Value depends on particular lens controller.
    /// Custom parameters used when particular lens equipment has specific
    /// unusual parameter.
    CUSTOM_1,
    /// Lens custom parameter. Value depends on particular lens controller.
    /// Custom parameters used when particular lens equipment has specific
    /// unusual parameter.
    CUSTOM_2,
    /// Lens custom parameter. Value depends on particular lens controller.
    /// Custom parameters used when particular lens equipment has specific
    /// unusual parameter.
    CUSTOM_3
};
}
}

Table 3 - Lens parameters description. Some parameters unsupported by lens controller.

Parameter Access Description
ZOOM_POS read / write Zoom position. Setting a parameter is equivalent to the command ZOOM_TO_POS. Param argument: zoom position 0 (full wide) - 65535 (full tele). Zoom speed can be set by setParam(…) method. It doesn’t change the zoom position value immediately. The zoom position changes only when the lens moves.
ZOOM_HW_POS read / write Hardware zoom position. Setting a parameter move zoom to hardware position (encoder position). Param argument: zoom position ZOOM_HW_WIDE_LIMIT - ZOOM_HW_TELE_LIMIT. Zoom speed can be set by setParam(…) method. It doesn’t change the zoom position value immediately. The zoom position changes only when the lens moves.
FOCUS_POS read / write Focus position. Setting a parameter is equivalent to the command FOCUS_TO_POS. Parameter value: focus position 0 (full near) - 65535 (full far). Focus speed can be set by setParam(…) method. It doesn’t change the focus position value immediately. The focus position changes only when the lens moves.
FOCUS_HW_POS read / write Focus hardware position. Setting a parameter move focus to hardware position (encoder position). Parameter value: focus position FOCUS_HW_NEAR_LIMIT - FOCUS_HW_FAR_LIMIT. Focus speed can be set by setParam(…) method. It doesn’t change the focus position value immediately. The focus position changes only when the lens moves.
IRIS_POS read / write Not supported by SunnyLens class.
IRIS_HW_POS read / write Not supported by SunnyLens class.
FOCUS_MODE read / write Focus mode:
0 - Manual focus control (user can adjust focus position only manually).
1 - Push auto focus mode (manual focus position control and auto focus by command only).
2 - Continuous auto focus mode (auto start auto focus algorithm after zoom position changes).
FILTER_MODE read / write Not supported by SunnyLens class.
AF_ROI_X0 read / write Autofocus ROI top-left corner horizontal position, pixels. Initial auto focus ROI position should be set by user in advance according to frame size.
AF_ROI_Y0 read / write Autofocus ROI top-left corner vertical position, pixels. Initial auto focus ROI position should be set by user in advance according to frame size.
AF_ROI_X1 read / write Autofocus ROI bottom-right corner horizontal position, pixels. Initial auto focus ROI position should be set by user in advance according to frame size.
AF_ROI_Y1 read / write Autofocus ROI bottom-right corner vertical position, pixels. Initial auto focus ROI position should be set by user in advance according to frame size.
ZOOM_SPEED read / write Zoom speed. Zoom speed range from 0 to 100 which means 0 -100% of max hardware zoom speed. If the user sets a new parameter value of the ZOOM_HW_SPEED the parameter ZOOM_SPEED updated automatically.
ZOOM_HW_SPEED read / write Zoom hardware speed. Zoom hardware speed range from 0 to ZOOM_HW_MAX_SPEED (100 by default). If the user sets a new parameter value of the ZOOM_SPEED parameter the parameter ZOOM_HW_SPEED updated automatically.
ZOOM_HW_MAX_SPEED read / write Maximum zoom hardware speed. If the user sets a new parameter value of the ZOOM_HW_MAX_SPEED parameter the parameter ZOOM_SPEED updated automatically.
FOCUS_SPEED read / write Focus speed. Focus speed range from 0 to 100 which means 0 -100% of max hardware focus speed. If the user sets a new parameter value of the FOCUS_HW_SPEED the parameter FOCUS_SPEED updated automatically.
FOCUS_HW_SPEED read / write Focus hardware speed. Focus hardware speed range from 0 to FOCUS_HW_MAX_SPEED (100 by default). If the user sets a new parameter value of the FOCUS_SPEED parameter the parameter FOCUS_HW_SPEED updated automatically.
FOCUS_HW_MAX_SPEED read / write Maximum focus hardware speed. If the user sets a new parameter value of the FOCUS_HW_MAX_SPEED parameter the parameter FOCUS_SPEED updated automatically.
IRIS_SPEED read / write Not supported by SunnyLens class.
IRIS_HW_SPEED read / write Not supported by SunnyLens class.
IRIS_HW_MAX_SPEED read / write Not supported by SunnyLens class.
ZOOM_HW_TELE_LIMIT read / write Zoom hardware tele limit. Default value 15000. The value will be updated automatically after controller initialization. The library will request this value from lens hardware.
ZOOM_HW_WIDE_LIMIT read / write Zoom hardware wide limit. Default value 0. The value will be updated automatically after controller initialization. The library will request this value from lens hardware.
FOCUS_HW_FAR_LIMIT read / write Focus hardware far limit. Default value 6500. The value will be updated automatically after controller initialization. The library will request this value from lens hardware.
FOCUS_HW_NEAR_LIMIT read / write Focus hardware near limit. Default value 0. The value will be updated automatically after controller initialization. The library will request this value from lens hardware.
IRIS_HW_OPEN_LIMIT read / write Not supported by SunnyLens class.
IRIS_HW_CLOSE_LIMIT read / write Not supported by SunnyLens class.
FOCUS_FACTOR read only Focus factor if it was calculated, otherwise -1.
IS_CONNECTED read only Lens connection status. Connection status shows if the lens controller has data exchange with lens equipment. Values:
0 - no response from lens.
1 - connected.
FOCUS_HW_AF_SPEED read / write Focus hardware speed in autofocus mode range from 0 to FOCUS_HW_MAX_SPEED (50 by default)
FOCUS_FACTOR_THRESHOLD read / write Threshold for changes of focus factor to start refocus. Values: 0% - no check, 100% - changing x2.
REFOCUS_TIMEOUT_SEC read / write Timeout for automatic refocus in seconds. Value: 0 - no automatic refocus, 100000 - maximum value.
AF_IS_ACTIVE read only Flag about active autofocus algorithm. Value: 0 - autofocus not working, 1 - working.
IRIS_MODE read / write Not supported by SunnyLens class.
AUTO_AF_ROI_WIDTH read / write ROI width (pixels) for autofocus algorithm when lens controller detects ROI position automatically. Value: from 8 to (video frame width - AUTO_AF_ROI_BORDER * 2).
AUTO_AF_ROI_HEIGHT read / write ROI height (pixels) for autofocus algorithm when lens controller detects ROI position automatically. Value: from 8 to (video frame height - AUTO_AF_ROI_BORDER * 2).
AUTO_AF_ROI_BORDER read / write Video frame border size (along vertical and horizontal axes). Value: border size from 0 to video frame min(video frame width / height) / 2.
AF_ROI_MODE read / write Auto focus ROI mode. Values:
0 - Manual position.
1 - Auto position. The controller will detect “optimal” auto focus ROI position.
EXTENDER_MODE read / write Not supported by SunnyLens class.
STABILIZER_MODE read / write Not supported by SunnyLens class.
AF_RANGE read / write Not supported by SunnyLens class.
X_FOV_DEG read / write Not supported by SunnyLens class.
Y_FOV_DEG read / write Not supported by SunnyLens class.
LOG_MODE read / write Logging mode. Values:
0 - Disable.
1 - Only file.
2 - Only terminal.
3 - File and terminal.
TEMPERATURE   Lens temperature, degree.
IS_OPEN read only Lens controller initialization status. Open status shows if the lens controller initialized or not but doesn’t show if lens controller has communication with lens equipment. Values:
0 - not open (not initialized).
1 - open (initialized).
TYPE read / write Lens type. Model number.
CUSTOM_1 read / write Persents of central ROI for AF Engine. Value: 1-100.
CUSTOM_2 read / write Time adjastment for AF Engine, ms.
CUSTOM_3 read / write Zoom\Focus linkage status.
0 - Unlinked
1 - Temporary unlinked
2 - Linked.

LensParams class description

LensParams class used for lens controller initialization (initLens(…) method) or to get all actual params (getParams() method). Also LensParams provides methods to write/read params from JSON files (JSON_READABLE macro) and provides methos to encode and decode params.

LensParams class declaration

LensParams interface class declared in Lens.h file. Class declaration:

namespace cr
{
namespace lens
{
/// Field of view point class.
class FovPoint
{
public:
    /// Hardware zoom pos.
    int hwZoomPos{0};
    /// Horizontal field of view, degree.
    float xFovDeg{0.0f};
    /// Vertical field of view, degree.
    float yFovDeg{0.0f};

    JSON_READABLE(FovPoint, hwZoomPos, xFovDeg, yFovDeg);

    /**
     * @brief operator =
     * @param src Source object.
     * @return FovPoint object.
     */
    FovPoint& operator= (const FovPoint& src);
};

/// Lens params class.
class LensParams
{
public:
    /// Initialization string. Particular lens controller can have unique init
    /// string format. But it is recommended to use '**;**' symbol to divide
    /// parts of initialization string. Recommended initialization string format
    /// for controllers which uses serial port: "/dev/ttyUSB0;9600;100"
    /// ("/dev/ttyUSB0" - serial port name, "9600" - baudrate, "100" - serial
    /// port read timeout).
    std::string initString{"/dev/ttyUSB0;9600;20"};
    /// Zoom position. Setting a parameter is equivalent to the command
    /// ZOOM_TO_POS. Lens controller should have zoom range from 0 (full wide)
    /// to 65535 (full tele) regardless of the hardware value of the zoom
    /// position. If the minimum and maximum zoom position limits are set by
    /// the user in the lens parameters, the range of the hardware zoom position
    /// must be scaled to the user space 0-65535 range. Parameter value: zoom
    /// position 0-65535. User should be able to set zoom movement speed via
    /// lens parameters.
    int zoomPos{0};
    /// Hardware zoom position. Parameter value depends on implementation and
    /// lens hardware.
    int zoomHwPos{0};
    /// Focus position. Setting a parameter is equivalent to the command
    /// FOCUS_TO_POS. Lens controller should have focus range from 0 (full near)
    /// to 65535 (full far) regardless of the hardware value of the focus
    /// position. If the minimum and maximum focus position limits are set by
    /// the user in the lens parameters, the range of the hardware focus
    /// position must be scaled to the 0-65535 user space range. Parameter
    /// value: focus position 0-65535. User should be able to set focus movement
    /// speed via lens parameters.
    int focusPos{0};
    /// Hardware focus position. Parameter value depends on implementation and
    /// lens hardware.
    int focusHwPos{0};
    /// Iris position. Setting a parameter is equivalent to the command
    /// IRIS_TO_POS. Lens controller should have iris range from 0 (full close)
    /// to 65535 (full far) regardless of the hardware value of the iris
    /// position. If the minimum and maximum iris position limits are set by the
    /// user in the lens parameters, the range of the hardware iris position
    /// must be scaled to the 0-65535 user space range. Parameter value: iris
    /// position 0-65535. User should be able to set iris movement speed via
    /// lens parameters.
    int irisPos{0};
    /// Hardware iris position. Parameter value depends on implementation.
    int irisHwPos{0};
    /// Focus mode. Parameter value depends on implementation but it is
    /// recommended to keep default values: 0 - Manual focus control,
    /// 1 - Auto focus control.
    int focusMode{0};
    /// Filter mode. Parameter value depends on implementation but it is
    /// recommended to keep default values: 0 - Filter on, 1 - Filter off.
    int filterMode{0};
    /// Autofocus ROI top-left corner horizontal position in pixels.
    /// Autofocus ROI is rectangle.
    int afRoiX0{0};
    /// Autofocus ROI top-left corner vertical position in pixels.
    /// Autofocus ROI is rectangle.
    int afRoiY0{0};
    /// Autofocus ROI bottom-right corner horizontal position in pixels.
    /// Autofocus ROI is rectangle.
    int afRoiX1{0};
    /// Autofocus ROI bottom-right corner vertical position in pixels.
    /// Autofocus ROI is rectangle.
    int afRoiY1{0};
    /// Zoom speed. Lens controller should have zoom speed range from 0 to
    /// 100% of max hardware zoom speed (parameter ZOOM_HW_MAX_SPEED). If the
    /// user sets a new parameter value of the ZOOM_HW_SPEED the parameter
    /// ZOOM_SPEED must be updated automatically. Formula for calculating speed:
    /// ZOOM_SPEED = ( ZOOM_HW_SPEED / ZOOM_HW_MAX_SPEED) * 100.
    int zoomSpeed{50};
    /// Zoom hardware speed. Value depends on implementation and lens hardware.
    /// The value of the parameters must be <= ZOOM_HW_MAX_SPEED parameter.
    /// If the user sets a new parameter value of the ZOOM_SPEED parameter
    /// the parameter ZOOM_HW_SPEED must be updated automatically. Formula for
    /// calculating hardware speed:
    /// ZOOM_HW_SPEED = ( ZOOM_SPEED / 100 ) * ZOOM_HW_MAX_SPEED.
    int zoomHwSpeed{50};
    /// Maximum zoom hardware speed. Value depends on implementation. If user
    /// sets new ZOOM_HW_MAX_SPEED value the parameters ZOOM_SPEED must be
    /// updated automatically. If new value of ZOOM_HW_MAX_SPEED parameter will
    /// be less than ZOOM_HW_SPEED the parameter ZOOM_HW_SPEED must be reduced
    /// automatically.
    int zoomHwMaxSpeed{50};
    /// Focus speed. Lens controller should have focus speed range from 0 to
    /// 100% of max hardware focus speed (parameter FOCUS_HW_MAX_SPEED). If the
    /// user sets a new parameter value of the FOCUS_HW_SPEED the parameter
    /// FOCUS_SPEED must be updated automatically. Formula for calculating
    /// speed: FOCUS_SPEED = ( FOCUS_HW_SPEED / FOCUS_HW_MAX_SPEED) * 100.
    int focusSpeed{50};
    /// Focus hardware speed. Value depends on on implementation and lens
    /// hardware. The value of the parameters must be <= FOCUS_HW_MAX_SPEED
    /// parameter. If the user sets a new parameter value of the FOCUS_SPEED
    /// parameter the parameter FOCUS_HW_SPEED must be updated automatically.
    /// Formula for calculating hardware speed:
    /// FOCUS_HW_SPEED = ( FOCUS_SPEED / 100 ) * FOCUS_HW_MAX_SPEED.
    int focusHwSpeed{50};
    /// Maximum focus hardware speed. Value depends on implementation. If user
    /// sets new FOCUS_HW_MAX_SPEED value the parameters FOCUS_SPEED and
    /// FOCUS_HW_SPEED must be updated by lens controller automatically.
    /// If new value of FOCUS_HW_MAX_SPEED parameter will be less than
    /// FOCUS_HW_SPEED the parameter FOCUS_HW_SPEED must be reduced
    /// automatically.
    int focusHwMaxSpeed{50};
    /// Iris speed. Lens controller should have iris speed range from 0 to 100%
    /// of max hardware iris speed (parameter IRIS_HW_MAX_SPEED). If the user
    /// sets a new parameter value of the IRIS_HW_SPEED the parameter IRIS_SPEED
    /// must be updated automatically. Formula for calculating speed:
    /// IRIS_SPEED = ( IRIS_HW_SPEED / IRIS_HW_MAX_SPEED) * 100.
    int irisSpeed{50};
    /// Iris hardware speed. Value depends on implementation and les hardware.
    /// The value of the parameters must be <= IRIS_HW_MAX_SPEED parameter.
    /// If the user sets a new parameter value of the IRIS_SPEED parameter the
    /// parameter IRIS_HW_SPEED must be updated automatically. Formula for
    /// calculating hardware speed:
    /// IRIS_HW_SPEED = ( IRIS_SPEED / 100 ) * IRIS_HW_MAX_SPEED.
    int irisHwSpeed{50};
    /// Maximum iris hardware speed. Value depends on implementation. If user
    /// sets new IRIS_HW_MAX_SPEED value the parameters IRIS_SPEED and
    /// IRIS_HW_SPEED must be updated automatically. If new value of
    /// IRIS_HW_MAX_SPEED parameter will be less than IRIS_HW_SPEED the
    /// parameter IRIS_HW_SPEED must be reduced automatically.
    int irisHwMaxSpeed{50};
    /// Zoom hardware tele limit. Value depends on implementation and lens
    /// hardware. Lens controller should control zoom position. Lens controller
    /// should stop zoom moving if hardware zoom position will be our of limits.
    int zoomHwTeleLimit{65535};
    /// Zoom hardware wide limit. Value depends on implementation and lens
    /// hardware. Lens controller should control zoom position. Lens controller
    /// should stop zoom moving if hardware zoom position will be our of limits.
    int zoomHwWideLimit{0};
    /// Focus hardware far limit. Value depends on on implementation and lens
    /// hardware. Lens controller should control focus position. Lens controller
    /// should stop focus moving if hardware focus position will be our of
    /// limits.
    int focusHwFarLimit{65535};
    /// Focus hardware near limit. Value depends on implementation and lens
    /// hardware. Lens controller should control focus position. Lens controller
    /// should stop focus moving if hardware focus position will be our of
    /// limits.
    int focusHwNearLimit{0};
    /// Iris hardware open limit. Value depends on implementation and lens
    /// hardware. Lens controller should control iris position. Lens controller
    /// should stop iris moving if hardware iris position will be our of limits.
    int irisHwOpenLimit{65535};
    /// Iris hardware close limit. Value depends on implementation and lens
    /// hardware. Lens controller should control iris position. Lens controller
    /// should stop iris moving if hardware iris position will be our of limits.
    int irisHwCloseLimit{0};
    /// Focus factor if it was calculated. If not calculated must be -1.
    /// Value depends on particular lens controller.
    float focusFactor{0.0f};
    /// Lens connection status. Connection status shows if the lens controller
    /// has data exchange with lens equipment. For example, if lens has serial
    /// port lens controller connects to serial port (opens serial port file
    /// in OS) but lens can be not active (no power). In this case connection
    /// status shows that lens controller doesn't have data exchange with lens
    /// equipment (method will return 0). It lens controller has data exchange
    /// with lens equipment the method will return 1. If lens controller not
    /// initialize the connection status always FALSE. Value:
    /// false - not connected. true - connected.
    bool isConnected{false};
    /// Focus hardware speed in autofocus mode. Value depends on implementation
    /// and lens hardware.
    int afHwSpeed{50};
    /// Timeout for automatic refocus in seconds. Value: 0 - no automatic
    /// refocus, 100000 - maximum value.
    float focusFactorThreshold{0.0f};
    /// Timeout for automatic refocus in seconds. Value:
    /// 0 - no automatic refocus, 100000 - maximum value.
    int refocusTimeoutSec{0};
    /// Flag about active autofocus algorithm. Value: 0 - autofocus not working,
    /// 1 - working.
    bool afIsActive{false};
    /// Iris mode. Value depends on implementation but it is recommended to keep
    /// default values: 0 - manual iris control, 1 - auto iris control.
    int irisMode{0};
    /// ROI width (pixels) for autofocus algorithm when lens controller detects
    /// ROI position automatically. Value: from 8 to (video frame width -
    /// AUTO_AF_ROI_BORDER * 2).
    int autoAfRoiWidth{150};
    /// ROI height (pixels) for autofocus algorithm when lens controller detects
    /// ROI position automatically. Value: from 8 to (video frame width -
    /// AUTO_AF_ROI_BORDER * 2).
    int autoAfRoiHeight{150};
    /// Video frame border size (along vertical and horizontal axes).
    /// Value: border size from 0 to video
    /// frame min(video frame width/height) / 2.
    int autoAfRoiBorder{100};
    /// AF ROI mode (write/read). Value: 0 - Manual position, 1 - Auto position.
    int afRoiMode{0};
    /// Lens extender mode. Value depends on implementation but it is
    /// recommended to keep default values: 0 - no extender, 1 - x2 extender.
    int extenderMode{0};
    /// Lens stabilization mode. Value depends on implementation but it is
    /// recommended to keep default values: 0 - no stabilization,
    /// 1 - stabilization.
    int stabiliserMode{0};
    /// Autofocus range. Value depends on implementation.
    int afRange{0};
    /// Current horizontal Field of view, degree. Field of view calculated by
    /// lens controller according to initial params or by reading directly from
    /// lens hardware.
    float xFovDeg{1.0f};
    /// Current vertical Field of view, degree. Field of view calculated by lens
    /// controller according to initial params or by reading directly from lens
    /// hardware.
    float yFovDeg{1.0f};
    /// Logging mode. Values: 0 - Disable, 1 - Only file, 2 - Only terminal,
    /// 3 - File and terminal.
    int logMode{0};
    /// Lens temperature, degree (read only).
    float temperature{0.0f};
    /// Lens controller initialization status. Open status shows if the lens
    /// controller initialized or not but doesn't show if lens controller has
    /// communication with lens equipment. For example, if lens has serial port
    /// lens controller connects to serial port (opens serial port file in OS)
    /// but lens can be not active (no power). In this case open status just
    /// shows that lens controller has opened serial port.
    /// Values: false - not open (not initialized), true - open (initialized).
    bool isOpen{false};
    /// Lens type. Value depends on implementation. Type allows to lens
    /// initialize necessary parameters for particular lens hardware.
    int type{0};
    /// Lens custom parameter. Value depends on particular lens controller.
    /// Custom parameters used when particular lens equipment has specific
    /// unusual parameter.
    float custom1{0.0f};
    /// Lens custom parameter. Value depends on particular lens controller.
    /// Custom parameters used when particular lens equipment has specific
    /// unusual parameter.
    float custom2{0.0f};
    /// Lens custom parameter. Value depends on particular lens controller.
    /// Custom parameters used when particular lens equipment has specific
    /// unusual parameter.
    float custom3{0.0f};
    /// List of points to calculate fiend of view. Lens controller should
    /// calculate FOV table according to given list f points using
    /// approximation.
    std::vector<FovPoint> fovPoints{std::vector<FovPoint>()};

    JSON_READABLE(LensParams, initString, focusMode, filterMode,
                  afRoiX0, afRoiY0, afRoiX1, afRoiY1, zoomHwMaxSpeed,
                  focusHwMaxSpeed, irisHwMaxSpeed, zoomHwTeleLimit,
                  zoomHwWideLimit, focusHwFarLimit, focusHwNearLimit,
                  irisHwOpenLimit, irisHwCloseLimit, afHwSpeed,
                  focusFactorThreshold, refocusTimeoutSec, irisMode,
                  autoAfRoiWidth, autoAfRoiHeight, autoAfRoiBorder,
                  afRoiMode, extenderMode, stabiliserMode, afRange,
                  logMode, type, custom1, custom2, custom3, fovPoints);

    /// operator =
    LensParams& operator= (const LensParams& src);

    /// Encode (serialize) params.
    bool encode(uint8_t* data, int bufferSize, int& size,
                LensParamsMask* mask = nullptr);

    /// Decode (deserialize) params.
    bool decode(uint8_t* data, int dataSize);
};
}
}

Table 4 - LensParams class fields description is equivalent to LensParam enum description.

Field type Description
initString string Initialization string contains full serial port name, baudrate, timeout separated by “;”. Example: “/dev/ttyUSB0;115200;50”. Baudrate and timeout optional params and will be set by default in the library.
zoomPos int Zoom position: 0 (full wide) - 65535 (full tele). Zoom speed can be set by setParam(…) method. The zoom position changes only when the lens moves.
zoomHwPos int Hardware zoom position. The zoom position changes only when the lens moves.
focusPos int Focus position: 0 (full near) - 65535 (full far). Focus speed can be set by setParam(…) method. The focus position changes only when the lens moves.
focusHwPos int Focus hardware position. The focus position changes only when the lens moves.
irisPos int Not supported by SunnyLens class.
irisHwPos int Not supported by SunnyLens class.
focusMode int Focus mode:
0 - Manual focus control (user can adjust focus position only manually).
1 - Push auto focus mode (manual focus position control and auto focus by command only).
2 - Continuous auto focus mode (auto start auto focus algorithm after zoom position changes).
filterMode int Not supported by SunnyLens class.
afRoiX0 int Autofocus ROI top-left corner horizontal position, pixels. Initial auto focus ROI position should be set by user in advance according to frame size.
afRoiY0 int Autofocus ROI top-left corner vertical position, pixels. Initial auto focus ROI position should be set by user in advance according to frame size.
afRoiX1 int Autofocus ROI bottom-right corner horizontal position, pixels. Initial auto focus ROI position should be set by user in advance according to frame size.
afRoiY1 int Autofocus ROI bottom-right corner vertical position, pixels. Initial auto focus ROI position should be set by user in advance according to frame size.
zoomSpeed int Zoom speed. Zoom speed range from 0 to 100 which means 0 -100% of max hardware zoom speed.
zoomHwSpeed int Zoom hardware speed. Zoom hardware speed range from 0 to zoomHwMaxSpeed (100 by default).
zoomHwMaxSpeed int Maximum zoom hardware speed. Default value 100.
focusSpeed int Focus speed. Focus speed range from 0 to 100 which means 0 -100% of max hardware focus speed.
focusHwSpeed int Focus hardware speed. Focus hardware speed range from 0 to focusHwMaxSpeed (100 by default).
focusHwMaxSpeed int Maximum focus hardware speed. Default value 100.
irisSpeed int Not supported by SunnyLens class.
irisHwSpeed int Not supported by SunnyLens class.
irisHwMaxSpeed int Not supported by SunnyLens class.
zoomHwTeleLimit int Zoom hardware tele limit. Default value 15000. The value will be updated automatically after controller initialization. The library will request this value from lens hardware.
zoomHwWideLimit int Zoom hardware wide limit. Default value 0. The value will be updated automatically after controller initialization. The library will request this value from lens hardware.
focusHwFarLimit int Focus hardware far limit. Default value 6500. The value will be updated automatically after controller initialization. The library will request this value from lens hardware.
focusHwNearLimit int Focus hardware near limit. Default value 0. The value will be updated automatically after controller initialization. The library will request this value from lens hardware.
irisHwOpenLimit int Not supported by SunnyLens class.
irisHwCloseLimit int Not supported by SunnyLens class.
focusFactor float Focus factor if it was calculated, otherwise -1.
isConnected bool Lens connection status. Connection status shows if the lens controller has data exchange with lens equipment.
afHwSpeed int Focus hardware speed in autofocus mode range from 0 to 100
focusFactorThreshold float Threshold for changes of focus factor to start refocus. Values: 0% - no check, 100% - changing x2.
refocusTimeoutSec int Timeout for automatic refocus in seconds. Value: 0 - no automatic refocus, 100000 - maximum value
afIsActive bool Flag about active autofocus algorithm. Value: 0 - autofocus not working, 1 - working.
irisMode int Not supported by SunnyLens class.
autoAfRoiWidth int ROI width (pixels) for autofocus algorithm when lens controller detects ROI position automatically. Value: from 8 to (video frame width - autoAfRoiBorder * 2).
autoAfRoiHeight int ROI height (pixels) for autofocus algorithm when lens controller detects ROI position automatically. Value: from 8 to (video frame height - autoAfRoiBorder * 2).
autoAfRoiBorder int Video frame border size (along vertical and horizontal axes). Value: border size from 0 to video frame min(video frame width / height) / 2.
afRoiMode int Auto focus ROI mode. Values:
0 - Manual position.
1 - Auto position. The controller will detect “optimal” auto focus ROI position.
extenderMode int Not supported by SunnyLens class.
stabiliserMode int Not supported by SunnyLens class.
afRange int Not supported by SunnyLens class.
xFovDeg float Not supported by SunnyLens class.
yFovDeg float Not supported by SunnyLens class.
logMode int Logging mode. Values:
0 - Disable.
1 - Only file.
2 - Only terminal.
3 - File and terminal.
temperature float Lens temperature, degree.
isOpen bool Lens controller initialization status. Open status shows if the lens controller initialized or not but doesn’t show if lens controller has communication with lens equipment.
type int Lens type. Model number.
custom1 float Persents of central ROI for AF Engine. Value: 1-100.
custom2 float Time adjastment for AF Engine, ms.
custom3 float Zoom\Focus linkage status.
0 - Unlinked
1 - Temporary unlinked
2 - Linked.
fovPoints FovPoint Not supported by SunnyLens class.

None: LensParams class fields listed in above reflect params set/get by methods setParam(…) and getParam(…).

Serialize lens params

LensParams class provides method encode(…) to serialize lens params (fields of LensParams class, see Table 4). Serialization of lens params necessary in case when you need to send lens params via communication channels. Method doesn’t encode initString string field and fovPoints. Method provides options to exclude particular parameters from serialization. To do this method inserts binary mask (7 bytes) where each bit represents particular parameter and decode(…) method recognizes it. Method declaration:

bool encode(uint8_t* data, int bufferSize, int& size, LensParamsMask* mask = nullptr);
Parameter Value
data Pointer to data buffer.
size Size of encoded data.
bufferSize Data buffer size. Buffer size must be >= 201 bytes.
mask Parameters mask - pointer to LensParamsMask structure. LensParamsMask (declared in Lens.h file) determines flags for each field (parameter) declared in LensParams class. If the user wants to exclude any parameters from serialization, he can put a pointer to the mask. If the user wants to exclude a particular parameter from serialization, he should set the corresponding flag in the LensParamsMask structure.

LensParamsMask structure declaration:

typedef struct LensParamsMask
{
    bool zoomPos{true};
    bool zoomHwPos{true};
    bool focusPos{true};
    bool focusHwPos{true};
    bool irisPos{true};
    bool irisHwPos{true};
    bool focusMode{true};
    bool filterMode{true};
    bool afRoiX0{true};
    bool afRoiY0{true};
    bool afRoiX1{true};
    bool afRoiY1{true};
    bool zoomSpeed{true};
    bool zoomHwSpeed{true};
    bool zoomHwMaxSpeed{true};
    bool focusSpeed{true};
    bool focusHwSpeed{true};
    bool focusHwMaxSpeed{true};
    bool irisSpeed{true};
    bool irisHwSpeed{true};
    bool irisHwMaxSpeed{true};
    bool zoomHwTeleLimit{true};
    bool zoomHwWideLimit{true};
    bool focusHwFarLimit{true};
    bool focusHwNearLimit{true};
    bool irisHwOpenLimit{true};
    bool irisHwCloseLimit{true};
    bool focusFactor{true};
    bool isConnected{true};
    bool afHwSpeed{true};
    bool focusFactorThreshold{true};
    bool refocusTimeoutSec{true};
    bool afIsActive{true};
    bool irisMode{true};
    bool autoAfRoiWidth{true};
    bool autoAfRoiHeight{true};
    bool autoAfRoiBorder{true};
    bool afRoiMode{true};
    bool extenderMode{true};
    bool stabiliserMode{true};
    bool afRange{true};
    bool xFovDeg{true};
    bool yFovDeg{true};
    bool logMode{true};
    bool temperature{true};
    bool isOpen{true};
    bool type{true};
    bool custom1{true};
    bool custom2{true};
    bool custom3{true};
} LensParamsMask;

Example without parameters mask:

// Encode data.
LensParams in;
in.logMode = 3;
uint8_t data[1024];
int size = 0;
in.encode(data, 1024, size);
cout << "Encoded data size: " << size << " bytes" << endl;

Example with parameters mask:

// Prepare params.
LensParams in;
in.logMode = 3;

// Prepare mask.
LensParamsMask mask;
mask.logMode = false; // Exclude logMode. Others by default.

// Encode.
uint8_t data[1024];
int size = 0;
in.encode(data, 1024, size, &mask);
cout << "Encoded data size: " << size << " bytes" << endl;

Deserialize lens params

LensParams class provides method decode(…) to deserialize lens params (fields of LensParams class, see Table 4). Deserialization of lens params necessary in case when you need to receive lens params via communication channels. Method automatically recognizes which parameters were serialized by encode(…) method. Method doesn’t decode fields: initString and fovPoints. Method declaration:

bool decode(uint8_t* data, int dataSize);
Parameter Value
data Pointer to data buffer.
dataSize Size of data.

Returns: TRUE if data decoded (deserialized) or FALSE if not.

Example:

// Encode data.
LensParams in;
uint8_t data[1024];
int size = 0;
in.encode(data, 1024, size);
cout << "Encoded data size: " << size << " bytes" << endl;

// Decode data.
LensParams out;
if (!out.decode(data, size))
    cout << "Can't decode data" << endl;

Read params from JSON file and write to JSON file

Lens interface class library depends on ConfigReader library which provides method to read params from JSON file and to write params to JSON file. Example of writing and reading params to JSON file:

// Prepare random params.
LensParams in;
for (int i = 0; i < 5; ++i)
{
    FovPoint pt;
    pt.hwZoomPos = rand() % 255;
    pt.xFovDeg = rand() % 255;
    pt.yFovDeg = rand() % 255;
    in.fovPoints.push_back(pt);
}

// Write params to file.
cr::utils::ConfigReader inConfig;
inConfig.set(in, "lensParams");
inConfig.writeToFile("TestLensParams.json");

// Read params from file.
cr::utils::ConfigReader outConfig;
if(!outConfig.readFromFile("TestLensParams.json"))
{
    cout << "Can't open config file" << endl;
    return false;
}

TestLensParams.json will look like:

{
    "lensParams": {
        "afHwSpeed": 89,
        "afRange": 140,
        "afRoiMode": 215,
        "afRoiX0": 33,
        "afRoiX1": 138,
        "afRoiY0": 201,
        "afRoiY1": 99,
        "autoAfRoiBorder": 52,
        "autoAfRoiHeight": 194,
        "autoAfRoiWidth": 125,
        "custom1": 132.0,
        "custom2": 74.0,
        "custom3": 172.0,
        "extenderMode": 19,
        "filterMode": 53,
        "focusFactorThreshold": 138.0,
        "focusHwFarLimit": 168,
        "focusHwMaxSpeed": 218,
        "focusHwNearLimit": 39,
        "focusMode": 83,
        "fovPoints": [
            {
                "hwZoomPos": 192,
                "xFovDeg": 165.0,
                "yFovDeg": 244.0
            },
            {
                "hwZoomPos": 38,
                "xFovDeg": 11.0,
                "yFovDeg": 2.0
            },
            {
                "hwZoomPos": 243,
                "xFovDeg": 179.0,
                "yFovDeg": 168.0
            },
            {
                "hwZoomPos": 16,
                "xFovDeg": 98.0,
                "yFovDeg": 175.0
            },
            {
                "hwZoomPos": 232,
                "xFovDeg": 236.0,
                "yFovDeg": 160.0
            }
        ],
        "initString": "dfhglsjirhuhjfb",
        "irisHwCloseLimit": 47,
        "irisHwMaxSpeed": 229,
        "irisHwOpenLimit": 27,
        "irisMode": 83,
        "logMode": 151,
        "refocusTimeoutSec": 240,
        "stabiliserMode": 135,
        "type": 62,
        "zoomHwMaxSpeed": 178,
        "zoomHwTeleLimit": 13,
        "zoomHwWideLimit": 78
    }
}

Build and connect to your project

Typical commands to build SunnyLens library:

cd SunnyLens
mkdir build
cd build
cmake ..
make

If you want to connect SunnyLens library to your CMake project as source code, you can do the following. For example, if your repository has structure:

CMakeLists.txt
src
    CMakeList.txt
    yourLib.h
    yourLib.cpp

Create folder 3rdparty and copy folder of SunnyLens repository there. New structure of your repository:

CMakeLists.txt
src
    CMakeList.txt
    yourLib.h
    yourLib.cpp
3rdparty
    SunnyLens

Create CMakeLists.txt file in 3rdparty folder. CMakeLists.txt should be containing:

cmake_minimum_required(VERSION 3.13)

################################################################################
## 3RD-PARTY
## dependencies for the project
################################################################################
project(3rdparty LANGUAGES CXX)

################################################################################
## SETTINGS
## basic 3rd-party settings before use
################################################################################
# To inherit the top-level architecture when the project is used as a submodule.
SET(PARENT ${PARENT}_YOUR_PROJECT_3RDPARTY)
# Disable self-overwriting of parameters inside included subdirectories.
SET(${PARENT}_SUBMODULE_CACHE_OVERWRITE OFF CACHE BOOL "" FORCE)

################################################################################
## CONFIGURATION
## 3rd-party submodules configuration
################################################################################
SET(${PARENT}_SUBMODULE_SUNNY_LENS                      ON  CACHE BOOL "" FORCE)
if (${PARENT}_SUBMODULE_SUNNY_LENS)
    SET(${PARENT}_SUNNY_LENS                            ON  CACHE BOOL "" FORCE)
    SET(${PARENT}_SUNNY_LENS_TEST                       OFF CACHE BOOL "" FORCE)
    SET(${PARENT}_SUNNY_LENS_EXAMPLE                    OFF CACHE BOOL "" FORCE)
endif()

################################################################################
## INCLUDING SUBDIRECTORIES
## Adding subdirectories according to the 3rd-party configuration
################################################################################
if (${PARENT}_SUBMODULE_SUNNY_LENS)
    add_subdirectory(SunnyLens)
endif()

File 3rdparty/CMakeLists.txt adds folder SunnyLens to your project and excludes test applications and examples from compiling (by default test application and example excluded from compiling if SunnyLens included as sub-repository). The new structure of your repository will be:

CMakeLists.txt
src
    CMakeList.txt
    yourLib.h
    yourLib.cpp
3rdparty
    CMakeLists.txt
    SunnyLens

Next, you need to include the ‘3rdparty’ folder in the main CMakeLists.txt file of your repository. Add the following string at the end of your main CMakeLists.txt:

add_subdirectory(3rdparty)

Next, you have to include SunnyLens library in your src/CMakeLists.txt file:

target_link_libraries(${PROJECT_NAME} SunnyLens)

Done!

Simple example

A simple application shows how to use the SunnyLens library.

#include <chrono>
#include <iostream>
#include "SunnyLens.h"

int main(void)
{
    // Init lens controller.
    cr::lens::Lens* lc = new cr::lens::SunnyLens();
    if (!lc->openLens("/dev/ttyUSB0;115200;50"))
        return -1;

    // Get lens Zoom position
    std:: cout<< "Zoom pos: " <<
    lc->getParam(cr::lens::LensParam::ZOOM_POS) << std::endl;

    // Set Zoom speed to 10%.
    lc->setParam(cr::lens::LensParam::ZOOM_SPEED, 10);

    // Go to zoom position 65535 (Full tele).
    lc->executeCommand(cr::lens::LensCommand::ZOOM_TO_POS, 65535);

    // Show zoom movement (changing position).
    while (true)
    {   
        std:: cout<< "Zoom pos: " <<
        lc->getParam(cr::lens::LensParam::ZOOM_POS) << std::endl;
        std::this_thread::sleep_for(std::chrono::milliseconds(100)); 
    }
    return 1;
}

Test application

SunnyLens/test folder contains a test application which allows to test SunnyLens library. Test application requires from user to set serial port name and serial port connection params. Test application provides the following features to user:

  1. Open controller - open controller with initialization string.

  2. Close controller - close controller.

  3. Execute following commands via keyboard inputs:

Zoom tele - move zoom tele.
Zoom wide - move zoom wide.
Zoom stop - stop zoom moving.
Focus far - move focus far.
Focus near - move focus near.
Focus stop - stop focus moving.
Start autofocus - start autofocus.
Stop autofocus - stop autofocus.
  1. Allowing to set following parameters:
Zoom position - set zoom position.
Focus position - set focus position.
Zoom speed - set zoom speed.
Focus speed - set focus speed.
Print some lens params.