diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-01-23 13:52:08 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-01-23 14:16:35 +0100 |
commit | 386795a320f8c007186c41b0d10a4f4281a9c28c (patch) | |
tree | 87c69863c44b7ad1794636102fea0ccc47911b2b /video-opencv/impl.hpp | |
parent | 45e48310779c8adec67de7cf76328aa7bd034466 (diff) |
video/opencv, tracker/nn: add exposure presets
Diffstat (limited to 'video-opencv/impl.hpp')
-rw-r--r-- | video-opencv/impl.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/video-opencv/impl.hpp b/video-opencv/impl.hpp index ed5499b0..88ae069d 100644 --- a/video-opencv/impl.hpp +++ b/video-opencv/impl.hpp @@ -8,6 +8,7 @@ #pragma once #include "video/camera.hpp" +#include "settings.hpp" #include <optional> #include <opencv2/videoio.hpp> @@ -46,6 +47,8 @@ static constexpr int video_capture_backend = bool get_frame_(); + dshow_camera_settings s; + std::optional<cv::VideoCapture> cap; cv::Mat mat; frame frame_; |