summaryrefslogtreecommitdiffhomepage
path: root/video-opencv/camera-impl.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2019-03-18 17:56:57 +0100
committerStanislaw Halik <sthalik@misaki.pl>2019-03-18 17:56:57 +0100
commitec0a37f30b5e5cb6cd4ce4abdb946945e05cd7ce (patch)
tree2676080d6da070c9d69eb2d5530a3187f45cbb3f /video-opencv/camera-impl.cpp
parentdd23cae02106fdf0fe23ddf865767fb987cc3477 (diff)
video/opencv: split impl files
Diffstat (limited to 'video-opencv/camera-impl.cpp')
-rw-r--r--video-opencv/camera-impl.cpp133
1 files changed, 0 insertions, 133 deletions
diff --git a/video-opencv/camera-impl.cpp b/video-opencv/camera-impl.cpp
index c7869ad5..e69de29b 100644
--- a/video-opencv/camera-impl.cpp
+++ b/video-opencv/camera-impl.cpp
@@ -1,133 +0,0 @@
-#include "camera-impl.hpp"
-#include "compat/sleep.hpp"
-
-#include "camera-names.hpp"
-#include "video-property-page.hpp"
-
-namespace opencv_camera_impl {
-
-metadata::metadata() = default;
-
-std::unique_ptr<camera> metadata::make_camera(const QString& name)
-{
- int idx = camera_name_to_index(name);
- if (idx != -1)
- return std::make_unique<cam>(idx);
- else
- return nullptr;
-}
-
-std::vector<QString> metadata::camera_names() const
-{
- return get_camera_names();
-}
-
-bool metadata::can_show_dialog(const QString& camera_name)
-{
- return camera_name_to_index(camera_name) != -1;
-}
-
-bool metadata::show_dialog(const QString& camera_name)
-{
- int idx = camera_name_to_index(camera_name);
- if (idx != -1)
- {
- video_property_page::show(idx);
- return true;
- }
- else
- return false;
-}
-
-cam::cam(int idx) : idx(idx)
-{
-}
-
-cam::~cam()
-{
- stop();
-}
-
-void cam::stop()
-{
- if (cap)
- {
- if (cap->isOpened())
- cap->release();
- cap = std::nullopt;
- }
- mat = cv::Mat();
- frame_ = { {}, false };
-}
-
-bool cam::is_open()
-{
- return !!cap;
-}
-
-bool cam::start(const info& args)
-{
- stop();
- cap.emplace(idx);
-
- if (args.width > 0 && args.height > 0)
- {
- cap->set(cv::CAP_PROP_FRAME_WIDTH, args.width);
- cap->set(cv::CAP_PROP_FRAME_HEIGHT, args.height);
- }
- if (args.fps > 0)
- cap->set(cv::CAP_PROP_FPS, args.fps);
-
- if (!cap->isOpened())
- goto fail;
-
- if (!get_frame_())
- goto fail;
-
- return true;
-
-fail:
- stop();
- return false;
-}
-
-bool cam::get_frame_()
-{
- if (!is_open())
- return false;
-
- for (unsigned i = 0; i < 10; i++)
- {
- if (cap->read(mat))
- {
- frame_.data = mat.data;
- frame_.width = mat.cols;
- frame_.height = mat.rows;
- frame_.stride = mat.step.p[0];
- frame_.channels = mat.channels();
-
- return true;
- }
- portable::sleep(50);
- }
-
- return false;
-}
-
-std::tuple<const frame&, bool> cam::get_frame()
-{
- bool ret = get_frame_();
- return { frame_, ret };
-}
-
-bool cam::show_dialog()
-{
- if (is_open())
- return video_property_page::show_from_capture(*cap, idx);
- else
- return video_property_page::show(idx);
-}
-
-OTR_REGISTER_CAMERA(metadata)
-
-} // ns opencv_camera_impl