OwlCamera C++ lib. Software controller for Raptor Owl 640 cameras.

€400.00

The OwlCamera C++ library is a software controller for Raptor Owl 640 cameras. The OwlCamera inherits Camera interface.

LICENSE: We sell source code of this library as is, without future updates and technical support according to perpetual non-exclusive royalty-free license. You pay once and can use this library in your software and hardware products without limits. Please read the license agreement before purchasing: LICENSE.

The OwlCamera C++ library is a software controller for Raptor Owl 640 cameras. The OwlCamera inherits Camera interface.

LICENSE: We sell source code of this library as is, without future updates and technical support according to perpetual non-exclusive royalty-free license. You pay once and can use this library in your software and hardware products without limits. Please read the license agreement before purchasing: LICENSE.

Overview

The OwlCamera C++ library is a software controller for Raptor Owl 640 cameras. The OwlCamera library inherits Camera interface. It depends on libraries: Camera interface library (provides interface and data structures to control cameras, source code included, Apache 2.0 license), Logger logging library (provides function to print log information in console and files, source code included, Apache 2.0 license), OwlParser (provides functions for encoding commands and decoding response, source code included) and SerialPort (provides functions to work with serial ports, source code included, Apache 2.0 license). The OwlCamera library provides simple interface to be integrated in any C++ projects. The library repository (folder) provided by source code and doesn’t have third-party dependencies to be specially installed in OS. It is developed with C++17 standard and compatible with Linux and Windows.

Documentation

Documentation: GO TO DOCUMENTATION

Camera control interface

class OwlCamera : public cr::camera::Camera
{
public:
  /// Get Camera class version.
  static std::string getVersion();

  /// Init camera controller.
  bool openCamera(std::string initString) override;

  /// Init camera controller by parameters class.
  bool initCamera(CameraParams& params) override;

  /// Close camera serial port.
  void closeCamera() override;

  /// Get camera connection status.
  bool isCameraOpen() override;

  /// Get camera open status.
  bool isCameraConnected() override;

  /// Set the camera controller param.
  bool setParam(CameraParam id, float value) override;

  /// Get the camera controller param.
  float getParam(CameraParam id) override;

  /// Get the camera controller params.
  void getParams(CameraParams& params) override;

  /// Execute camera controller action command.
  bool executeCommand(CameraCommand id) override;

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