summaryrefslogtreecommitdiffhomepage
path: root/tracker-pt/module/camera_kinect_ir.h
diff options
context:
space:
mode:
Diffstat (limited to 'tracker-pt/module/camera_kinect_ir.h')
-rw-r--r--tracker-pt/module/camera_kinect_ir.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/tracker-pt/module/camera_kinect_ir.h b/tracker-pt/module/camera_kinect_ir.h
new file mode 100644
index 00000000..93c3d75b
--- /dev/null
+++ b/tracker-pt/module/camera_kinect_ir.h
@@ -0,0 +1,70 @@
+/* Copyright (c) 2012 Patrick Ruoff
+ *
+ * Permission to use, copy, modify, and/or distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ */
+
+#pragma once
+
+#if __has_include(<Kinect.h>)
+
+#include "pt-api.hpp"
+#include "compat/timer.hpp"
+
+#include <memory>
+
+#include <opencv2/core.hpp>
+#include <opencv2/videoio.hpp>
+
+#include <QString>
+
+namespace pt_module {
+
+///
+/// Implement our camera interface using Kinect V2 SDK IR Sensor.
+///
+struct CameraKinectIr final : pt_camera
+{
+ CameraKinectIr(const QString& module_name);
+
+ bool start(int idx, int fps, int res_x, int res_y) override;
+ void stop() override;
+
+ result get_frame(pt_frame& Frame) override;
+ result get_info() const override;
+
+ pt_camera_info get_desired() const override { return cam_desired; }
+ QString get_desired_name() const override;
+ QString get_active_name() const override;
+
+ void set_fov(f value) override { fov = value; }
+ void show_camera_settings() override;
+
+private:
+ [[nodiscard]] bool get_frame_(cv::Mat& frame);
+
+ f dt_mean = 0, fov = 30;
+ Timer t;
+ pt_camera_info cam_info;
+ pt_camera_info cam_desired;
+ QString desired_name, active_name;
+
+ struct camera_deleter final
+ {
+ void operator()(cv::VideoCapture* cap);
+ };
+
+ using camera_ptr = std::unique_ptr<cv::VideoCapture, camera_deleter>;
+
+ camera_ptr cap;
+
+ pt_settings s;
+
+ static constexpr f dt_eps = f{1}/256;
+};
+
+} // ns pt_module
+
+
+#endif