diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-08-13 16:51:25 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-08-13 16:51:25 +0200 |
commit | ff3c744efd631ec88baa40b72296d4570f8aba64 (patch) | |
tree | 20862a1baf0be794bdc9c68047240abd52cd48c7 | |
parent | 9040b187a1c4fa380f8a12207b9dd6d04b3a10ac (diff) |
oops, nix crapola
-rw-r--r-- | cv/camera-dialog.hpp.OO4364 | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/cv/camera-dialog.hpp.OO4364 b/cv/camera-dialog.hpp.OO4364 deleted file mode 100644 index 6f4c7966..00000000 --- a/cv/camera-dialog.hpp.OO4364 +++ /dev/null @@ -1,44 +0,0 @@ -/* Copyright (c) 2015, Stanislaw Halik <sthalik@misaki.pl> - - * 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 - -#include "export.hpp" -#include "compat/camera-names.hpp" -#include "compat/sleep.hpp" - -#ifdef __linux -# include <QProcess> -#endif - -#ifdef _WIN32 -# include <objbase.h> -# include <winerror.h> -# include <windows.h> -# include <opencv2/videoio.hpp> -# include <QTimer> -#endif - -#include <QMutex> - -class OPENTRACK_CV_EXPORT camera_dialog -{ - static void maybe_grab_frame(cv::VideoCapture& cap); -#ifdef _WIN32 - static void init_com_threading(); -#endif - -public: - virtual ~camera_dialog(); - void open_camera_settings(cv::VideoCapture*, const QString&, QMutex*); -#if defined(_WIN32) - cv::VideoCapture fake_capture; - QTimer t; - void delete_capture(); -#endif -}; |