diff options
| author | Nikita Kostovsky <nikita@kostovsky.me> | 2026-07-15 10:13:10 +0200 |
|---|---|---|
| committer | Nikita Kostovsky <nikita@kostovsky.me> | 2026-07-15 10:13:10 +0200 |
| commit | 2aefb6902465c3c8a313f95bb1b7d9a80fe4c52a (patch) | |
| tree | 525cafbc1a9f38df2f0d2ebe6fe9fd206e5f30d0 /src/camera/veyeimx287m.h | |
| parent | 169ddcb09cd26fa0a685f691f63b49e70e1be93b (diff) | |
in the middle of non-linear pixels debuggingconflicting_master
Diffstat (limited to 'src/camera/veyeimx287m.h')
| -rw-r--r-- | src/camera/veyeimx287m.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/camera/veyeimx287m.h b/src/camera/veyeimx287m.h index 326a43a..764ede8 100644 --- a/src/camera/veyeimx287m.h +++ b/src/camera/veyeimx287m.h @@ -94,6 +94,12 @@ public: [[nodiscard]] bool set_triggerExposureDelay(const std::chrono::microseconds us) override; [[nodiscard]] std::optional<const std::chrono::microseconds> get_triggerExposureDelay() override; + [[nodiscard]] bool set_isBlackLevelManual(const bool manual) override; + [[nodiscard]] std::optional<bool> get_isBlackLevelManual() override; + + [[nodiscard]] bool set_blackLevel(const uint32_t level) override; + [[nodiscard]] std::optional<uint32_t> get_blackLevel() override; + public: /*! * \brief processedCounter - count of images processed in current second. @@ -161,7 +167,7 @@ private: std::jthread m_getThreads[1]; // std::jthread m_getThreads[4]; // TODO: sync all loops somehow to guarantee frames order - std::jthread m_rotateThreads[2]; + std::jthread m_rotateThreads[1]; std::jthread m_calcPixelsThreads[1]; std::mutex m_lastImageMtx; std::shared_ptr<Image> m_lastProcessedImage{}; |
