
Slc C++ library
v2.0.13
Table of contents
- Overview
- Versions
- Library files
- Slc class description
- Slc class declaration
- getVersion method
- openLens method
- initLens method
- closeLens method
- isLensOpen method
- isLensConnected method
- setParam method
- getParam method
- getParams method
- executeCommand method
- addVideoFrame method
- decodeAndExecuteCommand method
- encodeSetParamCommand method of Lens class
- encodeCommand method of Lens class
- decodeCommand method of Lens class
- Data structures
- LensParams class description
- Build and connect to your project
- Simple example
- Test application
Overview
Slc is a C++ software controller for Stingray SWIR lenses. The library implements the Lens interface and adds advanced autofocus features. All required libraries are bundled in the repository: Lens (interface and data structures), Logger (logging helpers), SerialPort (serial communication), StingrayParser (command encoder/decoder) and AFEngine (autofocus algorithms). The Slc API is straightforward to integrate into existing C++ projects. All dependencies ship with the source tree, so no additional packages need to be installed. The codebase targets the C++17 standard and supports Linux and Windows.
Versions
Table 1 - Library versions.
| Version | Release date | What’s new |
|---|---|---|
| 1.0.0 | 23.06.2023 | First version. |
| 2.0.0 | 22.01.2024 | - Lens interface updated. - Autofocus algorithms implemented. - Submodules updated. |
| 2.0.1 | 15.02.2024 | - Zoom/focus position limit handling updated. - Documentation updated. |
| 2.0.2 | 30.04.2024 | - Submodules updated. - Documentation updated. |
| 2.0.5 | 23.05.2024 | - Submodules updated. - Documentation updated. |
| 2.0.6 | 07.08.2024 | - CMake structure updated. |
| 2.0.7 | 18.09.2024 | - AFEngine submodule updated. |
| 2.0.8 | 17.03.2025 | - AFEngine noise reduction is disabled by default. |
| 2.0.9 | 03.04.2025 | - Logger submodule updated. |
| 2.0.10 | 14.05.2025 | - AFEngine submodule updated. |
| 2.0.11 | 26.10.2025 | - SerialPort submodule updated. - StingrayParser submodule updated. |
| 2.0.12 | 05.11.2025 | - Fixed setParam mutex lock bug. - Added automatic hardware reset after lens errors. - Updated test application. - Updated StingrayParser submodule. |
| 2.0.13 | 13.11.2025 | - Fixed AFEngine usage. - Updated params list. - Documentation updated. |
Library files
The library is distributed as source code. You receive a CMake-based project with the following structure:
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 interface library source code.
Logger ----------- Folder with Logger library source code.
SerialPort ------- Folder with SerialPort library source code.
StingrayParser --- Folder with StingrayParser library source code.
src ------------------ Folder with library source code.
CMakeLists.txt --- CMake file of the library.
Slc.h ------------ Main library header file.
Slc.cpp ---------- C++ implementation file.
SlcVersion.h ----- Header file with library version.
SlcVersion.h.in -- CMake 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.
Slc class description
Slc class declaration
Slc.h file contains Slc class declaration.
class Slc : public Lens
{
public:
/// Class constructor.
Slc();
/// Class destructor.
~Slc();
/// 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 the current Slc version string. Method declaration:
static std::string getVersion();
Because the method is static, you can call it without creating an Slc instance. Example:
std::cout << "Slc version: " << Slc::getVersion();
Console output:
Slc version: 2.0.13
openLens method
The openLens(…) method opens the serial port so the controller can communicate with Stingray lenses. If the port is already open, the method simply returns true. On the first successful call the controller applies default parameters and starts the communication thread if it is not running yet. Method declaration:
bool openLens(std::string initString) override;
| Parameter | Value |
|---|---|
| initString | Initialization string containing the full serial port name. Example: "/dev/ttyUSB0". |
Returns: true if the lens controller is initialized, otherwise false.
initLens method
The initLens(…) method initializes the controller with the provided parameters and then calls openLens(…). On success the communication thread is started if it is not running yet. Method declaration:
bool initLens(LensParams& params) override;
| Parameter | Value |
|---|---|
| params | LensParams object containing the desired configuration. The initString field is forwarded to openLens(…). |
Returns: true if the lens controller is initialized, otherwise false.
closeLens method
The closeLens() method closes the serial port and stops the communication thread. Method declaration:
void closeLens() override;
isLensOpen method
The isLensOpen() method reports whether the controller has opened the serial port and completed initialization. It does not indicate whether the lens is responding. For example, if the serial port is open but the lens is unpowered, isLensOpen() still returns true. Method declaration:
bool isLensOpen() override;
Returns: true if the lens controller is initialized, otherwise false.
isLensConnected method
The isLensConnected() method indicates whether the controller is currently receiving responses from the lens. For example, if the serial port is open but the lens has no power, isLensOpen(…) returns true while isLensConnected() returns false. Method declaration:
bool isLensConnected() override;
Returns: true when the controller has an active data exchange with the lens, otherwise false.
setParam method
The setParam(…) method sets a new lens parameter value. Slc provides a thread-safe setParam(…) method call. This means that the setParam(…) method can be safely called from any thread. Method declaration:
bool setParam(LensParam id, float value) override;
| Parameter | Description |
|---|---|
| id | Lens parameter ID according to LensParam enum. |
| value | Lens parameter value. The value depends on parameter ID (LensParam enum). |
Returns: true if the parameter was set, otherwise false.
getParam method
The getParam(…) method returns a lens parameter value. Slc provides a 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.0f if the parameter is unsupported.
getParams method
The getParams(…) method copies the current controller settings into the supplied LensParams instance. Slc keeps the call thread-safe, so it can be invoked from any thread. Method declaration:
void getParams(LensParams& params) override;
| Parameter | Description |
|---|---|
| params | Reference to a LensParams object that receives the current lens parameters. |
executeCommand method
The executeCommand(…) method executes a lens action command. Slc provides a thread-safe executeCommand(…) method call. This means that the executeCommand(…) method can be safely called from any thread. 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 if the command was accepted by the lens controller, otherwise false.
addVideoFrame method
The addVideoFrame(…) method copies video frame data into the controller so the autofocus algorithm can operate. The controller calculates the focus factor inside the autofocus ROI (readable through getParam(…) with the FOCUS_FACTOR parameter). To keep autofocus active, call addVideoFrame(…) for each captured frame. Method declaration:
void addVideoFrame(cr::video::Frame& frame) override;
| Parameter | Description |
|---|---|
| frame | Video frame object (see Frame class description). |
decodeAndExecuteCommand method
The decodeAndExecuteCommand(…) method decodes and executes commands on the controller side. It understands payloads produced by encodeCommand(…) and encodeSetParamCommand(…). When decoding succeeds the controller dispatches the request to setParam(…) or executeCommand(…). The call is thread-safe and can be made from any thread. Method declaration:
bool decodeAndExecuteCommand(uint8_t* data, int size) override;
| Parameter | Description |
|---|---|
| data | Pointer to the encoded command. Generate payloads with encodeCommand(…) or encodeSetParamCommand(…). |
| size | Size of the command. Commands produced by the helpers are 11 bytes long. |
Returns: true if the command is decoded (SET_PARAM or COMMAND) and executed, otherwise false.
encodeSetParamCommand method of Lens class
The encodeSetParamCommand(…) static method of the Lens interface class is designed to encode a 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(…) is designed to encode SET_PARAM commands. 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 is used without a Lens class instance. This method is used on the 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 of the Lens interface class is designed to encode a 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(…) is designed to encode COMMAND commands (action commands). 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 is used without a Lens class instance. This method is used on the 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 of the Lens interface class is designed to decode a command on the lens controller side. To control a lens remotely, the developer has to develop his own protocol and according to it decode the command on the lens controller side. To simplify this, the Lens interface class contains a static method to decode input commands (commands should be encoded by methods encodeSetParamCommand(…) or encodeCommand(…)). 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
Enum declaration:
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 open) 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 setParam(…) method. |
| ZOOM_WIDE | Move zoom wide (out). Command doesn’t have arguments. Zoom speed can be set by setParam(…) method. |
| ZOOM_TO_POS | Move zoom to position. Command argument: zoom position 0 (full wide) - 65535 (full tele). Zoom speed can be set by setParam(…) 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 setParam(…) method. |
| FOCUS_NEAR | Move focus near. Command doesn’t have arguments. Focus speed can be set by setParam(…) method. |
| FOCUS_TO_POS | Move focus to position. Command argument: focus position 0 (full near) - 65535 (full far). Focus speed can be set by setParam(…) method. |
| FOCUS_STOP | Stop focus moving including stop focus to position command. Command doesn’t have arguments. |
| IRIS_OPEN | Not supported by Slc class. |
| IRIS_CLOSE | Not supported by Slc class. |
| IRIS_TO_POS | Not supported by Slc class. |
| IRIS_STOP | Not supported by Slc class. |
| AF_START | Start autofocus. Command doesn’t have arguments. |
| AF_STOP | Stop autofocus. Command doesn’t have arguments. |
| RESTART | Restart lens controller. Command doesn’t have arguments. |
| DETECT_HW_RANGES | Not supported by Slc class. |
Supported commands: The Slc implementation handles zoom, focus, autofocus, and restart commands. Iris-related commands and hardware range detection are defined by the base interface but are not implemented by Slc.
LensParam enum
Enum declaration:
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 open) regardless of the hardware value of the iris
/// position. If the maximum and minimum 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 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 lens 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 out 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 out of limits.
ZOOM_HW_WIDE_LIMIT,
/// Focus hardware far 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 out 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 out 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 out 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 out 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 (method will return 0). If 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 to
/// (video frame height - 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 params description. Some params may be unsupported by lens controller.
| Parameter | Access | Description |
|---|---|---|
| ZOOM_POS | read / write | Zoom position. Setting a parameter is equivalent to the command ZOOM_TO_POS. Parameter value: zoom position 0 (full wide) - 65535 (full tele). Zoom speed can be set by setParam(...). The stored value does not change immediately; it is updated while the lens moves. |
| ZOOM_HW_POS | read / write | Hardware zoom position. Setting this parameter moves the zoom to the specified hardware position ZOOM_HW_WIDE_LIMIT - ZOOM_HW_TELE_LIMIT (defaults: wide 0, tele 10000). Zoom speed can be set by setParam(...). The position value is updated only while 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(...). The stored value changes only while the lens moves. |
| FOCUS_HW_POS | read / write | Hardware focus position. Setting this parameter moves focus to FOCUS_HW_NEAR_LIMIT - FOCUS_HW_FAR_LIMIT (defaults: near 0, far 10000). Focus speed can be set by setParam(...). The position value is updated only while the lens moves. |
| IRIS_POS | read / write | Not supported by Slc class. |
| IRIS_HW_POS | read / write | Not supported by Slc class. |
| FOCUS_MODE | read / write | Focus mode: 0 - Manual focus control. 1 - Push auto focus mode. 2 - Continuous auto focus mode. |
| FILTER_MODE | read / write | Not supported by Slc class. |
| AF_ROI_X0 | read / write | Autofocus ROI top-left corner horizontal position in pixels. Autofocus ROI is rectangle. |
| AF_ROI_Y0 | read / write | Autofocus ROI top-left corner vertical position in pixels. Autofocus ROI is rectangle. |
| AF_ROI_X1 | read / write | Autofocus ROI bottom-right corner horizontal position in pixels. Autofocus ROI is rectangle. |
| AF_ROI_Y1 | read / write | Autofocus ROI bottom-right corner vertical position in pixels. Autofocus ROI is rectangle. |
| ZOOM_SPEED | read / write | Zoom speed. Values range from 0 to 100, representing 0-100% of the maximum hardware zoom speed. If the user updates ZOOM_HW_SPEED, ZOOM_SPEED is adjusted automatically. |
| ZOOM_HW_SPEED | read / write | Zoom hardware speed. Zoom hardware speed range from 0 to ZOOM_HW_MAX_SPEED (128 by default in Slc). If the user sets a new value for ZOOM_SPEED, the ZOOM_HW_SPEED parameter is updated automatically. |
| ZOOM_HW_MAX_SPEED | read / write | Maximum zoom hardware speed. Updating this parameter adjusts ZOOM_SPEED to preserve the relative percentage. The default value in Slc is 128. |
| FOCUS_SPEED | read / write | Focus speed. Values range from 0 to 100, representing 0-100% of the maximum hardware focus speed. If the user updates FOCUS_HW_SPEED, FOCUS_SPEED is adjusted automatically. |
| FOCUS_HW_SPEED | read / write | Focus hardware speed. Focus hardware speed range from 0 to FOCUS_HW_MAX_SPEED (50 by default in Slc). If the user sets a new value for FOCUS_SPEED, the FOCUS_HW_SPEED parameter is updated automatically. |
| FOCUS_HW_MAX_SPEED | read / write | Maximum focus hardware speed. Updating this parameter adjusts FOCUS_SPEED and FOCUS_HW_SPEED automatically. The default value in Slc is 50. |
| IRIS_SPEED | read / write | Not supported by Slc class. |
| IRIS_HW_SPEED | read / write | Not supported by Slc class. |
| IRIS_HW_MAX_SPEED | read / write | Not supported by Slc class. |
| ZOOM_HW_TELE_LIMIT | read / write | Zoom hardware tele limit. Default value 10000. |
| ZOOM_HW_WIDE_LIMIT | read / write | Zoom hardware wide limit. Default value 0. |
| FOCUS_HW_FAR_LIMIT | read / write | Focus hardware far limit. Default value 10000. |
| FOCUS_HW_NEAR_LIMIT | read / write | Focus hardware near limit. Default value 0. |
| IRIS_HW_OPEN_LIMIT | read / write | Not supported by Slc class. |
| IRIS_HW_CLOSE_LIMIT | read / write | Not supported by Slc 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. Valid range: 0 - FOCUS_HW_MAX_SPEED (initially 5 in Slc). |
| 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 Slc 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 Slc class. |
| STABILIZER_MODE | read / write | Not supported by Slc class. |
| AF_RANGE | read / write | Not supported by Slc class. |
| X_FOV_DEG | read / write | Not supported by Slc class. |
| Y_FOV_DEG | read / write | Not supported by Slc class. |
| LOG_MODE | read / write | Logging mode. Values: 0 - Disable. 1 - Only file. 2 - Only terminal. 3 - File and terminal. |
| TEMPERATURE | read only | Not supported by Slc class. |
| 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 | Not supported by Slc class. |
| CUSTOM_1 | read / write | Autofocus ROI preset. Value 0 switches to automatic ROI detection. Positive values specify the centred ROI size as a percentage of the frame. The RapidPixel UI multiplies its value by 10 before transmitting, so a value of 1.0 results in a 10% ROI at the controller. |
| CUSTOM_2 | read / write | Autofocus time adjustment helper passed to AFEngine (-500 – 500). |
| CUSTOM_3 | read / write | Not supported by Slc class. |
Slc defaults: When the controller starts, it seeds the key hardware ranges and speeds with tested values: zoomHwWideLimit = 0, zoomHwTeleLimit = 10000, zoomHwMaxSpeed = 128, zoomHwSpeed = 64, focusHwNearLimit = 0, focusHwFarLimit = 10000, focusHwMaxSpeed = 50, focusHwSpeed = 25, and afHwSpeed = 5. Iris-related parameters remain 0 because the hardware used with Slc does not expose iris control. The automatic ROI is initialised to autoAfRoiWidth = 150, autoAfRoiHeight = 150, and autoAfRoiBorder = 100. These runtime defaults override the generic interface defaults shown in the tables above.
LensParams class description
The LensParams class is used to initialise the controller (via initLens(…)) and to retrieve the current configuration (via getParams(…)). It also exposes JSON serialization helpers through the JSON_READABLE macro and dedicated encode/decode methods.
LensParams class declaration
The interface is declared in Lens.h. The excerpt below shows the most relevant fields:
/// 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);
/// operator =
FovPoint& operator= (const FovPoint& src);
};
/// Lens params structure.
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 open) regardless of the hardware value of the iris
/// position. If the maximum and minimum 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 (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:
/// 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};
/// Autofocus ROI preset helper. Value 0 enables automatic ROI detection.
/// Positive values describe the centred ROI size as a percentage of the
/// frame. The RapidPixel UI multiplies the slider value by 10 before
/// sending it to the controller, so a UI value of 1.0 becomes a 10% ROI.
float custom1{0.0f};
/// Autofocus time adjustment helper forwarded to AFEngine. Valid range:
/// -500..500.
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 params.
bool encode(uint8_t* data, int bufferSize, int& size,
LensParamsMask* mask = nullptr);
/// Decode 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 the full serial port name, baud rate, and timeout separated by “;”. Example: “/dev/ttyUSB0;9600;50”. Baud rate and timeout are optional params and will be set by default in the library. |
| zoomPos | int | Zoom position 0 (full wide) - 65535 (full tele). |
| zoomHwPos | int | Hardware zoom position 0 (full wide) - 10000 (full tele) by default. |
| focusPos | int | Focus position 0 (full near) - 65535 (full far). |
| focusHwPos | int | Hardware focus position 0 (full near) - 10000 (full far) by default. |
| irisPos | int | Not supported by Slc class. |
| irisHwPos | int | Not supported by Slc class. |
| focusMode | int | Focus mode: 0 - Manual focus control. 1 - Push auto focus mode. 2 - Continuous auto focus mode. |
| filterMode | int | Not supported by Slc class. |
| afRoiX0 | int | Autofocus ROI top-left corner horizontal position in pixels. Autofocus ROI is rectangle. |
| afRoiY0 | int | Autofocus ROI top-left corner vertical position in pixels. Autofocus ROI is rectangle. |
| afRoiX1 | int | Autofocus ROI bottom-right corner horizontal position in pixels. Autofocus ROI is rectangle. |
| afRoiY1 | int | Autofocus ROI bottom-right corner vertical position in pixels. Autofocus ROI is rectangle. |
| 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 255. |
| zoomHwMaxSpeed | int | Maximum zoom hardware speed. Default value 255. |
| 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 255. |
| focusHwMaxSpeed | int | Maximum focus hardware speed. Default value 255. |
| irisSpeed | int | Not supported by Slc class. |
| irisHwSpeed | int | Not supported by Slc class. |
| irisHwMaxSpeed | int | Not supported by Slc class. |
| zoomHwTeleLimit | int | Zoom hardware tele limit. Default value 10000. |
| zoomHwWideLimit | int | Zoom hardware wide limit. Default value 0. |
| focusHwFarLimit | int | Focus hardware far limit. Default value 10000. |
| focusHwNearLimit | int | Focus hardware near limit. Default value 0. |
| irisHwOpenLimit | int | Not supported by Slc class. |
| irisHwCloseLimit | int | Not supported by Slc class. |
| focusFactor | float | Focus factor if it was calculated. If not calculated must be -1. |
| isConnected | bool | Lens connection status. Connection status shows if the lens controller has data exchange with lens equipment. Values: 0 - no response from lens. 1 - connected. |
| afHwSpeed | int | Focus hardware speed in autofocus mode range from 0 to 255 |
| 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 Slc class. |
| autoAfRoiWidth | int | 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). |
| autoAfRoiHeight | int | 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). |
| 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 Slc class. |
| stabiliserMode | int | Not supported by Slc class. |
| afRange | int | Not supported by Slc class. |
| xFovDeg | float | Not supported by Slc class. |
| yFovDeg | float | Not supported by Slc class. |
| logMode | int | Logging mode. Values: 0 - Disable. 1 - Only file. 2 - Only terminal. 3 - File and terminal. |
| temperature | float | Not supported by Slc class. |
| 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. Values: 0 - not open (not initialized), 1 - open (initialized). |
| type | int | Not supported by Slc class. |
| custom1 | float | Autofocus ROI preset helper. 0 enables automatic ROI detection. Positive values specify the centred ROI size in percent. The RapidPixel multiplies its value by 10 before transmitting, so a value of 1.0 becomes a 10% ROI at the controller. |
| custom2 | float | Autofocus time adjustment helper forwarded to AFEngine. Valid range: -500 – 500. |
| custom3 | float | Not supported by Slc class. |
| fovPoints | FovPoint | List of points to calculate field of view. Lens controller should calculate FOV table according to given list of points using approximation. Each point includes (FovPoint class): - hwZoomPos - hardware zoom position. - xFovDeg - horizontal FOV, degree for hwZoomPos. - yFovDeg - vertical FOV, degree for hwZoomPos. |
Note: LensParams class fields listed above reflect params set/get by methods setParam(…) and getParam(…).
Serialize lens params
LensParams class provides the encode(…) helper to serialise parameters for transport. The method skips the initString and fovPoints fields and can optionally omit additional parameters through a mask. Internally the encoder writes a 7-byte bitmask so decode(…) can recover which fields are present. Method declaration:
bool encode(uint8_t* data, int bufferSize, int& size, LensParamsMask* mask = nullptr);
| Parameter | Value |
|---|---|
| data | Pointer to the destination buffer. |
| size | Receives the number of bytes written. |
| bufferSize | Size of the destination buffer. Must be ≥ 201 bytes. |
| mask | Optional pointer to a LensParamsMask structure that disables individual fields before encoding. |
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{false};
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
The LensParams class provides the decode(…) method to restore parameters from a binary buffer. Use it when you receive serialized parameters over a communication channel. The method recognises which fields were present in the encoded stream and skips 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 the data was deserialized successfully, otherwise false.
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 and write lens params 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": 93,
"afRange": 128,
"afRoiMode": 239,
"afRoiX0": 196,
"afRoiX1": 252,
"afRoiY0": 115,
"afRoiY1": 101,
"autoAfRoiBorder": 70,
"autoAfRoiHeight": 125,
"autoAfRoiWidth": 147,
"custom1": 91.0,
"custom2": 236.0,
"custom3": 194.0,
"extenderMode": 84,
"filterMode": 49,
"focusFactorThreshold": 98.0,
"focusHwFarLimit": 228,
"focusHwMaxSpeed": 183,
"focusHwNearLimit": 47,
"focusMode": 111,
"fovPoints": [
{
"hwZoomPos": 55,
"xFovDeg": 6.0,
"yFovDeg": 51.0
},
{
"hwZoomPos": 63,
"xFovDeg": 249.0,
"yFovDeg": 33.0
},
{
"hwZoomPos": 4,
"xFovDeg": 121.0,
"yFovDeg": 144.0
},
{
"hwZoomPos": 53,
"xFovDeg": 214.0,
"yFovDeg": 153.0
},
{
"hwZoomPos": 143,
"xFovDeg": 15.0,
"yFovDeg": 218.0
}
],
"initString": "dfhglsjirhuhjfb",
"irisHwCloseLimit": 221,
"irisHwMaxSpeed": 79,
"irisHwOpenLimit": 211,
"irisMode": 206,
"logMode": 216,
"refocusTimeoutSec": 135,
"stabiliserMode": 137,
"type": 125,
"zoomHwMaxSpeed": 157,
"zoomHwTeleLimit": 68,
"zoomHwWideLimit": 251
}
}
Build and connect to your project
Typical commands to build Slc library:
cd Slc
mkdir build
cd build
cmake ..
make
If you want to connect Slc 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 Slc repository there. New structure of your repository:
CMakeLists.txt
src
CMakeList.txt
yourLib.h
yourLib.cpp
3rdparty
Slc
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)
################################################################################
## INCLUDING SUBDIRECTORIES
## Adding subdirectories according to the 3rd-party configuration
################################################################################
add_subdirectory(Slc)
File 3rdparty/CMakeLists.txt adds folder Slc to your project and excludes test applications and examples from compiling (by default test application is excluded from compiling if Slc is included as sub-repository). The new structure of your repository:
CMakeLists.txt
src
CMakeList.txt
yourLib.h
yourLib.cpp
3rdparty
CMakeLists.txt
Slc
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 Slc library in your src/CMakeLists.txt file:
target_link_libraries(${PROJECT_NAME} Slc)
Done!
Simple example
A simple application shows how to use the Slc library.
#include <chrono>
#include <iostream>
#include <string>
#include <thread>
#include "Slc.h"
int main(void)
{
// Init lens controller.
cr::lens::Lens* lc = new cr::lens::Slc();
if (!lc->openLens("/dev/ttyUSB0"))
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).
for (int i = 0; i < 50; ++i)
{
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
Slc/test folder contains a test application which allows to test Slc library. Test application requires from user to set serial port name and serial port connection params. Test application provides the following features to user:
-
Open controller - open controller with initialization string.
-
Close controller - close controller.
-
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.
- 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.