diff options
| author | Nikita Kostovsky <nikita@kostovsky.me> | 2025-11-14 22:20:20 +0100 |
|---|---|---|
| committer | Nikita Kostovsky <nikita@kostovsky.me> | 2025-11-14 22:20:20 +0100 |
| commit | ac27fb455c76aee4f9e9f65747483006909b14ab (patch) | |
| tree | 3819750b1475674296f1f02b7f237552afd6f386 /src/camera/veyeimx287m.h | |
| parent | ff20080b6f6cdc8b7f8003a6673bf149c515cdda (diff) | |
cleanup
Diffstat (limited to 'src/camera/veyeimx287m.h')
| -rw-r--r-- | src/camera/veyeimx287m.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/camera/veyeimx287m.h b/src/camera/veyeimx287m.h index d8c42ae..9b96afe 100644 --- a/src/camera/veyeimx287m.h +++ b/src/camera/veyeimx287m.h @@ -54,8 +54,6 @@ public: bool set_gain(const float value) override; std::optional<float> get_gain() override; - bool setLaserLevel(int value) override; - public: /*! * \brief processedCounter - count of images processed in current second. @@ -65,7 +63,6 @@ public: private: bool openCam(); - bool selectCam(int camIdx = 0); bool initCam(); bool initI2C(); @@ -91,7 +88,7 @@ private: * to m_videoBuffers[i] which is being copied to m_images[i]. In theory, it * should not overlap if BUFFER_COUNT > theads count */ - std::array<uint8_t *, BUFFER_COUNT> m_videoBuffers; + std::array<uint8_t *, BUFFER_COUNT> m_videoBuffers{0}; struct buffer { |
